/* ==========================================================================
   YOUKOSO STAYS — Design tokens
   Primary navy #001c65 anchors a warm, editorial neutral palette.
   Cormorant Garamond (serif) carries restraint and emotion;
   Manrope (sans) carries navigation, labels and body copy.
   ========================================================================== */
:root {
  /* Color */
  --navy: #001c65;
  --navy-deep: #000f3d;
  --ivory: #f7f3ec;
  --stone: #ece4d6;
  --charcoal: #1b1a17;
  --charcoal-soft: #58554e;
  --clay: #a9835a;
  --line: rgba(27, 26, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.26);
  --white: #ffffff;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero: clamp(3.2rem, 9vw, 7.4rem);
  --fs-display: clamp(2.6rem, 5.6vw, 4.8rem);
  --fs-h2: clamp(2.1rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.85rem);
  --fs-lede: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --fs-eyebrow: 0.74rem;

  /* Layout */
  --container-max: 1360px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --gutter: clamp(1rem, 2vw, 1.75rem);
  --header-h: 84px;

  /* Spacing scale */
  --sp-xs: 0.6rem;
  --sp-sm: 1.25rem;
  --sp-md: clamp(2rem, 4vw, 3.25rem);
  --sp-lg: clamp(3.5rem, 7vw, 6.5rem);
  --sp-xl: clamp(5.5rem, 11vw, 9.5rem);

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.textwhite {color:#ffffff !important}

body, h1, h2, h3, p, figure, ul, ol, blockquote { margin: 0; }
ul, ol { list-style: none; padding: 0; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: var(--white); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* Anchor targets should not sit flush under the fixed header */
section[id], footer[id] { scroll-margin-top: var(--header-h); }

/* ==========================================================================
   Container system — every section aligns to this single source of truth
   ========================================================================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.container--narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--sp-xs);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.section-head { max-width: 640px; margin-bottom: var(--sp-lg); }
.section-head--light .eyebrow,
.section-head--light h2,
.section-head--light .section-head__lede { color: var(--ivory); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.08;
  margin-bottom: var(--sp-sm);
}
.section-head__lede { font-size: var(--fs-lede); color: var(--charcoal-soft); max-width: 46ch; }
.section-head__lede a { border-bottom: 1px solid currentColor; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background var(--ease) .25s, color var(--ease) .25s, border-color var(--ease) .25s, transform var(--ease) .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); }
.btn--outline-light { border: 1px solid var(--line-light); color: var(--white); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn--small { padding: 0.7rem 1.4rem; font-size: 0.7rem; min-height: 40px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.link-arrow--light { color: var(--white); }
.link-arrow span { transition: transform var(--ease) .3s; }
.link-arrow:hover span { transform: translateX(4px); }

/* ==========================================================================
   Header — adaptive scrim keeps the logo legible over any hero image
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--ease) .4s, border-color var(--ease) .4s;
  border-bottom: 1px solid transparent;
}
/* Permanent, subtle gradient behind the nav — present even before
   scrolling — so contrast never depends on the underlying photograph. */
.site-header__scrim {
  position: absolute; inset: 0; z-index: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(0, 15, 61, 0.55) 0%, rgba(0, 15, 61, 0.0) 100%);
  pointer-events: none;
  transition: opacity var(--ease) .4s;
}
.site-header.is-scrolled {
  background-color: #ffffff;
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .site-header__scrim { opacity: 0; }

.site-header__inner {
  position: relative; z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.15rem var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--gutter);
}
.site-header__logo-img {
  height: 60px; width: auto; justify-self: start;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  transition: filter var(--ease) .4s;
}
.site-header.is-scrolled .site-header__logo-img { filter: none; }
.site-header__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  justify-self: start;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.site-header.is-scrolled .site-header__logo-fallback { color: var(--navy); text-shadow: none; }

.site-nav__list { display: flex; gap: clamp(1.5rem, 2.6vw, 2.5rem); justify-self: center; }
.site-nav__list a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: color var(--ease) .3s, text-shadow var(--ease) .3s;
}
.site-header.is-scrolled .site-nav__list a { color: var(--charcoal); text-shadow: none; }
.site-nav__list a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right var(--ease) .3s;
}
.site-nav__list a:hover::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 1.1rem; justify-self: end; }
.site-header:not(.is-scrolled) .btn--primary.btn--small { background: var(--white); color: var(--navy); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: background var(--ease) .3s, transform .3s var(--ease), filter var(--ease) .3s;
}
.site-header.is-scrolled .menu-toggle span { background: var(--charcoal); filter: none; }

