/* =============================================================
   THE BEACHHOUSE ROGOZNICA · beachhousecroatia.com
   Stylesheet · Last updated May 2026
   ============================================================= */


/* ─── Tokens ──────────────────────────────────────────────── */

:root {
  /* Primary palette */
  --c-white:          #FFFFFF;
  --c-ink:            #111111;
  --c-body:           #555555;
  --c-muted:          #888888;
  --c-rule:           #C8C0B4;

  /* Accents */
  --c-adriatic:       #2E7D8C;
  --c-adriatic-deep:  #1F5A6A;
  --c-adriatic-light: #A8C8CE;
  --c-navy:           #1B2A4A;
  --c-sand:           #F5EFE6;
  --c-sand-deep:      #EBE3D2;
  --c-brass:          #8C7A50;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spatial scale */
  --space-section:   180px;
  --space-section-m: 96px;
  --max-narrow:      640px;
  --max-content:     1080px;
  --max-wide:        1320px;
  --gutter:          clamp(24px, 5vw, 56px);
}


/* ─── Reset & base ────────────────────────────────────────── */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-adriatic); }

button { font: inherit; cursor: pointer; }

::selection { background: var(--c-adriatic); color: var(--c-white); }


/* ─── Typography ─────────────────────────────────────────── */

h1, h2, h3, h4, p { margin: 0; }

.label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-brass);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.label--centered { text-align: center; }
.label--centered::before { margin-right: 12px; }
.label--centered::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-brass);
  vertical-align: middle;
  margin-left: 12px;
  margin-bottom: 3px;
}

.display {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

.h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}

.h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
}

p { font-size: 17px; line-height: 1.8; color: var(--c-body); }

.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.5;
  color: var(--c-ink);
}

.caption {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}


/* ─── Layout helpers ─────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide   { max-width: var(--max-wide); }
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding: var(--space-section) 0;
  background: var(--c-white);
}

.section--sand {
  background: var(--c-sand);
}

.section--navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.section--navy .h2,
.section--navy .h3 { color: var(--c-white); }
.section--navy p   { color: var(--c-sand); }
.section--navy .label { color: var(--c-sand-deep); }

.section--tight  { padding: calc(var(--space-section) * 0.6) 0; }


/* ─── Skip link ──────────────────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--c-ink);
  color: var(--c-white);
  padding: 12px 18px;
  z-index: 1000;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link:focus { left: 8px; }


/* ─── Header ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(200, 192, 180, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max-wide);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-ink);
}

.brand__crest {
  display: inline-block;
  width: 38px;
  height: auto;
  flex-shrink: 0;
}
.brand__crest img {
  display: block;
  width: 100%;
  height: auto;
}

.brand__wordmark {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand__wordmark em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0 4px;
}

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 28px;
}
.site-nav__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  padding: 4px 0;
}
.site-nav__link:hover { color: var(--c-adriatic); }
.site-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 1px;
  background: var(--c-brass);
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.lang-switch a { padding: 4px; }
.lang-switch a[aria-current="true"] { color: var(--c-ink); }
.lang-switch span { color: var(--c-rule); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-ink);
  width: 40px; height: 40px;
  position: relative;
  padding: 0;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 1px;
  background: var(--c-ink);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }


/* ─── CTA buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  background: var(--c-ink);
  color: var(--c-white);
  text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--c-navy); color: var(--c-white); }
.btn:focus-visible { outline: 2px solid var(--c-adriatic); outline-offset: 3px; }

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

.btn--light {
  background: var(--c-white);
  color: var(--c-ink);
}
.btn--light:hover { background: var(--c-sand); color: var(--c-ink); }

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

.btn__arrow { display: inline-block; font-size: 14px; line-height: 1; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }


.text-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 4px;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover { color: var(--c-adriatic); border-color: var(--c-adriatic); }


/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: clamp(560px, 88vh, 880px);
  width: 100%;
  overflow: hidden;
  background: var(--c-navy);
  color: var(--c-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 30%, rgba(17,17,17,0.45) 100%);
  /* the only gradient in the system — for hero text legibility */
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter) clamp(48px, 9vh, 96px);
  max-width: var(--max-wide);
  margin: 0 auto;
}

.hero__crest {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.9;
  color: var(--c-white);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.95;
  margin-bottom: 32px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 36px;
  opacity: 0.95;
}
.hero__stats li { list-style: none; position: relative; }
.hero__stats li + li::before {
  content: "·";
  position: absolute;
  left: -18px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__cta .btn {
  background: var(--c-white);
  color: var(--c-ink);
}
.hero__cta .btn:hover { background: var(--c-sand); }
.hero__cta .btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.hero__cta .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }


