/* ==========================================================================
   Hotel Palanca — Porto
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

img,
picture,
video,
iframe { display: block; max-width: 100%; }

img { height: auto; }

/* <picture> tem de encher o contentor para o object-fit do <img> funcionar */
.hero__media picture,
.cta__media picture,
.split__media picture,
.card__media picture { width: 100%; height: 100%; }

input,
button,
textarea,
select { font: inherit; color: inherit; }

ul[class] { list-style: none; padding: 0; }

a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --ink:        #16130f;
  --ink-soft:   #3b342c;
  --muted:      #746c63;
  --bone:       #fbf9f6;
  --sand:       #f2ece4;
  --line:       #e4dbcf;
  --brass:      #a67c45;
  --brass-dk:   #84602f;
  --white:      #ffffff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(22, 19, 15, .06), 0 4px 16px rgba(22, 19, 15, .06);
  --shadow-md: 0 12px 40px rgba(22, 19, 15, .12);
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Base ----------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { text-wrap: pretty; }

strong { font-weight: 600; color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sand { background: var(--sand); }
.section--bone { background: var(--bone); }
.section--white { background: var(--white); }

.section__head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head--left {
  text-align: left;
  margin-inline: 0;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.13rem);
  color: var(--muted);
  margin-top: 1.15rem;
}

.rule {
  width: 46px;
  height: 1px;
  background: var(--brass);
  border: 0;
  margin: 1.4rem auto 0;
}

.section__head--left .rule { margin-inline: 0; }

.note {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn--primary:hover { background: var(--brass-dk); border-color: var(--brass-dk); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .65);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--ink); color: var(--white); }

.btn .icon { width: 17px; height: 17px; }

/* --- Skip link ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: .8rem 1.4rem;
  font-size: .85rem;
  text-decoration: none;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding-inline: clamp(1.25rem, 3.2vw, 3.25rem);
  height: var(--header-h);
  transition: height .35s var(--ease);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.brand img {
  width: 100%;
  height: 100%;
  transition: opacity .3s var(--ease);
}
.brand__dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.site-header.is-solid .brand__light { opacity: 0; }
.site-header.is-solid .brand__dark { opacity: 1; }

.nav { display: flex; align-items: center; gap: 1.75rem; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  list-style: none;
  padding: 0;
}

.nav__list li { display: flex; }

.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: .55rem .5rem;
  transition: color .28s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--brass); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--white);
  opacity: .85;
  padding: .4rem .2rem;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.nav__lang:hover { opacity: 1; color: var(--brass); }
.nav__lang .icon { width: 15px; height: 15px; }
.site-header.is-solid .nav__lang { color: var(--ink-soft); }
.site-header.is-solid .nav__lang:hover { color: var(--brass); }

.drawer__lang {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  padding-bottom: .4rem;
}
.drawer__lang .icon { width: 15px; height: 15px; }

.nav__cta {
  padding: .68rem 1.35rem;
  font-size: .7rem;
  border: 1px solid rgba(255, 255, 255, .6);
  color: var(--white);
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* scrolled / solid state */
.site-header.is-solid {
  background: rgba(251, 249, 246, .96);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid .site-header__inner { height: 68px; }
.site-header.is-solid .brand { width: 48px; height: 48px; }
.site-header.is-solid .nav__link { color: var(--ink-soft); }
.site-header.is-solid .nav__link[aria-current="page"] { color: var(--brass); }
.site-header.is-solid .nav__cta { color: var(--ink); border-color: var(--ink); }
.site-header.is-solid .nav__cta:hover { background: var(--ink); color: var(--white); }
.site-header.is-solid .nav__toggle { color: var(--ink); }

/* burger */
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: .4rem;
  color: var(--white);
  cursor: pointer;
  line-height: 0;
}
.nav__toggle .icon { width: 28px; height: 28px; }