/* Hamburger morphs into a clear × close icon once the menu is open —
   the same control opens and closes the menu, so its state is always
   obvious rather than relying on a second, separate close button. */
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.menu-toggle[aria-expanded="true"] span { background: var(--ivory); filter: none; }

/* ===== MOBILE MENU (full-screen overlay) ===== */
/* Fully opaque, self-contained navy panel — its own header row (logo +
   explicit close button) means it never depends on the fixed header
   underneath, which it deliberately covers, remaining reachable. */
.mobile-nav {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh; /* modern viewport unit avoids mobile address-bar jump */
  z-index: 99;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav { transition: none; }
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: max(1.25rem, env(safe-area-inset-top)) 1.5rem 1rem;
}
.mobile-nav__logo img { height: 34px; width: auto; }
.mobile-nav__logo-fallback { font-family: var(--font-display); font-size: 1.15rem; color: var(--ivory); }

.mobile-nav__close {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  font-size: 1.9rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.mobile-nav__close:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }

/* Body region grows/shrinks with available height and centers the
   links vertically — no hardcoded top offsets, so the first item is
   never clipped on short screens; the panel scrolls if it must. */
.mobile-nav__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.75rem;
  min-height: 0;
}
.mobile-nav__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.25rem;
}
.mobile-nav__body ul { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-nav__body a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  color: var(--ivory);
  transition: color .25s var(--ease);
}
.mobile-nav__body a:hover, .mobile-nav__body a:focus-visible { color: var(--clay); }

.mobile-nav__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.75rem max(1.5rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.mobile-nav__whatsapp { text-align: center; color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; font-weight: 500; }

/* Hide the bottom sticky CTA while the full-screen menu is open — the
   menu already contains its own Book Your Stay action. Higher
   specificity than the mobile media-query rule below, so it wins
   regardless of source order. */
body.nav-open .mobile-sticky-cta { display: none; }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(0deg, rgba(0, 15, 61, 0.8) 0%, rgba(0, 15, 61, 0.3) 38%, rgba(0, 15, 61, 0.08) 62%, rgba(0, 15, 61, 0.24) 100%);
}
.hero__content {
  position: relative; z-index: 3;
  width: 100%;
  padding: 0 var(--container-pad) clamp(5.5rem, 11vw, 8rem);
  max-width: 900px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 0.95;
  letter-spacing: -0.005em;
}
.hero__headline em { font-style: italic; font-weight: 400; }
.hero__sub { margin-top: var(--sp-sm); font-size: var(--fs-lede); color: rgba(255, 255, 255, 0.9); max-width: 40ch; }
.hero__actions { margin-top: var(--sp-md); display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__actions .btn { flex: 0 1 auto; }

.hero__controls {
  position: absolute;
  right: var(--container-pad);
  bottom: clamp(1.75rem, 4vw, 2.75rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.hero__control {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease) .25s, border-color var(--ease) .25s;
}
.hero__control:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.6); }
.hero__counter { min-width: 3.4em; text-align: center; }