/* Interior page hero (smaller) */
.hero--interior {
  height: clamp(360px, 60vh, 540px);
}
.hero--interior .hero__title {
  font-size: clamp(40px, 7vw, 76px);
}
.hero--interior .hero__inner { justify-content: flex-end; }


/* ─── Section openings ───────────────────────────────────── */

.section-head {
  max-width: var(--max-narrow);
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section-head .label { display: inline-block; margin-bottom: 18px; }
.section-head .h2    { margin-bottom: 24px; }
.section-head .lead  { margin-top: 24px; }


/* ─── Split (image-text) row ─────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.split + .split { margin-top: clamp(80px, 12vw, 140px); }

.split--reverse .split__media { order: 2; }
.split--reverse .split__text  { order: 1; }

.split__text { padding: clamp(0px, 2vw, 24px) 0; }
.split__text .label { margin-bottom: 18px; }
.split__text .h2    { margin-bottom: 28px; }
.split__text p      { margin-bottom: 1.4em; }
.split__text p:last-child { margin-bottom: 0; }
.split__text .text-link { margin-top: 16px; display: inline-block; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split__media--landscape { aspect-ratio: 5 / 4; }


/* ─── Stat / amenity row ─────────────────────────────────── */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  max-width: var(--max-content);
  margin: 0 auto;
}
.stat-row__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--c-rule);
}
.stat-row__item:last-child { border-right: none; }
.stat-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.stat-row__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}


/* ─── Brand ribbon ───────────────────────────────────────── */

.brand-ribbon {
  text-align: center;
  padding: clamp(56px, 9vw, 96px) var(--gutter);
}
.brand-ribbon__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  margin-top: 28px;
}
.brand-ribbon__list li {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--c-ink);
  line-height: 1;
}
.brand-ribbon__list li + li::before {
  content: "·";
  color: var(--c-brass);
  margin-right: 28px;
  margin-left: -28px;
  display: inline-block;
}


/* ─── Pull-quote ─────────────────────────────────────────── */

.pullquote {
  max-width: var(--max-narrow);
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) var(--gutter);
}
.pullquote__mark {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-brass);
  margin: 0 auto 32px;
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.45;
  color: var(--c-ink);
}
.pullquote__attr {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}


/* ─── Gallery grid ───────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-sand);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--wide  { grid-column: span 2; }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  aspect-ratio: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 17, 17, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
}
.lightbox__caption {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  color: var(--c-white);
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: transparent;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }


/* ─── FAQ accordion ──────────────────────────────────────── */

.faq {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__group { margin-bottom: 56px; }
.faq__group-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-brass);
  padding-bottom: 12px;
  margin-bottom: 8px;
  display: inline-block;
}
.faq__item {
  border-bottom: 1px solid var(--c-rule);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--c-ink);
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--c-adriatic);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 0 32px;
  max-width: 720px;
}
.faq__a p { margin-bottom: 1em; }
.faq__a p:last-child { margin-bottom: 0; }


/* ─── Distance ribbon ────────────────────────────────────── */

.distance {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  max-width: var(--max-content);
  margin: 0 auto;
}
.distance__item {
  padding: 32px 16px;
  border-right: 1px solid var(--c-rule);
}
.distance__item:last-child { border-right: none; }
.distance__place {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--c-ink);
  margin-bottom: 4px;
  display: block;
}
.distance__dist {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}


/* ─── Closing CTA ────────────────────────────────────────── */

.closing-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--c-sand);
}
.closing-cta__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta__included {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 36px;
}
.closing-cta__included span { color: var(--c-ink); }


/* ─── Footer ─────────────────────────────────────────────── */

.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: clamp(64px, 9vw, 96px) var(--gutter) 40px;
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-adriatic-light);
  margin-bottom: 20px;
}
.site-footer .brand__wordmark { color: var(--c-white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a, .site-footer p {
  color: var(--c-sand);
  font-size: 14px;
  line-height: 1.7;
}
.site-footer a:hover { color: var(--c-white); border-bottom: 1px solid var(--c-adriatic-light); }
.site-footer__address {
  font-style: normal;
  margin-top: 20px;
}
.site-footer__bottom {
  max-width: var(--max-wide);
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-adriatic-light);
}


/* ─── Sticky mobile CTA ──────────────────────────────────── */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--c-ink);
  color: var(--c-white);
  text-align: center;
  padding: 18px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ─── Booklet download ───────────────────────────────────── */