/* --- Mobile drawer -------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.drawer.is-open { opacity: 1; visibility: visible; }

.drawer__close {
  position: absolute;
  top: 1.4rem;
  right: clamp(1.25rem, 5vw, 2.5rem);
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
  line-height: 0;
}
.drawer__close .icon { width: 28px; height: 28px; }

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: grid;
  gap: 1.15rem;
}
.drawer__list a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.drawer__list a:hover,
.drawer__list a[aria-current="page"] { color: var(--brass); }

.drawer__foot {
  margin-top: 2.6rem;
  display: grid;
  gap: .6rem;
  justify-items: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
}
.drawer__foot a { color: var(--white); text-decoration: none; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero--page { min-height: 58svh; }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, .72) 0%, rgba(10, 8, 6, .5) 42%, rgba(10, 8, 6, .82) 100%),
    radial-gradient(120% 85% at 50% 55%, rgba(10, 8, 6, .18) 0%, rgba(10, 8, 6, .55) 100%);
}

.hero__inner {
  text-shadow: 0 1px 24px rgba(10, 8, 6, .45);
  padding-top: var(--header-h);
  padding-bottom: 3rem;
  color: var(--white);
  max-width: 46rem;
}

.hero--center .hero__inner { margin-inline: auto; text-align: center; }

.hero__inner h1 { color: var(--white); }
.hero--page .hero__inner h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); }

.hero__eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.2rem;
}

.hero__text {
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  color: rgba(255, 255, 255, .9);
  margin-top: 1.35rem;
  max-width: 38rem;
}
.hero--center .hero__text { margin-inline: auto; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.2rem;
}
.hero--center .hero__actions { justify-content: center; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  animation: bob 2.4s var(--ease) infinite;
}
.hero__scroll .icon { width: 22px; height: 22px; }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* --- Facts strip ---------------------------------------------------------- */
.facts { background: var(--ink); color: rgba(255, 255, 255, .82); }
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}
.facts__item {
  background: var(--ink);
  padding: 1.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.facts__item .icon { width: 20px; height: 20px; color: var(--brass); flex-shrink: 0; }

/* --- Split (image + text) ------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__body > * + * { margin-top: 1.1rem; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.stats__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brass);
  line-height: 1;
}
.stats__l {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
  display: block;
}

/* --- Amenities ------------------------------------------------------------ */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.amenity {
  background: var(--white);
  padding: 1.7rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  transition: background-color .3s var(--ease);
}
.amenity:hover { background: var(--sand); }
.amenity .icon { width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.amenity h4 { font-family: var(--font-body); font-size: .93rem; font-weight: 600; color: var(--ink); }
.amenity p { font-size: .83rem; color: var(--muted); margin-top: .2rem; line-height: 1.55; }

/* --- Cards / gallery ------------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sand);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__zoom {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}
.card__zoom span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(22, 19, 15, .55);
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card__zoom span,
.card__zoom:focus-visible span { opacity: 1; transform: translateY(0); }
.card__zoom .icon { width: 18px; height: 18px; }

.card__body { padding: 1.6rem 1.7rem 1.9rem; flex: 1; }
.card__body h3 { margin-bottom: .55rem; }
.card__body p { font-size: .91rem; color: var(--muted); }
.card__body .note { display: block; margin-top: .9rem; }

/* --- Rooms ---------------------------------------------------------------- */
.rooms { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.room {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 2rem 1.9rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.room h3 { font-size: 1.55rem; }
.room ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.room li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.room li .icon { width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; margin-top: 4px; }

/* --- Price / service blocks ---------------------------------------------- */
.service {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--brass);
}
.service__icon .icon { width: 24px; height: 24px; }
.service p { font-size: .93rem; color: var(--muted); }
.service__price {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
}
.service__price small {
  display: block;
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}

/* --- Tables --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; }

table.rates {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 360px;
}
table.rates caption {
  text-align: left;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  padding-bottom: .9rem;
}
table.rates th,
table.rates td {
  text-align: left;
  padding: .78rem .9rem;
  border-bottom: 1px solid var(--line);
}
table.rates thead th {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
table.rates td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 500; }
table.rates tbody tr:hover { background: var(--sand); }

/* --- Nearby --------------------------------------------------------------- */
.nearby {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.nearby__item {
  background: var(--white);
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.nearby__item strong { font-weight: 500; color: var(--ink); font-size: .95rem; }
.nearby__item span {
  font-size: .82rem;
  color: var(--brass);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* --- Map ------------------------------------------------------------------ */
.map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--sand) center / cover no-repeat;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder {
  text-align: center;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.map__placeholder p { font-size: .87rem; color: var(--muted); max-width: 28rem; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: 52rem; margin-inline: auto; border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem .25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }

.faq summary .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brass);
  transition: transform .32s var(--ease);
}
.faq details[open] summary .icon { transform: rotate(45deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq details[open] .faq__answer { grid-template-rows: 1fr; }
.faq__answer > div { overflow: hidden; }
.faq__answer p {
  padding: 0 .25rem 1.5rem;
  font-size: .95rem;
  color: var(--muted);
  max-width: 44rem;
}

/* --- CTA band ------------------------------------------------------------- */
.cta {
  position: relative;
  isolation: isolate;
  text-align: center;
  color: var(--white);
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background: var(--ink);
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, .78) 0%, rgba(10, 8, 6, .62) 50%, rgba(10, 8, 6, .82) 100%),
    radial-gradient(120% 85% at 50% 50%, rgba(10, 8, 6, .2) 0%, rgba(10, 8, 6, .5) 100%);
}
.cta h2 { color: var(--white); max-width: 24ch; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, .82); margin-top: 1.1rem; max-width: 40rem; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.3rem; }

/* --- Contact -------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list { display: grid; gap: 1.6rem; }
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--brass);
}
.contact-item__icon .icon { width: 20px; height: 20px; }
.contact-item h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-item p, .contact-item a { font-size: 1.02rem; color: var(--ink); text-decoration: none; }
.contact-item a:hover { color: var(--brass); }
.contact-item small { display: block; font-size: .76rem; color: var(--muted); margin-top: .25rem; }

/* --- Contact actions ------------------------------------------------------ */
.contact-actions {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.contact-actions h3 { margin-bottom: .8rem; }
.contact-actions p { font-size: .95rem; color: var(--muted); }
.contact-actions__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.6rem 0 1.2rem;
}
.contact-actions .note { margin: 0; }

/* --- Prose (privacy policy) ----------------------------------------------- */
.prose { max-width: 48rem; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 2.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin-top: 1rem; font-size: .97rem; color: var(--muted); }
.prose ul { padding-left: 1.15rem; display: grid; gap: .45rem; }
.prose li::marker { color: var(--brass); }
.prose a { color: var(--brass); }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding-block: clamp(3.5rem, 7vw, 5rem) 0;
  font-size: .9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.35rem;
}
.site-footer a { color: rgba(255, 255, 255, .68); text-decoration: none; transition: color .25s var(--ease); }
.site-footer a:hover { color: var(--brass); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.site-footer p + p { margin-top: .5rem; }

.footer-brand img { width: 66px; height: 66px; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 26ch; }

.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* --- Lightbox ------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 8, 6, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82svh;
  object-fit: contain;
  box-shadow: var(--shadow-md);
}
.lightbox__caption {
  color: rgba(255, 255, 255, .82);
  text-align: center;
  margin-top: 1rem;
  font-size: .88rem;
}
.lightbox__btn {
  position: absolute;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: .75rem;
  line-height: 0;
  opacity: .78;
  transition: opacity .25s var(--ease);
}
.lightbox__btn:hover { opacity: 1; }
.lightbox__btn .icon { width: 26px; height: 26px; }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .5rem; top: 50%; transform: translateY(-50%); }

/* --- Cookie banner -------------------------------------------------------- */
.cookies {
  position: fixed;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 130;
  max-width: 27rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1.6rem 1.7rem;
  display: none;
}
.cookies.is-visible { display: block; animation: rise .45s var(--ease) both; }
.cookies h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.cookies p { font-size: .84rem; color: var(--muted); margin-top: .7rem; }
.cookies p a { color: var(--brass); }
.cookies__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.cookies .btn { padding: .68rem 1.25rem; font-size: .7rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Reveal --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); }
.js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav__link { min-width: 0; padding-inline: .85rem; }
  .nav { gap: 1.1rem; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .facts__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  :root { --header-h: 72px; }
  .nav__list, .nav__cta, .nav__lang { display: none; }
  .nav__toggle { display: block; }
  .hero { min-height: 92svh; }
  .hero--page { min-height: 46svh; }
  .stats { gap: 1.75rem; }
}

@media (max-width: 560px) {
  .facts__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .cookies { left: 1rem; right: 1rem; max-width: none; }
  .contact-actions__btns .btn { width: 100%; }
  .drawer__list a { font-size: 1.7rem; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .drawer, .cookies, .hero__scroll, .lightbox, .cta__actions { display: none !important; }
  body { background: #fff; color: #000; }
}