.hero__scroll-cue {
  position: absolute;
  left: var(--container-pad);
  bottom: clamp(1.75rem, 4vw, 2.75rem);
  z-index: 3;
  display: none;
}
.hero__scroll-line { position: relative; width: 1px; height: 46px; background: rgba(255, 255, 255, 0.4); }
.hero__scroll-line span {
  position: absolute; top: 0; left: -3px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--white);
  animation: cueDrop 2.4s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { top: 0; opacity: 0; }
  25% { opacity: 1; }
  90% { opacity: 0; }
  100% { top: 40px; opacity: 0; }
}
@media (min-width: 700px) { .hero__scroll-cue { display: block; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible [data-reveal],
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(2) { transition-delay: .08s; }
[data-reveal]:nth-child(3) { transition-delay: .16s; }
[data-reveal]:nth-child(4) { transition-delay: .24s; }

/* ==========================================================================
   Story — editorial split introduction / about
   ========================================================================== */
.story { padding: var(--sp-xl) 0; }
.story__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.story__label { grid-column: 1 / 6; }
.story__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.03;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.story__copy { grid-column: 7 / 13; padding-top: 0.4em; border-left: 1px solid var(--line); padding-left: var(--gutter); }
.story__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lede);
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  max-width: 34ch;
}
.story__copy p { color: var(--charcoal-soft); max-width: 46ch; margin-bottom: var(--sp-sm); }
.story__signoff { font-style: normal; color: var(--charcoal); }
.story__signoff em { font-family: var(--font-display); font-style: italic; color: #ffffff; font-size:28px; }

/* ==========================================================================
   Collection — strict 1:1 property grid
   ========================================================================== */
.collection { padding-bottom: var(--sp-xl); }
.collection .section-head { margin-bottom: var(--sp-md); }

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter) var(--gutter);
}
.property__frame { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--stone); }
.property__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.property a:hover .property__frame img,
.property a:focus-visible .property__frame img { transform: scale(1.055); }
.property__caption { padding-top: var(--sp-sm); }
.property__caption h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; color: var(--navy); }
.property__caption p { color: var(--charcoal-soft); font-size: 0.92rem; margin: 0.3rem 0 0.55rem; }
.property:nth-child(4), .property:nth-child(5) { grid-column: span 1; }

@media (min-width: 900px) {
  /* 3 across, then 2 across — same visual weight, per the collection concept */
  .collection__grid { grid-template-columns: repeat(6, 1fr); }
  .property:nth-child(1) { grid-column: 1 / 3; }
  .property:nth-child(2) { grid-column: 3 / 5; }
  .property:nth-child(3) { grid-column: 5 / 7; }
  .property:nth-child(4) { grid-column: 2 / 4; }
  .property:nth-child(5) { grid-column: 4 / 6; }
}

/* ==========================================================================
   Offers — Stay / Celebrate / Experience, three equal editorial panels
   ========================================================================== */
.offers { padding: var(--sp-xl) 0; }
.offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.offer { position: relative; min-height: 620px; overflow: hidden; }
.offer__media { position: absolute; inset: 0; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.offer:hover .offer__media img, .offer:focus-within .offer__media img { transform: scale(1.05); }
.offer__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0, 15, 61, 0.82) 0%, rgba(0, 15, 61, 0.18) 55%, rgba(0, 15, 61, 0.05) 100%);
}
.offer__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.75rem, 2.6vw, 2.5rem); color: var(--white); }
.offer__content h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-display); margin-bottom: 0.5rem; }
.offer__content p { color: rgba(255, 255, 255, 0.86); max-width: 32ch; margin-bottom: 1.1rem; font-size: 0.98rem; }

/* ==========================================================================
   The Youkoso Way — signature numbered list + hover swatch
   ========================================================================== */
.way { background: var(--navy); color: var(--ivory); padding: var(--sp-xl) 0; }
.way__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--sp-lg); align-items: start; }
.way-item { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); padding: var(--sp-sm) 0; border-top: 1px solid rgba(255, 255, 255, 0.15); transition: padding-left .35s var(--ease); }
.way-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.way-item__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.35rem); color: rgba(255, 255, 255, 0.32); line-height: 1; }
.way-item h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); margin-bottom: 0.3rem; transition: color .3s var(--ease); }
.way-item p { color: rgba(255, 255, 255, 0.7); max-width: 42ch; }
.way-item:hover, .way-item:focus-within { padding-left: 0.85rem; }
.way-item:hover h3, .way-item:focus-within h3 { color: var(--clay); }

.way-swatch { position: sticky; top: 7rem; aspect-ratio: 4/5; overflow: hidden; display: none; }
.way-swatch img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s var(--ease); }
@media (min-width: 900px) { .way-swatch { display: block; } }

/* ==========================================================================
   Events — cinematic full-bleed
   ========================================================================== */