.booklet {
  max-width: var(--max-narrow);
  margin: 0 auto;
  text-align: center;
}
.booklet__cover {
  margin-bottom: 48px;
  aspect-ratio: 3 / 4;
  background: var(--c-sand);
  overflow: hidden;
}
.booklet__cover img { width: 100%; height: 100%; object-fit: cover; }
.booklet__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ─── Utility ────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}





/* ─── Brand seal (full logo placements) ──────────────────── */

.brand-seal {
  display: block;
  margin: 0 auto;
  width: clamp(120px, 14vw, 180px);
  height: auto;
}

.brand-seal--small {
  width: clamp(80px, 9vw, 110px);
}

.brand-seal--lg {
  width: clamp(180px, 22vw, 280px);
}

/* Hero crest seal (optional, sits above hero title) */
.hero__seal {
  width: clamp(70px, 8vw, 100px);
  height: auto;
  margin: 0 auto 24px;
  display: block;
  opacity: 0.95;
}

/* Closing CTA seal */
.closing-cta__seal {
  width: 88px;
  height: auto;
  margin: 0 auto 36px;
  display: block;
}

/* Section-divider seal (a small crest dividing sections) */
.seal-divider {
  text-align: center;
  padding: 32px 0 8px;
}
.seal-divider img {
  width: 56px;
  height: auto;
  display: inline-block;
  opacity: 0.7;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --space-section: var(--space-section-m); }
  body { font-size: 16px; }

  .site-nav__list, .lang-switch { display: none; }
  .menu-toggle { display: block; }

  .site-nav.is-open {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-rule);
    padding: 24px var(--gutter) 32px;
  }
  .site-nav.is-open .site-nav__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .site-nav.is-open .lang-switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--c-rule);
    width: 100%;
    font-size: 13px;
  }
  .site-nav.is-open .lang-switch a { padding: 8px 4px; }

  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split__media,
  .split--reverse .split__text { order: initial; }

  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-row__item:nth-child(1),
  .stat-row__item:nth-child(2) { border-bottom: 1px solid var(--c-rule); }
  .stat-row__item:nth-child(2) { border-right: none; }

  .distance { grid-template-columns: repeat(2, 1fr); }
  .distance__item { border-right: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); }
  .distance__item:nth-child(2n) { border-right: none; }
  .distance__item:last-child { border-bottom: none; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--tall { grid-row: span 1; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .mobile-cta { display: block; }
  main { padding-bottom: 64px; }

  .hero__title { font-size: clamp(48px, 14vw, 80px); }
}

@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .brand-ribbon__list li + li::before { display: none; }
  .brand-ribbon__list { gap: 8px 0; flex-direction: column; }
}


/* ─── Print ──────────────────────────────────────────────── */

@media print {
  .site-header, .site-footer, .mobile-cta, .hero__cta { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }
}


/* ─── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ─── Cookie consent banner ───────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-sand);
  border-top: 1px solid var(--c-rule);
  padding: 18px var(--gutter);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
  font-family: var(--font-sans);
}

.cookie-banner__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-body);
  margin: 0;
  flex: 1 1 360px;
  min-width: 0;
}

.cookie-banner__text a {
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-brass);
  padding-bottom: 1px;
}

.cookie-banner__text a:hover {
  color: var(--c-adriatic-deep);
  border-color: var(--c-adriatic-deep);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--c-ink);
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: var(--c-ink);
  color: var(--c-white);
}
.cookie-banner__btn--primary:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
}
.cookie-banner__btn--secondary:hover {
  background: var(--c-sand-deep);
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 12px var(--gutter);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .cookie-banner__text {
    font-size: 12px;
    line-height: 1.45;
    flex: 1 1 auto;
  }
  .cookie-banner__actions {
    justify-content: center;
    gap: 8px;
  }
  .cookie-banner__btn {
    flex: 1 1 0;
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  /* Mobile sticky CTA lift if banner visible */
  .cookie-banner:not([hidden]) ~ .mobile-cta {
    bottom: 96px;
  }
}

/* Lift the mobile sticky CTA above the banner when both are visible */
.cookie-banner:not([hidden]) ~ .mobile-cta {
  bottom: 120px;
}


/* ─── Trusted partners strip (getting-here) ─────────── */

.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 8vw, 100px);
  flex-wrap: wrap;
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.partners-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-body);
  transition: opacity .25s ease, transform .25s ease;
  min-width: 0;
}

.partners-strip__item:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

.partners-strip__item img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.partners-strip__role {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brass);
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 700px) {
  .partners-strip {
    gap: 28px 40px;
    margin-top: 24px;
  }
  .partners-strip__item img {
    height: 44px;
    max-width: 160px;
  }
  .partners-strip__role {
    font-size: 10px;
    margin-top: 12px;
  }
}