.events { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.events__media { position: absolute; inset: 0; z-index: 0; }
.events__media img { width: 100%; height: 100%; object-fit: cover; }
.events__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 15, 61, 0.88) 0%, rgba(0, 15, 61, 0.32) 55%, rgba(0, 15, 61, 0.1) 100%); }
.events__container { position: relative; z-index: 2; width: 100%; padding-top: var(--sp-xl); padding-bottom: var(--sp-lg); }
.events__content { max-width: 700px; }
.events__headline { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-display); line-height: 1.04; margin-bottom: var(--sp-sm); }
.events__sub { font-size: var(--fs-lede); margin-bottom: 0.4rem; }
.events__list { color: rgba(255, 255, 255, 0.8); margin-bottom: var(--sp-md); font-size: 0.92rem; }
.events__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Made for Memories — editorial guest-story review
   ========================================================================== */
.memories { padding: var(--sp-xl) 0; }
.review { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--sp-lg); align-items: center; }
.review__media { aspect-ratio: 5/6; overflow: hidden; background: var(--stone); }
.review__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s var(--ease); }
.review__content { display: flex; flex-direction: column; gap: var(--sp-md); }
.review__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.28;
  color: var(--navy);
  transition: opacity .3s var(--ease);
}
.review__quote footer { margin-top: var(--sp-sm); display: flex; flex-direction: column; gap: 0.15rem; }
.review__quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.review__quote footer span { font-size: 0.82rem; color: var(--charcoal-soft); }
.review__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: var(--sp-sm); border-top: 1px solid var(--line); }
.review__nav { display: flex; align-items: center; gap: 0.85rem; font-size: 0.78rem; letter-spacing: 0.05em; color: var(--charcoal-soft); }
.review__control {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease) .25s, border-color var(--ease) .25s;
}
.review__control:hover { background: var(--stone); border-color: var(--navy); }
.review__counter { min-width: 3.2em; text-align: center; }

/* ==========================================================================
   Find Your Stay — calm booking module
   ========================================================================== */
.finder { background: var(--stone); padding: var(--sp-xl) 0; text-align: center; }
.finder h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); color: var(--navy); margin-bottom: var(--sp-lg); line-height: 1.1; }
.booking-widget { display: flex; align-items: stretch; background: var(--white); border: 1px solid var(--line); text-align: left; }
.booking-widget__field { flex: 1; padding: 1rem 1.5rem; min-width: 0; }
.booking-widget__field label { display: block; font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 0.3rem; }
.booking-widget__field input,
.booking-widget__field select { width: 100%; border: none; background: transparent; font-size: 1rem; color: var(--charcoal); min-height: 26px; font-family: var(--font-body); }
.booking-widget__field input:focus,
.booking-widget__field select:focus { outline: none; }
.booking-widget__divider { width: 1px; background: var(--line); }
.booking-widget__submit { border-radius: 0; padding: 0 2.25rem; }
.booking-widget__note { margin-top: 1rem; font-size: 0.9rem; color: var(--navy); min-height: 1.3em; }
.finder__help { margin-top: var(--sp-md); color: var(--charcoal-soft); }
.finder__help a { border-bottom: 1px solid currentColor; font-weight: 600; color: var(--navy); }

/* ==========================================================================
   Instagram — curated mosaic
   ========================================================================== */
.instagram { padding: var(--sp-xl) 0; }
.instagram .section-head { margin-bottom: var(--sp-md); }
.instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(150px, auto); gap: var(--sp-xs); padding: 0 var(--container-pad); max-width: var(--container-max); margin: 0 auto; }
.instagram__grid li { position: relative; overflow: hidden; }
.instagram__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.instagram__grid a:hover img { transform: scale(1.08); }
.instagram__reel { position: absolute; top: 0.6rem; right: 0.6rem; color: var(--white); font-size: 0.9rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

.ig--a { grid-column: 1 / 3; grid-row: 1 / 3; }
.ig--b { grid-column: 3 / 5; grid-row: 1 / 2; }
.ig--c { grid-column: 5 / 7; grid-row: 1 / 2; }
.ig--d { grid-column: 3 / 5; grid-row: 2 / 3; }
.ig--e { grid-column: 5 / 7; grid-row: 2 / 3; }
.ig--f { grid-column: 1 / 3; grid-row: 3 / 4; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.8); padding: var(--sp-lg) 0 var(--sp-sm); }
.site-footer__top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: var(--sp-md); padding-bottom: var(--sp-lg); border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.site-footer__wordmark { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.site-footer__tagline { font-style: italic; font-family: var(--font-display); margin-top: 0.3rem; color: var(--clay); }
.site-footer__col h3 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: var(--sp-sm); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__col a { font-size: 0.9rem; transition: color .25s var(--ease); }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--sp-sm); font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
.site-footer__address { font-style: normal; }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; background: var(--white); border-top: 1px solid var(--line); }
.mobile-sticky-cta a { flex: 1; text-align: center; padding: 0.95rem 0.5rem; min-height: 48px; display: flex; align-items: center; justify-content: center; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.mobile-sticky-cta a:first-child { background: var(--navy); color: var(--white); }
.mobile-sticky-cta a:last-child { color: var(--navy); }

/* ==========================================================================
   RESPONSIVE — tablet
   ========================================================================== */
/* ===== MOBILE / TABLET NAVIGATION ===== */
@media (max-width: 1180px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }

  /* With the centered nav hidden, drop the 3-column grid in favour of
     an explicit flex row — logo pinned left, hamburger pinned right —
     so alignment never depends on an empty grid track collapsing. */
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .way__grid { grid-template-columns: 1fr; }
  .offer { min-height: 520px; }
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__label { grid-column: 1 / -1; margin-bottom: var(--sp-md); }
  .story__copy { grid-column: 1 / -1; border-left: none; padding-left: 0; }
  .story__headline { font-size: clamp(2.6rem, 12vw, 3.6rem); }

  .offers__grid { grid-template-columns: 1fr; gap: var(--sp-sm); }
  .offer { min-height: 62vh; }

  .review { grid-template-columns: 1fr; gap: var(--sp-md); }
  .review__media { aspect-ratio: 16/10; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   RESPONSIVE — mobile
   ========================================================================== */
@media (max-width: 720px) {
  :root { --container-pad: 1.25rem; --header-h: 72px; }

  /* ===== MOBILE HEADER ===== */
  /* Scale the logo down from its larger desktop size so it has proper
     breathing room next to the hamburger and never crowds the header. */
  .site-header__logo-img { height: 40px; }
  .site-header__inner { padding-top: 0.9rem; padding-bottom: 0.9rem; }

  /* ===== MOBILE HERO ===== */
  .hero { align-items: flex-end; }
  .hero__content { padding-bottom: 7.5rem; max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__controls { left: var(--container-pad); right: auto; bottom: 1.25rem; }
  .hero__scroll-cue { display: none; }

  /* ===== MOBILE COLLECTION ===== */
  .collection__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .property:nth-child(4), .property:nth-child(5) { grid-column: auto; }

  /* ===== MOBILE BOOKING ===== */
  .booking-widget { flex-direction: column; }
  .booking-widget__divider { width: auto; height: 1px; }
  .booking-widget__field { padding: 0.95rem 1.25rem; }
  .booking-widget__submit { width: 100%; padding: 1rem; }

  /* ===== MOBILE INSTAGRAM ===== */
  .instagram__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(140px, auto); }
  .ig--a, .ig--b, .ig--c, .ig--d, .ig--e, .ig--f { grid-column: auto; grid-row: auto; }
  .ig--a { grid-column: 1/3; aspect-ratio: 16/11; }

  /* ===== MOBILE FOOTER ===== */
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-md); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  /* ===== MOBILE STICKY CTA ===== */
  /* Respect the home-indicator / notch safe area on iOS so the bar
     never sits flush against the physical edge of the screen. */
  .mobile-sticky-cta {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  body { padding-bottom: calc(3.6rem + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 420px) {
  .hero__headline { font-size: clamp(2.8rem, 14vw, 3.6rem); }
  .story__headline { font-size: clamp(2.2rem, 14vw, 2.9rem); }
}
