/* ============================================================
   VILLA QUALIA — Design System
   taste-skill: DESIGN_VARIANCE=8, MOTION_INTENSITY=5, VISUAL_DENSITY=3
   Fonts: Cormorant Garamond (display/headings) · Made Saonara (logo wordmark) · Made Canvas (year accents) · Nomark (VQ monogram) · Outfit (body)
   Palette: Dark olive base · Stone · Teal accent · Amber gold
   ============================================================ */

/* ── 0. CUSTOM FONTS ──────────────────────────────────────── */

@font-face {
  font-family: 'Made Saonara';
  src: url('../fonts/MADE SAONARA.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Made Canvas';
  src: url('../fonts/MADE Canvas Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nomark';
  src: url('../fonts/Nomark.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */

:root {
  /* Backgrounds — dark olive/near-black */
  --bg-0: #0b0d07;
  --bg-1: #111309;
  --bg-2: #181a0e;
  --bg-3: #1e2112;

  /* Stone — warm limestone tones */
  --stone-50:  #f6f0e6;
  --stone-100: #ede4d4;
  --stone-200: #d8c9b0;
  --stone-300: #c0aa8a;
  --stone-400: #a48c6c;
  --stone-500: #886e52;
  --stone-600: #6c5640;

  /* Teal — primary accent */
  --teal-300: #6ec0a8;
  --teal-500: #4a9280;
  --teal-700: #2e6858;
  --teal-900: #1a3d34;

  /* Gold — secondary accent */
  --gold-300: #d8bc7a;
  --gold-500: #c8a044;
  --gold-700: #8c6c28;

  /* Text */
  --text-primary:   #ede5d8;
  --text-secondary: #a89880;
  --text-muted:     #6a5e52;

  /* Borders */
  --border-subtle:  rgba(192, 170, 138, 0.09);
  --border-default: rgba(192, 170, 138, 0.16);
  --border-strong:  rgba(192, 170, 138, 0.32);

  /* Overlays */
  --overlay-mid:    rgba(11, 13, 7, 0.60);
  --overlay-heavy:  rgba(11, 13, 7, 0.82);

  /* Typography */
  --font-display: 'Spectral', Georgia, serif;
  --font-saonara: 'Made Saonara', Georgia, serif;
  --font-canvas:  'Made Canvas', Georgia, serif;
  --font-nomark:  'Nomark', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-7:  1.75rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-14: 3.5rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --radius-sm:   2px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-full: 9999px;

  /* Motion */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:      cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out:     cubic-bezier(0, 0.55, 0.45, 1);
  --dur-fast:   150ms;
  --dur-base:   300ms;
  --dur-slow:   500ms;
  --dur-slower: 800ms;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 32px 96px rgba(0, 0, 0, 0.55);

  /* Layout */
  --max-w:       1380px;
  --nav-h:       72px;
  --section-py:  clamp(var(--sp-16), 8vw, var(--sp-24));
}

/* ── 2. RESET ─────────────────────────────────────────────── */

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

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

body {
  background-color: var(--bg-1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 65ch;
}

address { font-style: normal; }

/* ── 3. TYPOGRAPHY SCALE ──────────────────────────────────── */

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, var(--text-8xl));
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, var(--text-7xl));
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  font-weight: 400;
  letter-spacing: -0.025em;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, var(--text-4xl));
  font-weight: 400;
  letter-spacing: -0.02em;
}

.heading-3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, var(--text-3xl));
  font-weight: 400;
  letter-spacing: -0.015em;
}

.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-500);
}

.caption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-12); }
}

@media (min-width: 1280px) {
  .container { padding-inline: var(--sp-16); }
}

.section {
  padding-block: var(--section-py);
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.625rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform var(--dur-base) var(--ease-premium),
    background-color var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium),
    opacity var(--dur-base) var(--ease-premium);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background-color: var(--teal-700);
  color: var(--stone-100);
  border: 1px solid var(--teal-500);
}

.btn--primary:hover {
  background-color: var(--teal-500);
  border-color: var(--teal-300);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn--ghost:hover {
  border-color: var(--border-strong);
  background-color: rgba(192, 170, 138, 0.05);
}

.btn--gold {
  background-color: var(--gold-700);
  color: var(--stone-100);
  border: 1px solid var(--gold-500);
}

.btn--gold:hover {
  background-color: var(--gold-500);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

/* ── 6. NAVIGATION ────────────────────────────────────────── */

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--dur-slow) var(--ease-premium),
    backdrop-filter var(--dur-slow) var(--ease-premium),
    -webkit-backdrop-filter var(--dur-slow) var(--ease-premium),
    border-color var(--dur-slow) var(--ease-premium);
}

.nav--scrolled {
  background-color: rgba(11, 13, 7, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border-subtle);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

@media (min-width: 1024px) {
  .nav__inner { padding-inline: var(--sp-12); }
}

/* ── Logo ── */

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  transition: opacity var(--dur-base) var(--ease-premium);
}

.nav__logo:hover { opacity: 0.75; }

.nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--stone-300);
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name {
  font-family: var(--font-saonara);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone-200);
  line-height: 1.2;
}

.nav__logo-year {
  font-family: var(--font-canvas);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 480px) {
  .nav__logo-year { display: block; }
}

/* ── Desktop links ── */

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

@media (min-width: 860px) {
  .nav__links { display: flex; }
}

.nav__links a {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--dur-base) var(--ease-premium);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: var(--sp-3);
  right: var(--sp-3);
  height: 1px;
  background-color: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-premium);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* ── Controls ── */

.nav__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

/* ── Language toggle ── */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast);
  cursor: pointer;
}

.lang-toggle__option {
  opacity: 0.5;
  cursor: pointer;
  transition:
    color var(--dur-base) var(--ease-premium),
    opacity var(--dur-base) var(--ease-premium);
}

.lang-toggle__option--active {
  color: var(--teal-300);
  opacity: 1;
}

.lang-toggle__sep {
  color: var(--border-strong);
  opacity: 0.6;
}

/* ── Nav CTA ── */

.nav__cta {
  display: none;
  padding: 0.5rem 1.1rem;
  font-size: 11px;
}

@media (min-width: 560px) {
  .nav__cta { display: inline-flex; }
}

/* ── Hamburger ── */

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--dur-base);
}

@media (min-width: 860px) {
  .nav__hamburger { display: none; }
}

.nav__hamburger:hover { opacity: 0.65; }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--stone-200);
  transform-origin: center;
  transition:
    transform var(--dur-base) var(--ease-premium),
    opacity var(--dur-base) var(--ease-premium);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile menu ── */

.nav__mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background-color: var(--bg-0);
  padding: var(--sp-8) var(--sp-6) var(--sp-12);
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: auto;
  z-index: 199;
  transition:
    transform var(--dur-slow) var(--ease-premium),
    visibility var(--dur-slow);
}

.nav__mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav__mobile-lang {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.nav__mobile-lang button {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease-premium);
}

.nav__mobile-lang button.active {
  color: var(--teal-300);
  border-color: var(--teal-700);
  background-color: rgba(46, 104, 88, 0.12);
}

.nav__mobile-menu ul {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-8);
}

.nav__mobile-menu ul a {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition:
    color var(--dur-base) var(--ease-premium),
    padding-left var(--dur-base) var(--ease-premium);
}

.nav__mobile-menu ul a:hover {
  color: var(--text-primary);
  padding-left: var(--sp-3);
}

.nav__mobile-menu .btn {
  width: 100%;
  justify-content: center;
  padding: var(--sp-4);
  font-size: var(--text-base);
}

/* ── 7. SCROLL REVEAL ─────────────────────────────────────── */

/* ── Keyframe definitions ── */
@keyframes vq-reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vq-reveal-left {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes vq-reveal-right {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hidden until observed — no transition, keyframe handles both states */
.reveal { opacity: 0; }

/* Fire animations when JS adds .is-visible */
.reveal.is-visible              { animation: vq-reveal-up    var(--dur-slower) var(--ease-premium) forwards; }
.reveal--left.is-visible        { animation: vq-reveal-left  var(--dur-slower) var(--ease-premium) forwards; }
.reveal--right.is-visible       { animation: vq-reveal-right var(--dur-slower) var(--ease-premium) forwards; }

/* Staggered delays */
.reveal--d1.is-visible { animation-delay:  80ms; }
.reveal--d2.is-visible { animation-delay: 160ms; }
.reveal--d3.is-visible { animation-delay: 240ms; }
.reveal--d4.is-visible { animation-delay: 320ms; }
.reveal--d5.is-visible { animation-delay: 400ms; }

/* During delay keep element invisible (animation hasn't started yet) */
.reveal--d1, .reveal--d2, .reveal--d3, .reveal--d4, .reveal--d5 { opacity: 0; }

/* Reduced motion: skip animation entirely */
@media (prefers-reduced-motion: reduce) {
  .reveal.is-visible,
  .reveal--left.is-visible,
  .reveal--right.is-visible { animation: none; opacity: 1; }
}

/* ── 8. SECTION HEADER ────────────────────────────────────── */

.section-header {
  margin-bottom: clamp(var(--sp-12), 6vw, var(--sp-20));
}

.section-header .overline {
  display: block;
  margin-bottom: var(--sp-4);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  margin-top: var(--sp-2);
}

.section-header p {
  margin-top: var(--sp-5);
}

/* ── 9. DIVIDER ───────────────────────────────────────────── */

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--teal-700);
  display: block;
  margin-block: var(--sp-6);
}

/* ── 10. FOOTER ───────────────────────────────────────────── */

.footer {
  background-color: var(--bg-0);
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--sp-20) var(--sp-12);
}

/* Sub-pages: footer is just the copyright strip — no need for full section padding */
.footer--slim {
  padding-block: var(--sp-6);
}

.footer--slim .footer__bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12) var(--sp-16);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: var(--sp-16);
  }
}

.footer__brand-tagline {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a,
.footer__links address {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  transition: color var(--dur-base) var(--ease-premium);
}

.footer__links a:hover { color: var(--text-primary); }

.footer__bottom {
  margin-top: var(--sp-16);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: none;
}

.footer__social {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition:
    color var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}

.footer__social a:hover {
  color: var(--text-primary);
  border-color: var(--border-default);
}

/* ── 11. 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;
}

.text-teal   { color: var(--teal-500); }
.text-gold   { color: var(--gold-500); }
.text-stone  { color: var(--stone-300); }
.text-muted  { color: var(--text-muted); }

/* ── 12. PAGE STUBS (temporary) ───────────────────────────── */

.stub-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
}

.stub-hero__inner {
  text-align: center;
  padding: var(--sp-12);
}

.stub-hero__inner .overline {
  display: block;
  margin-bottom: var(--sp-4);
}

.stub-hero__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.stub-hero__inner p {
  margin-inline: auto;
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: var(--sp-8);
}

/* ── 13. HERO ─────────────────────────────────────────────── */

@keyframes vq-ken-burns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-0.5%, 0.5%); }
}

@keyframes vq-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes vq-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Background image container */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: vq-ken-burns 16s ease-out forwards;
  will-change: transform;
}

/* Gradient overlays — left/bottom heavy for readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      108deg,
      rgba(11, 13, 7, 0.92) 0%,
      rgba(11, 13, 7, 0.72) 30%,
      rgba(11, 13, 7, 0.35) 58%,
      rgba(11, 13, 7, 0.50) 100%
    ),
    linear-gradient(
      to top,
      rgba(11, 13, 7, 0.45)  0%,
      rgba(11, 13, 7, 0.0)  28%
    ),
    linear-gradient(
      to bottom,
      rgba(11, 13, 7, 0.45) 0%,
      rgba(11, 13, 7, 0.0) 18%
    );
}

/* Main content block */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(var(--sp-16), 9vh, var(--sp-24));
}

.hero__inner {
  max-width: 640px;
}

/* Brand identity row */
.hero__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  animation: vq-fade-in 1s var(--ease-premium) 0.2s both;
}

.hero__vq-mark {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  color: var(--stone-300);
}

.hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__villa-name {
  font-family: var(--font-saonara);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--stone-200);
  line-height: 1.2;
  max-width: none;
}

.hero__villa-year {
  font-family: var(--font-canvas);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Thin divider between brand and tagline */
.hero__rule {
  width: 40px;
  height: 1px;
  background-color: var(--teal-700);
  margin-bottom: var(--sp-8);
  animation: vq-fade-in 0.6s var(--ease-premium) 0.5s both;
}

/* Main tagline — h1 */
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--stone-100);
  margin-bottom: var(--sp-6);
}

.hero__tagline span {
  display: block;
  animation: vq-fade-up 0.9s var(--ease-premium) both;
}

.hero__tagline span:nth-child(1) { animation-delay: 0.5s; }
.hero__tagline span:nth-child(2) { animation-delay: 0.68s; }
.hero__tagline span:nth-child(3) { animation-delay: 0.86s; }

/* Subtitle */
.hero__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: var(--sp-8);
  animation: vq-fade-up 0.9s var(--ease-premium) 1.0s both;
}

/* CTA row */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  animation: vq-fade-up 0.9s var(--ease-premium) 1.1s both;
}

/* Trust line */
.hero__trust {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: none;
  animation: vq-fade-in 1s var(--ease-premium) 1.3s both;
}

.hero__trust::before {
  content: '—  ';
  opacity: 0.4;
}

/* Social icons (absolute, bottom-right of hero) */
.hero__social {
  position: absolute;
  bottom: clamp(var(--sp-8), 5vh, var(--sp-12));
  right: var(--sp-6);
  z-index: 3;
  display: flex;
  gap: var(--sp-3);
  animation: vq-fade-in 1s var(--ease-premium) 1.4s both;
}

@media (min-width: 1024px) {
  .hero__social { right: var(--sp-12); }
}

.hero__social a:not(.hero__social-ig) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(192, 170, 138, 0.22);
  border-radius: var(--radius-sm);
  color: var(--stone-400);
  transition:
    color var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium),
    background-color var(--dur-base) var(--ease-premium);
}

.hero__social a:not(.hero__social-ig):hover {
  color: var(--stone-200);
  border-color: rgba(192, 170, 138, 0.5);
  background-color: rgba(192, 170, 138, 0.08);
}

/* Scroll cue — animated line at bottom center */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: vq-fade-in 1s var(--ease-premium) 1.6s both;
}

@keyframes vq-scroll-pulse {
  0%   { transform: scaleY(1); opacity: 0.5; }
  50%  { transform: scaleY(0.3); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0.5; }
}

.hero__scroll-cue span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-500), transparent);
  transform-origin: top;
  animation: vq-scroll-pulse 2s ease-in-out infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg img,
  .hero__tagline span,
  .hero__brand,
  .hero__rule,
  .hero__subtitle,
  .hero__actions,
  .hero__trust,
  .hero__social,
  .hero__scroll-cue,
  .hero__scroll-cue span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── 14. QUICK FACTS BAR ──────────────────────────────────── */

.facts-bar {
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: var(--sp-5) var(--sp-6);
}

.facts-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  list-style: none;
}

.facts-bar__item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  white-space: nowrap;
}

.facts-bar__sep {
  color: var(--stone-600);
  font-size: var(--text-xs);
  opacity: 0.5;
  user-select: none;
}

/* On small screens, hide middle separators to avoid wrapping oddly */
@media (max-width: 480px) {
  .facts-bar__list { gap: var(--sp-2) var(--sp-4); }
  .facts-bar__item { font-size: var(--text-xs); }
}

/* ── 15. AVAILABILITY CALENDAR ────────────────────────────── */

/* Section wrapper */
.availability-preview {
  padding-block: var(--sp-20) var(--sp-16);
}

/* Direct booking note */
.availability-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.availability-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-700);
  flex-shrink: 0;
}

/* 3-column calendar grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

@media (max-width: 900px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .calendar-grid { grid-template-columns: 1fr; }
}

/* Loading state */
.calendar-grid--loading { opacity: 0.5; pointer-events: none; }

/* Individual month */
.cal-month {
  background-color: var(--bg-1);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: var(--sp-5);
}

.cal-month__header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.cal-month__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--stone-300);
  letter-spacing: 0.01em;
}

.cal-month__year {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Grid: 7-column */
.cal-month__grid { width: 100%; }

.cal-header-row,
.cal-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-header-row { margin-bottom: 4px; }

.cal-day-header {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding-block: var(--sp-1);
}

/* Day cells */
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  border-radius: 2px;
  transition: background-color 0.15s ease;
  cursor: default;
}

.cal-day--empty {
  background-color: transparent;
}

.cal-day--past {
  color: var(--text-muted);
  opacity: 0.35;
}

.cal-day--available {
  color: var(--text-secondary);
}

.cal-day--available:hover {
  background-color: rgba(46, 104, 88, 0.12);
  color: var(--stone-300);
}

.cal-day--booked {
  color: var(--text-muted);
  background-color: rgba(192, 170, 138, 0.06);
  text-decoration: line-through;
  text-decoration-color: var(--stone-600);
  opacity: 0.5;
}

.cal-day--today {
  background-color: rgba(46, 104, 88, 0.2);
  color: var(--teal-400, #5aaa90);
  font-weight: 500;
  border: 1px solid rgba(46, 104, 88, 0.4);
}

/* Legend */
.calendar-legend {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.cal-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.cal-legend-swatch--available {
  background-color: var(--bg-1);
  border: 1px solid var(--border-subtle);
}

.cal-legend-swatch--booked {
  background-color: rgba(192, 170, 138, 0.06);
  border: 1px solid rgba(192, 170, 138, 0.15);
}

.cal-legend-swatch--today {
  background-color: rgba(46, 104, 88, 0.2);
  border: 1px solid rgba(46, 104, 88, 0.4);
}

/* Skeleton shimmer */
@keyframes cal-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.cal-month--skeleton {
  pointer-events: none;
}

.cal-skel-head,
.cal-skel-row {
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--bg-2) 0%,
    rgba(192,170,138,0.06) 50%,
    var(--bg-2) 100%
  );
  background-size: 800px 100%;
  animation: cal-shimmer 1.4s ease-in-out infinite;
}

.cal-skel-head {
  height: 22px;
  width: 40%;
  margin-bottom: var(--sp-4);
}

.cal-skel-row {
  height: 20px;
  margin-bottom: var(--sp-2);
}


/* ── 16. SECTION CTA ──────────────────────────────────────── */

.section-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: calc(-1 * var(--sp-8)); /* pull CTA closer to cards above */
}

/* ── 17. GALLERY PREVIEW ──────────────────────────────────── */

.gallery-preview {
  /* padding-bottom handled in section 36 */
}

/*
  Layout: portrait anchor left (spans 2 rows) + 2×2 landscape grid right.
  Row heights are driven by the 16:9 aspect-ratio of the right cells —
  no fixed px heights, so photos show at their natural proportions.
*/
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "a b c"
    "a d e";
  gap: 4px;
  margin-top: var(--sp-10);
}

/* Portrait feature — left column, spans both rows */
.gallery-cell--a {
  grid-area: a;
  /* height determined by the two 16:9 right rows + gap */
}

/* Right-side 16:9 landscape cells — their aspect-ratio drives row height */
.gallery-cell--b { grid-area: b; aspect-ratio: 16/9; }
.gallery-cell--c { grid-area: c; aspect-ratio: 16/9; }
.gallery-cell--d { grid-area: d; aspect-ratio: 16/9; }
.gallery-cell--e { grid-area: e; aspect-ratio: 16/9; }

/* Cell base */
.gallery-cell {
  position: relative;
  overflow: hidden;
  display: block;
  background-color: var(--bg-2);
  min-height: 0; /* allow grid shrink */
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-cell:hover img {
  transform: scale(1.04);
}

/* Subtle dark overlay on hover for non-more cells */
.gallery-cell:not(.gallery-cell--more)::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(11, 13, 7, 0);
  transition: background-color 0.4s ease;
}

.gallery-cell:not(.gallery-cell--more):hover::after {
  background-color: rgba(11, 13, 7, 0.12);
}

/* "+more" overlay cell */
.gallery-cell--more::after { display: none; }

.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 13, 7, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: background-color 0.4s ease;
}

.gallery-cell--more:hover .gallery-more-overlay {
  background-color: rgba(11, 13, 7, 0.44);
}

.gallery-more-overlay__count {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1;
  letter-spacing: -0.02em;
}

.gallery-more-overlay__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-300);
}

/* Tablet: portrait cell on top, 2×2 below */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .gallery-cell--a { aspect-ratio: 16/9; } /* landscape on tablet */
}

/* Mobile: single column */
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "e";
  }
  .gallery-cell--a { aspect-ratio: 16/9; }
  .gallery-cell--d { display: none; }
}


/* ── 18. VILLA OVERVIEW ───────────────────────────────────── */

.villa-overview__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Sticky image panel on scroll */
.villa-overview__visual {
  position: sticky;
  top: calc(80px + var(--sp-8));
}

.villa-overview__photo-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--bg-2);
}

.villa-overview__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Watermark year — decorative, barely-there */
.villa-overview__year-mark {
  position: absolute;
  bottom: -0.15em;
  left: -0.04em;
  font-family: var(--font-canvas);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--stone-300);
  opacity: 0.13;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Stat strip below image */
.villa-overview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-subtle);
  border-top: none;
}

.villa-stat {
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--border-subtle);
}

.villa-stat:last-child { border-right: none; }

.villa-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 1;
  letter-spacing: -0.02em;
}

.villa-stat__label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Text side */
.villa-overview__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--stone-100);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.villa-overview__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 58ch;
}

/* Olive oil callout — editorial aside */
.villa-overview__olive {
  border-left: 2px solid var(--teal-700);
  padding-left: var(--sp-5);
  margin-top: var(--sp-8);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--stone-300);
  line-height: 1.65;
  max-width: 52ch;
}

/* Tablet */
@media (max-width: 900px) {
  .villa-overview__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .villa-overview__visual {
    position: static;
  }
  /* image before text on mobile */
  .villa-overview__visual { order: -1; }
}

/* ── 19. PROPERTY HIGHLIGHTS STRIP ───────────────────────── */

.amenities-highlights-section { padding-bottom: var(--sp-16); }

.prop-highlights-bar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-subtle);
}
.prop-highlights-bar .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Grid container — border-left + border-top create the outer frame;
   each cell's border-right + border-bottom create the inner grid lines */
.amenity-hl-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
  background: var(--bg-1);
  margin-bottom: 0;
}

.amenity-hl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-8) var(--sp-4);
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  /* stagger reveal — initial hidden state */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease-out,
              transform 0.4s ease-out,
              background 0.18s ease;
  transition-delay: calc(var(--item-index, 0) * 45ms);
}

.amenity-hl-strip.is-revealed .amenity-hl-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .amenity-hl-item {
    opacity: 1;
    transform: none;
    transition: background 0.18s ease;
  }
}

.amenity-hl-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1;
  letter-spacing: -0.01em;
}

.amenity-hl-item__num sup {
  font-size: 0.45em;
  vertical-align: top;
  margin-top: 0.25em;
  letter-spacing: 0;
}

.amenity-hl-item__icon {
  color: var(--teal-700);
  flex-shrink: 0;
}

.amenity-hl-item__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Link variant — "Full Amenities" */
.amenity-hl-item--link {
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease;
  cursor: pointer;
}
.amenity-hl-item--link:hover {
  background: var(--bg-2);
}
.amenity-hl-item--link:hover .amenity-hl-item__icon {
  color: var(--teal-500);
}
.amenity-hl-item--link:hover .amenity-hl-item__label {
  color: var(--text-primary);
}

@media (max-width: 1100px) {
  .amenity-hl-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 540px) {
  .amenity-hl-strip { grid-template-columns: repeat(2, 1fr); }
  .amenity-hl-item { padding: var(--sp-6) var(--sp-3); }
}


/* ── 19b. GALLERY — AIRBNB STYLE ─────────────────────────── */

.gallery-airbnb { background: var(--bg-1); }

.airbnb-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 256px 256px;
  gap: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--sp-10);
}

.airbnb-grid__cell {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}

.airbnb-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.airbnb-grid__cell:hover img {
  transform: scale(1.04);
}

/* Main (left) cell spans both rows */
.airbnb-grid__cell--main {
  grid-row: 1 / 3;
}

/* Last cell carries the "show all" button */
.airbnb-grid__cell--last {
  position: relative;
}

/* "Show all photos" button — positioned bottom-right of last cell */
.airbnb-grid__show-btn {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.95);
  color: #1a1c10;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  text-decoration: none;
}
.airbnb-grid__show-btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Fallback "show all" CTA — hidden on desktop, revealed on tablet/mobile */
.airbnb-cta-mobile {
  display: none;
  margin-top: var(--sp-5);
}

/* Responsive: tablet — drop to 2 columns, hide cells 4 & 5, show fallback CTA */
@media (max-width: 900px) {
  .airbnb-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .airbnb-grid__cell:nth-child(4),
  .airbnb-grid__cell:nth-child(5) {
    display: none;
  }
  .airbnb-cta-mobile { display: flex; }
}

/* Mobile — full-width single shot */
@media (max-width: 600px) {
  .airbnb-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px;
    gap: 0;
  }
  .airbnb-grid__cell { display: none; }
  .airbnb-grid__cell--main {
    display: block;
    grid-row: 1;
  }
}


/* ── 19c. WHERE YOU'LL SLEEP ──────────────────────────────── */

.sleep-section {
  padding-block: var(--section-py);
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
}

.sleep-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--stone-100);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-8);
}

/* Outer wrapper — clips the right-edge fade */
.sleep-scroll-outer {
  position: relative;
  overflow: hidden;
}

/* Right-edge gradient fade (indicates more content) */
.sleep-scroll-outer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(60px, 8vw, 100px);
  height: 100%;
  background: linear-gradient(to left, var(--bg-1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Horizontal scroll track */
.sleep-cards {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
  padding-bottom: var(--sp-4);
}
.sleep-cards::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .sleep-cards {
    padding-left: var(--sp-12);
    padding-right: var(--sp-12);
  }
}

@media (min-width: 1280px) {
  .sleep-cards {
    /* Align with container left edge on wide screens */
    padding-left: calc((100vw - var(--max-w)) / 2 + var(--sp-16));
    padding-right: var(--sp-16);
  }
}

/* Individual bedroom card */
.sleep-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

@media (min-width: 600px) {
  .sleep-card { flex-basis: 300px; }
}

.sleep-card__img {
  display: block;   /* anchor tag needs this to behave like a div */
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  background: var(--bg-3);
  /* hover scale on the container — keeps img free for parallax transform */
  transition: transform 0.5s ease;
}

.sleep-card:hover .sleep-card__img {
  transform: scale(1.02);
}

.sleep-card__img img {
  width: 100%;
  height: calc(100% + 48px); /* 24px overhang each side for parallax travel */
  margin-top: -24px;
  object-fit: cover;
  display: block;
  will-change: transform;
  /* no CSS transition — JS drives the parallax */
}

.sleep-card__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  line-height: 1;
}

.sleep-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1;
  margin: var(--sp-1) 0 var(--sp-2);
  letter-spacing: -0.02em;
}

.sleep-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ── 19d. OUR STORY / MEET YOUR HOST ─────────────────────── */

.story-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Sticky photo column */
.story-visual {
  position: sticky;
  top: calc(80px + var(--sp-8));
}

.story-hero-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-3);
}

.story-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Before/After thumbnail pair */
.story-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.story-ba-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-3);
}

.story-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-ba-item:hover img { transform: scale(1.04); }

.story-ba-label {
  position: absolute;
  bottom: var(--sp-2);
  left: var(--sp-2);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.story-ba-label--before {
  background: rgba(0, 0, 0, 0.55);
  color: var(--stone-200);
  border: 1px solid rgba(192, 170, 138, 0.2);
}

.story-ba-label--after {
  background: rgba(46, 104, 88, 0.82);
  color: #fff;
}

/* Text column */
.story-text {
  padding-top: var(--sp-2);
}

.story-title-wrap {
  position: relative;
  margin-bottom: var(--sp-8);
}

.story-ghost-num {
  position: absolute;
  right: -0.1em;
  top: -0.25em;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 11rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(192, 170, 138, 0.055);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.story-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.story-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--stone-100);
  border-left: 2px solid var(--teal-700);
  padding-left: var(--sp-5);
  margin: var(--sp-8) 0 var(--sp-2);
  line-height: 1.6;
}

.story-pull-attr {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: calc(var(--sp-5) + 2px);
  margin-bottom: var(--sp-8);
  font-style: normal;
}

.story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.story-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-300);
  text-decoration: none;
  transition: gap 0.22s ease;
}

.story-cta:hover { gap: var(--sp-4); }

.story-host-chip {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.story-host-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1.5px solid var(--border-default);
}

.story-host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.story-host-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.story-host-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.story-host-name {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--stone-100);
  line-height: 1;
}

.story-host-instagram {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1;
  transition: color var(--dur-fast) ease;
}

.story-host-instagram:hover {
  color: #c96695;
}

.story-host-instagram svg {
  flex-shrink: 0;
  color: #c96695;
  transition: color var(--dur-fast) ease;
}

.story-host-instagram:hover svg {
  color: #e1306c;
}

@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .story-visual { position: static; }
  .story-hero-photo { aspect-ratio: 4 / 3; }
  .story-hero-photo img { object-position: center 90%; }
  .story-ghost-num { right: 0; font-size: 20vw; }
}

@media (max-width: 540px) {
  .story-ba-pair { display: none; } /* photos cluttered on small phones */
}


/* ── 19e. AREA SECTION (Location + Guide combined) ────────── */

.area-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
}

/* Top two-column: location text left, distance strip right */
.area-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-16);
  margin-bottom: var(--sp-12);
  align-items: start;
}

.area-top__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--stone-100);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.area-top__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--teal-300);
  margin-bottom: var(--sp-4);
}

.area-top__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Bridge divider between map and guide */
.area-bridge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-10) auto;
  max-width: var(--max-w);
  padding-inline: var(--sp-6);
}

@media (min-width: 768px) {
  .area-bridge { padding-inline: var(--sp-12); }
}

@media (min-width: 1280px) {
  .area-bridge { padding-inline: var(--sp-16); }
}

.area-bridge__line {
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

.area-bridge__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Guide head within the combined section */
.area-guide-head {
  margin-bottom: var(--sp-10);
}

.area-guide-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--stone-100);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}

.area-guide-head__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* Responsive: area-top stacks on tablet */
@media (max-width: 768px) {
  .area-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}


/* ── 20. PAGE HEADER (interior pages) ────────────────────── */

.page-header {
  padding-top: calc(80px + var(--sp-20));
  padding-bottom: var(--sp-14);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header__inner {
  max-width: 660px;
}

.page-header__inner .overline {
  display: block;
  margin-bottom: var(--sp-4);
}

.page-header__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}

.page-header__inner p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

/* ── 21. AMENITIES FULL PAGE ──────────────────────────────── */

.amenities-full {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-20);
}

/* Each category is a horizontal row: label left, items right */
.amenity-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: var(--sp-14);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}

.amenity-group:first-child {
  border-top: 1px solid var(--border-subtle);
}

/* Left column: icon + category name */
.amenity-group__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-1);
  color: var(--teal-700);
}

.amenity-group__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: var(--stone-300);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Right column: items in a 2-col grid */
.amenity-group__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-10);
}

.amenity-group__list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: var(--sp-5);
  position: relative;
}

.amenity-group__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 1px;
  background-color: var(--teal-700);
  opacity: 0.7;
}

/* CTA block */
.amenities-full__cta {
  padding-top: var(--sp-14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.amenities-full__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Tablet: stack label above items */
@media (max-width: 780px) {
  .amenity-group {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    padding: var(--sp-8) 0;
  }
  .amenity-group__header {
    flex-direction: row;
    align-items: center;
  }
}

/* Mobile: single-column items */
@media (max-width: 540px) {
  .amenity-group__list {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
}

/* ── Amenities quick-stats strip ──────────────────────────────── */
.amenities-stats {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-10) 0 var(--sp-12);
  margin-bottom: var(--sp-2);
}

.amenities-stats__grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.amenities-stats__grid::-webkit-scrollbar { display: none; }

.amenities-stat {
  flex: 1 1 0;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  position: relative;
}

/* Vertical divider between stats */
.amenities-stat + .amenities-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.amenities-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1;
  letter-spacing: -0.02em;
}

.amenities-stat__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.4;
}

.amenities-stat__icon {
  color: var(--teal-700);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .amenities-stats__grid {
    justify-content: flex-start;
    gap: 0;
  }
  .amenities-stat {
    min-width: 90px;
    padding: var(--sp-4) var(--sp-3);
  }
  .amenities-stat__value {
    font-size: 1.8rem;
  }
}


/* ── 22. LOCATION SECTION ─────────────────────────────────── */

.location-section { padding-bottom: 0; }

/* Two-column: text left, distance strip right */
.location-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: start;
  margin-bottom: var(--sp-10);
}

.location-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: var(--sp-3) 0 var(--sp-3);
}

.location-header__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--stone-300);
  margin-bottom: var(--sp-5);
}

.location-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 54ch;
}

/* Distance callout strip */
.distance-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-subtle);
  align-self: start;
  min-width: 240px;
}

.distance-item {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border-subtle);
}

.distance-item:last-child { border-bottom: none; }

.distance-item__time {
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 1;
  letter-spacing: -0.02em;
}

.distance-item__place {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary, var(--stone-100));
  line-height: 1.2;
}

.distance-item__unit {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.distance-item__unit--note {
  color: var(--teal-700);
  font-style: italic;
}

/* Map container */
.location-map {
  width: 100%;
  height: 460px;
  background-color: var(--bg-2);
}

/* Override Leaflet UI to match dark theme */
.leaflet-container {
  background: var(--bg-2);
  font-family: var(--font-body);
}

.leaflet-control-zoom a {
  background-color: var(--bg-1) !important;
  color: var(--stone-300) !important;
  border-color: var(--border-subtle) !important;
}

.leaflet-control-zoom a:hover {
  background-color: var(--bg-2) !important;
  color: var(--stone-100) !important;
}

.leaflet-control-attribution {
  background-color: rgba(11,13,7,0.75) !important;
  color: var(--text-muted) !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a { color: var(--stone-600) !important; }

/* Custom marker */
.vq-marker__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--teal-700);
  border: 2px solid var(--stone-300);
  box-shadow: 0 0 0 5px rgba(46,104,88,0.25), 0 2px 8px rgba(0,0,0,0.4);
}

/* Custom popup */
.vq-popup-wrap .leaflet-popup-content-wrapper {
  background-color: var(--bg-1) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  color: var(--stone-300) !important;
}

.vq-popup-wrap .leaflet-popup-tip {
  background-color: var(--bg-1) !important;
}

.vq-popup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
}

.vq-popup strong {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone-100);
}

.vq-popup span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Address line below map */
.location-address {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) 0 var(--sp-14);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-address svg { flex-shrink: 0; color: var(--teal-700); }

/* Tablet: stack text above distances */
@media (max-width: 860px) {
  .location-header {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .distance-strip {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
  .distance-item {
    flex: 1 1 140px;
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }
  .distance-item:last-child { border-right: none; }
  .location-map { height: 360px; }
}

@media (max-width: 480px) {
  .distance-strip { flex-direction: column; }
  /* Collapse each row to a tight single horizontal line */
  .distance-item {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;         /* reset the 860px flex: 1 1 140px */
    align-items: baseline;
    gap: var(--sp-3);
    padding: 10px var(--sp-4);
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .distance-item:last-child { border-bottom: none; }
  .distance-item__time {
    font-size: 1.2rem;
    grid-row: unset;
    min-width: 2rem;
    text-align: right;
    flex-shrink: 0;
  }
  .distance-item__place {
    flex: 1;
    font-size: var(--text-sm);
  }
  .distance-item__unit {
    font-size: 10px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    text-align: right;
  }
  .location-map { height: 240px; }
}


/* ── 23. GUIDE PREVIEW (homepage) ────────────────────────── */

.guide-preview { padding-bottom: var(--sp-16); }

.guide-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

@media (max-width: 900px) {
  .guide-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .guide-cards { grid-template-columns: 1fr; }
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-7) var(--sp-5) var(--sp-6);
  background-color: var(--bg-1);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--teal-700);
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  position: relative;
}

.guide-card:hover {
  background-color: var(--bg-2);
  border-color: rgba(46,104,88,0.5);
  border-top-color: var(--teal-700);
}

.guide-card__cat {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.guide-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--stone-100);
  line-height: 1.25;
  letter-spacing: 0.005em;
}

.guide-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.guide-card__arrow {
  font-size: var(--text-base);
  color: var(--teal-700);
  margin-top: var(--sp-2);
  display: inline-block;
  transition: transform 0.2s ease;
}

.guide-card:hover .guide-card__arrow {
  transform: translateX(4px);
}

/* ── Guide card photo ──────────────────────────────────── */
.guide-card__img {
  /* Bleed to card edges by reversing card padding */
  margin: calc(-1 * var(--sp-7)) calc(-1 * var(--sp-5)) var(--sp-5);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-2); /* placeholder colour while image loads */
}

.guide-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 0.5s var(--ease-premium), filter 0.5s var(--ease-premium);
}

.guide-card:hover .guide-card__img img {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(1);
}

/* ── 25. REVIEWS ─────────────────────────────────────────── */

/* Featured quote — large editorial treatment */
.review-featured {
  margin: 0 0 clamp(var(--sp-14), 6vw, var(--sp-20));
  padding: clamp(var(--sp-10), 4vw, var(--sp-16)) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.review-featured__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--stone-300);
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-6);
  max-width: 52ch;
}

.review-featured__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--stone-500);
}

.review-featured__name {
  color: var(--stone-300);
  font-weight: 500;
}

.review-featured__sep {
  color: var(--border-subtle);
}

.review-featured__platform {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-500);
}

/* Secondary quote grid */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: clamp(var(--sp-12), 5vw, var(--sp-16));
}

.review-card {
  padding: var(--sp-8) var(--sp-10);
  border: 1px solid var(--border-subtle);
  margin: 0 -1px -1px 0; /* collapse shared borders */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-6);
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: var(--stone-400);
  position: relative;
  z-index: 1;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--stone-400);
  margin: 0;
}

.review-card blockquote p::before { content: '\201C'; }
.review-card blockquote p::after  { content: '\201D'; }

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.review-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone-300);
}

.review-card__platform {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-500);
}

/* Platform strip */
.review-platforms {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.review-platforms__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.review-platforms__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.review-platforms__list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--stone-400);
  letter-spacing: 0.02em;
}

.review-platforms__list li + li::before {
  content: '·';
  margin-right: var(--sp-6);
  color: var(--border-subtle);
}

/* Responsive */
@media (max-width: 760px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .review-card {
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: var(--sp-7) 0;
  }
  .review-card:first-child { border-top: none; }
  .review-featured__quote p { max-width: 100%; }
}

/* ── 24. GUIDE FULL PAGE ──────────────────────────────────── */

.guide-full {
  padding-top: var(--sp-14);
  padding-bottom: var(--sp-20);
}

.guide-full__intro {
  max-width: 62ch;
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border-subtle);
}

.guide-full__intro p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.guide-full__intro p:last-child { margin-bottom: 0; }

/* Each category section */
.guide-section {
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.guide-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--stone-300);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-subtle);
}

/* Recommendation items grid */
.guide-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6) var(--sp-8);
}

@media (max-width: 1100px) {
  .guide-items { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}

@media (max-width: 760px) {
  .guide-items { grid-template-columns: 1fr; gap: var(--sp-6); }
}

.guide-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.guide-item__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--stone-100);
  line-height: 1.2;
}

.guide-item__loc {
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
}

.guide-item__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.guide-item__note {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--teal-700);
  letter-spacing: 0.04em;
  margin-top: var(--sp-1);
}

/* CTA at bottom */
.guide-full__cta {
  padding-top: var(--sp-14);
  max-width: 56ch;
}

.guide-full__cta p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* WhatsApp + Email contact link row */
.guide-full__contact-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.guide-contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-premium),
              border-color var(--dur-fast) var(--ease-premium);
}

.guide-contact-link:hover {
  color: var(--stone-200);
  border-color: var(--stone-400);
}



/* ── 26. CONTACT FORM ────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16) var(--sp-20);
  align-items: start;
}

/* Left column */
.contact-info h2 {
  margin-bottom: var(--sp-5);
}

.contact-info__subtitle {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  max-width: 44ch;
}

.contact-info__note {
  font-size: var(--text-sm);
  color: var(--stone-500);
  line-height: 1.6;
  padding: var(--sp-4) var(--sp-5);
  border-left: 2px solid var(--teal-700);
  margin-bottom: var(--sp-8);
}

.contact-info__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-info__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}

.contact-info__whatsapp::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b0d07'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.contact-info__email {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--stone-400);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.contact-info__email:hover { color: var(--stone-300); }

/* ── Right column — Availability / Pricing CTA card (replaces old form) ── */
.contact-cta-wrap {
  display: flex;
  align-items: stretch;
}

.contact-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 380px;
  padding: clamp(var(--sp-7), 3vw, var(--sp-10));
  /* extra bottom padding so corner arrow doesn't crowd the description */
  padding-bottom: calc(clamp(var(--sp-7), 3vw, var(--sp-10)) + var(--sp-6));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, rgba(20,184,166,0.06) 0%, transparent 55%),
    var(--bg-1);
  color: var(--stone-200);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease-premium),
    border-color 0.3s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    background 0.4s var(--ease-premium);
}

.contact-cta-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-500);
  box-shadow:
    0 24px 60px -20px rgba(20, 184, 166, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(155deg, rgba(20,184,166,0.10) 0%, transparent 55%),
    var(--bg-1);
}

.contact-cta-card:active { transform: translateY(-1px); }

.contact-cta-card__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-500);
  line-height: 1;
  z-index: 2;
}

.contact-cta-card__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--stone-100);
  margin: var(--sp-5) 0 var(--sp-4);
  z-index: 2;
}

.contact-cta-card__sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 38ch;
  z-index: 2;
}

/* Bottom-right corner arrow — visual affordance only, not a competing CTA */
.contact-cta-card__arrow {
  position: absolute;
  bottom: clamp(var(--sp-6), 2.5vw, var(--sp-8));
  right: clamp(var(--sp-6), 2.5vw, var(--sp-8));
  color: var(--teal-300);
  z-index: 2;
  transition: transform 0.4s var(--ease-premium), color 0.3s ease;
}

.contact-cta-card:hover .contact-cta-card__arrow {
  transform: translateX(8px);
  color: var(--stone-100);
}

/* Decorative compass/clock backdrop — sits behind text */
.contact-cta-card__deco {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 320px;
  height: 320px;
  transform: translateY(-50%);
  color: var(--teal-300);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: transform 0.6s var(--ease-premium), opacity 0.4s ease;
}
.contact-cta-card:hover .contact-cta-card__deco {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.85;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.contact-form__input {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--stone-300);
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}

.contact-form__input:focus {
  border-color: var(--teal-700);
}

.contact-form__input::placeholder {
  color: var(--stone-600, #5a5040);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Date inputs — override browser chrome */
.contact-form__input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-top: var(--sp-2);
}

.contact-form__submit {
  min-width: 160px;
}

.contact-form__submit[aria-busy="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.contact-form__success,
.contact-form__error {
  font-size: var(--text-sm);
  line-height: 1.6;
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-2);
}

.contact-form__success {
  color: var(--teal-300);
  border: 1px solid var(--teal-900);
  background: color-mix(in srgb, var(--teal-900) 30%, transparent);
}

.contact-form__error {
  color: #e8a09a;
  border: 1px solid rgba(232, 160, 154, 0.2);
  background: rgba(232, 160, 154, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .contact-info__subtitle { max-width: 100%; }
  .contact-cta-card { min-height: 320px; }
  .contact-cta-card__deco { right: -80px; width: 280px; height: 280px; }
}

@media (max-width: 600px) {
  .contact-cta-card { min-height: 280px; padding: var(--sp-7) var(--sp-6); }
  .contact-cta-card__deco { right: -120px; opacity: 0.35; }
}

@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; }
}


/* ── 27. AVAILABILITY FULL PAGE ──────────────────────────── */

/* ── Pricing table ── */

.avail-pricing {
  padding-bottom: var(--sp-14);
}

.avail-pricing__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.avail-pricing__note {
  font-size: var(--text-sm);
  color: var(--stone-500);
  max-width: 52ch;
  text-align: right;
}

.avail-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--sp-10);
}

.avail-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.avail-table thead tr {
  border-bottom: 1px solid var(--border-subtle);
}

.avail-table th {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
  padding: var(--sp-3) var(--sp-5) var(--sp-3) 0;
  text-align: left;
  white-space: nowrap;
}

.avail-table th:last-child,
.avail-table td:last-child {
  text-align: center;
}

.avail-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.15s;
}

.avail-table tbody tr:hover {
  background: var(--bg-1);
}

.avail-table td {
  padding: var(--sp-5) var(--sp-5) var(--sp-5) 0;
  font-size: var(--text-base);
  color: var(--stone-400);
  vertical-align: middle;
}

.avail-table__season {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: var(--stone-300) !important;
  letter-spacing: -0.01em;
}

.avail-table__price {
  font-family: var(--font-canvas);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--stone-300) !important;
  letter-spacing: 0.02em;
}

.avail-table__price--night {
  color: var(--stone-400) !important;
  font-size: 1rem;
}

/* Season accent bars */
.avail-table__row--low    td:first-child { border-left: 3px solid var(--stone-600); padding-left: var(--sp-4); }
.avail-table__row--mid    td:first-child { border-left: 3px solid var(--teal-700);  padding-left: var(--sp-4); }
.avail-table__row--high   td:first-child { border-left: 3px solid var(--teal-500);  padding-left: var(--sp-4); }
.avail-table__row--peak   td:first-child { border-left: 3px solid var(--stone-300); padding-left: var(--sp-4); }

/* CTA below table */
.avail-pricing__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.avail-pricing__cta p {
  font-size: var(--text-base);
  color: var(--stone-400);
}

/* ── Full calendar section ── */

.avail-calendar-full {
  padding-top: var(--sp-4);
}

.avail-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.avail-cal-legend {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.avail-legend__item {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-500);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.avail-legend__item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.avail-legend__item--avail::before  { background: var(--bg-2); border: 1px solid var(--border-subtle); }
.avail-legend__item--booked::before { background: var(--teal-900); border: 1px solid var(--teal-700); }
.avail-legend__item--today::before  { background: var(--stone-300); }

/* Full calendar grid — 3 cols on desktop, 2 on tablet, 1 on mobile */
.full-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-10) var(--sp-12);
}

@media (max-width: 900px) {
  .full-calendar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .full-calendar-grid { grid-template-columns: 1fr; }
}

/* Skeleton for full calendar */
.cal-skeleton {
  display: contents;
}

.cal-skeleton__month {
  height: 240px;
  background: var(--bg-1);
  border-radius: 2px;
  animation: cal-shimmer 1.4s ease-in-out infinite;
}

@keyframes cal-shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

/* Loading state opacity */
.full-calendar--loading {
  opacity: 0.4;
  pointer-events: none;
}


/* ── 29. GALLERY FULL PAGE ────────────────────────────────── */

.gallery-full {
  padding-top: 0;
  padding-bottom: var(--sp-10);
}

.gallery-cat {
  margin-bottom: var(--sp-14);
}

.gallery-cat__header {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-grid-uniform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

@media (max-width: 900px) {
  .gallery-grid-uniform { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid-uniform { grid-template-columns: 1fr; }
}

.gallery-cell-uniform {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  cursor: pointer;
}

.gallery-cell-uniform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-premium);
}

.gallery-cell-uniform:hover img {
  transform: scale(1.04);
}

.gallery-cell-uniform::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 7, 0);
  transition: background 0.3s var(--ease-premium);
  pointer-events: none;
}

.gallery-cell-uniform:hover::after {
  background: rgba(11, 13, 7, 0.12);
}

/* Legacy masonry classes — kept for safety, no longer used */
.gallery-masonry {
  columns: 3;
  column-gap: 4px;
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

.gallery-fig {
  break-inside: avoid;
  margin: 0 0 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--bg-2);
}

.gallery-fig img {
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform var(--dur-slow) var(--ease-premium),
    opacity var(--dur-base) var(--ease-premium);
}

.gallery-fig:hover img {
  transform: scale(1.04);
}

.gallery-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 7, 0);
  transition: background var(--dur-base) var(--ease-premium);
  pointer-events: none;
}

.gallery-fig:hover::after {
  background: rgba(11, 13, 7, 0.10);
}

/* CTA at bottom */
.gallery-full__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
  margin-top: 0;
}

@media (max-width: 480px) {
  .gallery-full__cta {
    flex-direction: column;
  }
  .gallery-full__cta .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   29b. GALLERY — MOSAIC GRID & LIGHTBOX
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Category filter nav ── */
.gallery-filters {
  margin-top: var(--nav-h);   /* push below fixed nav (72px) */
  background: var(--bg-0);
  padding-block: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Mosaic grid — full-bleed, no container ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(160px, 18vw, 280px);
  grid-auto-flow: row dense;
  gap: 3px;
}

@media (max-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(140px, 24vw, 260px);
  }
}

@media (max-width: 520px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 58vw;
  }
}

/* ── Base gallery cell ── */
.gc {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--bg-2);
  display: block;
}

.gc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-premium);
}

.gc:hover img { transform: scale(1.04); }

.gc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 7, 0);
  transition: background 0.3s var(--ease-premium);
  pointer-events: none;
}

.gc:hover::after { background: rgba(11, 13, 7, 0.10); }

/* ── Portrait: spans 2 rows ── */
.gc--port { grid-row: span 2; }

/* ── Hero: full-width opener, 2 rows ── */
.gc--hero {
  grid-column: 1 / -1;
  grid-row: span 2;
}

/* ── Wide: spans 2 cols, 1 row ── */
.gc--wide { grid-column: span 2; }

@media (max-width: 520px) {
  .gc--hero  { grid-row: span 1; }
  .gc--port  { grid-row: span 1; }
  .gc--wide  { grid-column: span 1; }
}

/* ── Category wrapper for mosaic layout ── */
.gallery-cat--mosaic {
  margin-bottom: var(--sp-14);
}

.gallery-cat--mosaic .gallery-cat__header {
  padding-inline: var(--sp-6);
  margin-bottom: var(--sp-6);
}

@media (min-width: 768px) {
  .gallery-cat--mosaic .gallery-cat__header { padding-inline: var(--sp-12); }
}

@media (min-width: 1280px) {
  .gallery-cat--mosaic .gallery-cat__header { padding-inline: var(--sp-16); }
}

/* ── Lightbox overlay ── */
#gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-premium);
}

#gallery-lb.lb--open {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 6, 0.95);
}

.lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1280px);
  max-height: 92vh;
}

.lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 64px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.18s var(--ease-premium);
}

.lb-img.lb-img--loading { opacity: 0.3; }

.lb-caption {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  margin-top: var(--sp-3);
  text-align: center;
  min-height: 1.4em;
  padding-inline: var(--sp-6);
}

/* Close / Prev / Next shared base */
.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lb-close {
  top: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.lb-prev { left: var(--sp-5); }
.lb-next { right: var(--sp-5); }

.lb-prev:disabled,
.lb-next:disabled {
  opacity: 0.18;
  cursor: default;
}

.lb-counter {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .lb-prev  { left: var(--sp-2); }
  .lb-next  { right: var(--sp-2); }
  .lb-close { top: var(--sp-3); right: var(--sp-3); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   29c. GALLERY — LABEL-LEFT COLLAGE LAYOUT (v2)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── One room / area block ── */
.gallery-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  column-gap: var(--sp-12);
  padding: var(--sp-10) var(--sp-16);
  border-top: 1px solid var(--border-subtle);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* ── Label column ── */
.gallery-section__label {
  position: sticky;
  top: calc(var(--nav-h) + 16px);  /* just below nav */
  align-self: start;
}

.gallery-section__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.5rem);
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.gallery-section__sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Photo grid — 2-col Airbnb puzzle layout ─────────────────
   Landscape (gc--land): 3:2 ratio, 1 col × 1 row
   Portrait  (gc--port): spans 2 rows → naturally ~2:3 ratio
   Wide      (gc--wide): spans 2 cols, 16:9 ratio
   grid-auto-flow: dense fills gaps when portrait+landscape mix
   ─────────────────────────────────────────────────────────── */
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-auto-flow: row dense;
}

/* ── Base cell ── */
.gallery-section .gc {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

/* ── Image fills cell absolutely ── */
.gallery-section .gc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-premium);
}

/* ── Landscape: 3:2 ratio, single row ── */
.gallery-section .gc--land {
  aspect-ratio: 3 / 2;
}

/* ── Portrait: spans 2 rows — height = 2× landscape row + gap ── */
/* aspect-ratio: 2/3 is a fallback: ignored when landscape siblings
   size the rows, active when 2+ portraits stack with no landscape. */
.gallery-section .gc--port {
  grid-row: span 2;
  aspect-ratio: 2 / 3;
}

/* ── Wide: full 2-col span, 16:9 ── */
.gallery-section .gc--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* ── Responsive — 1200px ── */
@media (max-width: 1200px) {
  .gallery-section {
    grid-template-columns: 280px 1fr;
    column-gap: var(--sp-8);
    padding: var(--sp-10) var(--sp-10);
  }
}

/* ── Responsive — 900px: stack label above photos ── */
@media (max-width: 900px) {
  .gallery-section {
    grid-template-columns: 1fr;
    padding: var(--sp-8) var(--sp-8);
    scroll-margin-top: 120px;
  }
  .gallery-section__label {
    position: static;
    margin-bottom: var(--sp-5);
  }
}

/* ── Responsive — 600px ── */
@media (max-width: 600px) {
  .gallery-section {
    padding: var(--sp-6) var(--sp-5);
  }
  .gallery-photos {
    gap: 8px;
  }
}

/* ── Responsive — 480px: single column, portrait no longer spans ── */
@media (max-width: 480px) {
  .gallery-photos {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .gallery-section .gc--port {
    grid-row: span 1;
    aspect-ratio: 3 / 2;
  }
  .gallery-section .gc--wide {
    grid-column: span 1;
    aspect-ratio: 3 / 2;
  }
}


/* ── 30. GUIDE MAP LINKS ──────────────────────────────────── */

.guide-item__map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-300);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--dur-fast) var(--ease-premium),
              color var(--dur-fast) var(--ease-premium);
}
.guide-item__map-link:hover {
  opacity: 1;
  color: var(--stone-100);
}


/* ── 31. PLATFORM LOGOS (trust strip) ───────────────────────── */

.review-platforms__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4) var(--sp-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.75;
  transition: opacity var(--dur-fast) var(--ease-premium),
              color var(--dur-fast) var(--ease-premium);
}
.platform-logo:hover        { opacity: 1; }
.platform-logo svg          { flex-shrink: 0; }

.platform-logo--airbnb:hover  { color: #FF5A5F; }
.platform-logo--booking:hover { color: #003580; }
.platform-logo--google:hover  { color: var(--stone-100); }
.platform-logo__dot           { color: #003580; }

/* ── Platform strip — real logos + commission note ── */
.platform-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.platform-strip__logos {
  display: flex;
  align-items: center;
  gap: var(--sp-14);
  flex-wrap: wrap;
  justify-content: center;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--stone-300);
  opacity: 0.75;
  transition: opacity var(--dur-fast) var(--ease-premium),
              color var(--dur-fast) var(--ease-premium),
              transform var(--dur-fast) var(--ease-premium);
}
.platform-chip:hover          { opacity: 1; transform: translateY(-1px); }
.platform-chip svg            { flex-shrink: 0; }
.platform-chip--airbnb        { color: #e8707a; }
.platform-chip--airbnb:hover  { color: #FF385C; }
.platform-chip--booking       { color: #6da8e0; }
.platform-chip--booking:hover { color: #89c4f4; }
.platform-chip--google        { color: var(--stone-200); }
.platform-chip--google:hover  { color: var(--stone-100); }

@media (max-width: 640px) {
  .platform-strip__logos {
    gap: var(--sp-6);      /* 24px — was 56px */
  }
  .platform-chip {
    gap: var(--sp-2);      /* tighten icon→text gap */
    font-size: var(--text-sm);
  }
}

.platform-strip__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 0.7;
}

/* Review platform link wrapper */
.review-platform-link {
  text-decoration: none;
  display: inline;
}
.review-platform-link:hover .review-featured__platform,
.review-platform-link:hover .review-card__platform,
.review-platform-link:hover .review-card-v2__platform {
  color: var(--teal-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Stretched link — entire review card/featured box is clickable ── */
/* The link's ::before pseudo-element covers the whole card.           */
.review-card-v2,
.review-featured {
  position: relative;
  cursor: pointer;
}
.review-card-v2 .review-platform-link::before,
.review-featured .review-platform-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}



/* ── 32. HERO SOCIAL — enlarged Instagram ────────────────────── */

.hero__social-ig {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--stone-200);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid rgba(192,170,138,0.22);
  border-radius: var(--radius-md);
  background: rgba(11,13,7,0.32);
  backdrop-filter: blur(10px);
  transition:
    color var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium),
    background-color var(--dur-base) var(--ease-premium),
    transform var(--dur-base) var(--ease-premium);
}
.hero__social-ig:hover {
  color: var(--stone-100);
  border-color: rgba(192,170,138,0.5);
  background: rgba(11,13,7,0.5);
  transform: translateY(-2px);
}

.hero__social-ig-badge {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  flex-shrink: 0;
}
.hero__social-ig-badge svg { display: block; fill: #fff; }

.hero__social-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer__social-ig {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: color var(--dur-fast) var(--ease-premium);
}
.footer__social-ig:hover { color: var(--stone-100); }


/* ── 33. MEET YOUR HOST ──────────────────────────────────────── */

.host-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
}

.host-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

@media (max-width: 960px) {
  .host-layout {
    grid-template-columns: 280px 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 700px) {
  .host-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* Photo column */
.host-photo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.host-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.host-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--dur-slow) var(--ease-premium);
}

.host-photo-wrap:hover img {
  transform: scale(1.03);
}

.host-ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: var(--text-base);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-premium);
}
.host-ig-link:hover { color: var(--stone-100); }
.host-ig-link svg {
  color: #c96695;
  flex-shrink: 0;
  transition: color var(--dur-fast) ease;
}
.host-ig-link:hover svg { color: #e1306c; }

/* Content column */
.host-content {
  padding-top: var(--sp-2);
}

.host-name {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--stone-100);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: var(--sp-2) 0 var(--sp-1);
}

@media (max-width: 700px) {
  .host-name { font-size: var(--text-3xl); }
}

.host-location {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-8);
}

.host-bio-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.host-bio-block p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Trust strip */
.host-trust-strip {
  display: flex;
  gap: var(--sp-8);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--sp-8);
}

.host-trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.host-trust-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--stone-100);
  letter-spacing: -0.02em;
  line-height: 1;
}

.host-trust-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .host-trust-strip {
    gap: var(--sp-5);
  }
  .host-trust-value {
    font-size: var(--text-xl);
  }
}


/* ── 28. MOBILE RESPONSIVE POLISH ────────────────────────── */

/*
  Breakpoints used:
    640px — small tablet / large phone landscape
    480px — standard phone
    360px — smallest common phone
*/

/* ── Scroll margin for fixed nav anchor links ── */
[id] {
  scroll-margin-top: calc(var(--nav-h) + var(--sp-6));
}

/* ── Smooth momentum scrolling on iOS ── */
html {
  -webkit-overflow-scrolling: touch;
}

/* ── Hero: smaller mark + tighter brand on phone ── */
@media (max-width: 480px) {
  .hero__vq-mark {
    width: 52px;
    height: 52px;
  }
  .hero__brand {
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
  }
  .hero__rule {
    margin-bottom: var(--sp-6);
  }
  .hero__subtitle {
    font-size: var(--text-sm);
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Pull social icons off absolute position — hide on tiny screens to save space */
  .hero__social { display: none; }
}

/* ── Page header: less top-padding on mobile ── */
@media (max-width: 640px) {
  .page-header {
    padding-top: calc(var(--nav-h) + var(--sp-12));
    padding-bottom: var(--sp-10);
  }
}

/* ── Villa stat strip: 2×2 on mobile ── */
@media (max-width: 540px) {
  .villa-overview__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Restore right border lost from 4-col layout */
  .villa-stat:nth-child(2) {
    border-right: none;
  }
  .villa-stat:nth-child(3),
  .villa-stat:nth-child(4) {
    border-top: 1px solid var(--border-subtle);
  }
}

/* ── Mobile menu: smaller type on very small screens ── */
@media (max-width: 360px) {
  .nav__mobile-menu ul a {
    font-size: var(--text-3xl);
  }
}

/* ── Availability pricing: fix stacking ── */
@media (max-width: 640px) {
  .avail-pricing__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
  .avail-pricing__note {
    text-align: left;
    max-width: 100%;
  }
}

/* ── Availability table: tighter cells on mobile ── */
@media (max-width: 480px) {
  .avail-table th,
  .avail-table td {
    font-size: var(--text-sm);
    padding-inline-end: var(--sp-3);
  }
  .avail-table__season {
    font-size: 1rem;
  }
  .avail-table__price {
    font-size: 1rem;
  }
  .avail-pricing__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }
}

/* ── Contact form: stack footer on small phones ── */
@media (max-width: 480px) {
  .contact-form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── Review grid: reduce card padding on tiny screens ── */
@media (max-width: 480px) {
  .review-featured__quote p {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
}

/* ── Guide full: tighter section padding on mobile ── */
@media (max-width: 480px) {
  .guide-section {
    padding: var(--sp-8) 0;
  }
  .guide-full__intro {
    margin-bottom: var(--sp-10);
  }
}

/* ── Location: smaller map on tiny screens ── */
@media (max-width: 360px) {
  .location-map { height: 240px; }
}

/* ── Facts bar: prevent orphaned items on small screens ── */
@media (max-width: 360px) {
  .facts-bar__sep { display: none; }
  .facts-bar__item { font-size: 11px; }
}

/* ── Buttons: minimum tap target size ── */
.btn {
  min-height: 44px;
}

/* ── Focus-visible styles for keyboard nav ── */
:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Reduced motion: disable all reveals ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Print: basic print styles ── */
@media print {
  .nav, .footer, .hero__social, .hero__scroll-cue,
  .btn, .lang-toggle, .nav__hamburger { display: none !important; }
  body { background: white; color: black; }
  h1, h2, h3 { color: black; }
  .page-header { padding-top: var(--sp-8); }
}


/* ════════════════════════════════════════════════════════════════
   34. HERO — WHISPER (Variant E applied)
   Centered monogram + wordmark + year + divider + text CTA.
   Everything else lives in the intro section below.
   ════════════════════════════════════════════════════════════════ */

.hero {
  align-items: center;
}

.hero__content {
  padding: 0;
  display: flex;
  justify-content: center;
}

.hero__whisper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(var(--sp-4), 2vw, var(--sp-6));
  animation: vq-fade-in 1.5s var(--ease-premium) both;
}

.hero__whisper-mark {
  width: clamp(180px, 20vw, 240px);
  height: clamp(180px, 20vw, 240px);
  color: var(--stone-100);
}

.hero__whisper-name {
  font-family: var(--font-saonara);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--stone-100);
  margin: 0;
}

.hero__whisper-year {
  font-family: var(--font-canvas);
  font-size: 10px;
  letter-spacing: 0.56em;
  text-transform: uppercase;
  color: var(--stone-300);
  opacity: 0.6;
  padding-left: 0.56em;  /* optical centering for tracked caps */
  margin: 0;
}

.hero__whisper-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  margin-top: var(--sp-6);
}

.hero__whisper-cta {
  margin-top: var(--sp-2);
  color: var(--stone-100);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition:
    letter-spacing var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium),
    color var(--dur-base) var(--ease-premium);
}
.hero__whisper-cta:hover {
  letter-spacing: 0.36em;
  border-color: var(--stone-100);
  color: var(--stone-100);
}

/* Darker, flatter overlay — image as textured backdrop not featured photo */
.hero__overlay {
  background-image:
    linear-gradient(
      108deg,
      rgba(11, 13, 7, 0.92) 0%,
      rgba(11, 13, 7, 0.72) 30%,
      rgba(11, 13, 7, 0.35) 58%,
      rgba(11, 13, 7, 0.50) 100%
    ),
    linear-gradient(
      to top,
      rgba(11, 13, 7, 0.45)  0%,
      rgba(11, 13, 7, 0.0)  28%
    ),
    linear-gradient(
      to bottom,
      rgba(11, 13, 7, 0.45) 0%,
      rgba(11, 13, 7, 0.0) 18%
    ) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__whisper { animation: none; }
}


/* ════════════════════════════════════════════════════════════════
   35. HERO INTRO — moved tagline + description block
   Sits between hero and facts bar. Gives the hero content that used
   to crowd it room to breathe in its own section.
   ════════════════════════════════════════════════════════════════ */

.hero-intro {
  position: relative;
  z-index: 2;
  margin-top: -18vh;
  padding-top: calc(18vh + clamp(var(--sp-12), 8vh, var(--sp-20)));
  padding-bottom: clamp(var(--sp-12), 8vh, var(--sp-20));
  background: linear-gradient(to bottom, transparent 0%, var(--bg-0) 18vh);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-intro__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.hero-intro__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin: 0;
}

.hero-intro__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--stone-100);
  margin: 0;
  max-width: 18ch;
}

.hero-intro__lead span {
  display: block;
  white-space: nowrap;   /* prevent "pool" orphaning on a new line */
}

.hero-intro__body {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0;
}

.hero-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-4);
}

.hero-intro__trust {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  margin-top: var(--sp-2);
}
.hero-intro__trust::before {
  content: '—  ';
  opacity: 0.4;
}

@media (max-width: 700px) {
  .hero-intro { padding-top: var(--sp-16); padding-bottom: var(--sp-8); }
  .hero-intro__lead { max-width: none; }
}


/* ════════════════════════════════════════════════════════════════
   36. SECTION TRANSITIONS & RHYTHM
   ────────────────────────────────────────────────────────────────
   Single dark surface throughout. No borders, no bg alternation,
   no decorative rules. Section breaks are handled by:

     · Full-bleed photo strips at the two major chapter breaks
       (gallery → villa overview, reviews → host).
       These are content, not decoration — they show more of the
       villa and give the eye a natural pause.

     · Generous vertical padding doing the rest.

   Amenity + guide cards are cleaned up separately below.
   ════════════════════════════════════════════════════════════════ */

/* ── Photo break strips ── */
/* ── Parallax Break — fixed-scroll background strip between sections ── */
/* Term: Parallax Break — transparent section showing a fixed hero photo    */
/* scrolling behind it as the user moves through the page. Uses CSS-only    */
/* background-attachment:fixed. On iOS Safari, falls back to scroll.        */
.parallax-break {
  width: 100%;
  height: clamp(140px, 14vw, 200px);
  position: relative;
  background-image: url('../images/photos/exterior-04.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heavy overlay — image is heavily faded/muted so text reads clearly */
.parallax-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 7, 0.72);
  pointer-events: none;
  z-index: 0;
}

/* Text content inside the break */
.parallax-break__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
  padding: 0 var(--sp-6);
  pointer-events: auto;
}

.parallax-break__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-500);
}

.parallax-break__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--stone-200);
  margin: 0;
  line-height: 1.2;
}

.parallax-break__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
  margin-top: var(--sp-1);
}

.parallax-break__cta:hover { color: var(--stone-100); }

.parallax-break__cta svg {
  transition: transform 0.3s ease;
}
.parallax-break__cta:hover svg { transform: translateY(3px); }

/* iOS Safari: background-attachment:fixed is broken on mobile — fall back */
/* On mobile, show image as normal scroll background with increased height  */
@media (max-width: 900px) {
  .parallax-break {
    background-attachment: scroll;
    background-position: center center;
    height: clamp(120px, 30vw, 180px);
  }
}

/* Legacy .photo-break retained for backward compat (no longer used) */
.photo-break {
  width: 100%;
  height: clamp(200px, 22vw, 320px);
  overflow: hidden;
  position: relative;
  display: block;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Remove old borders / overline rules left over from prev iteration ── */
.section {
  border-top: none;
}
.facts-bar {
  border-bottom: none;
  border-top: none;
}
.section .overline::before { display: none; }

/* ── Gallery: restore bottom padding (was set to 0) ── */
.gallery-preview {
  padding-bottom: var(--sp-16);
}

/* ── Guide cards: replace the heavy 2px teal top-border.
   The section overline already signals the chapter; cards don't
   need their own redundant accent bar.                               */
.guide-card {
  border-top: 1px solid var(--border-subtle);
}

/* ── Amenity cards: more breathing room inside ── */
.amenity-card {
  padding: var(--sp-8) var(--sp-7);
}
.amenity-card__list {
  gap: var(--sp-3);
}

/* ── Host section: keep its warm bg-2 tint — the one deliberate
   tonal accent on the page, and the user already likes it.           */
.host-section {
  background-color: var(--bg-2);
  border-top: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   37. CALENDAR NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cal-nav-wrapper {
  /* transparent wrapper — just groups nav + grid */
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.cal-nav__btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--stone-400);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-premium),
              color       var(--dur-fast) var(--ease-premium);
}

.cal-nav__btn:hover:not(:disabled) {
  border-color: var(--stone-500);
  color: var(--stone-200);
}

.cal-nav__btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.cal-nav__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--stone-300);
  letter-spacing: 0.02em;
  text-align: center;
  flex: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   38. GUIDE PAGE — CARD REDESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Category filter pills ── */
.guide-filters {
  position: sticky;
  top: var(--nav-h);   /* 72px — must match nav height exactly */
  z-index: 10;
  background: var(--bg-0);
  padding-block: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Wraps the scrollable pills + pinned PDF button */
.guide-filters__wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.guide-filters__inner {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;   /* centred on desktop — no scroll needed */
  gap: var(--sp-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 2px;
  position: relative;
}

.guide-filters__inner::-webkit-scrollbar { display: none; }

/* PDF button pinned to right of filter bar — desktop only */
.guide-filters__pdf {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: rgba(20, 184, 166, 0.07);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--teal-400, #2dd4bf);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-premium),
              border-color var(--dur-fast) var(--ease-premium),
              color        var(--dur-fast) var(--ease-premium);
}

.guide-filters__pdf:hover {
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(20, 184, 166, 0.55);
  color: #5eead4;
}

.guide-filter {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--sp-3);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-premium);
}

.guide-filter:hover {
  color: var(--stone-300);
}

.guide-filter.is-active {
  color: var(--stone-100);
  text-shadow: 0 0 12px rgba(192, 170, 138, 0.45);
}


/* Guide filter: icon hidden on desktop — label shows as plain pill text */
.guide-filter__icon { display: none; }

/* ── Card structure overrides ── */

/* Make guide-item a proper card */
.guide-item {
  border: 1px solid var(--border-subtle);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 0;                /* gap managed by __body */
  overflow: hidden;
  padding: 0;            /* padding lives in __body now */
  /* stagger reveal — initial hidden state */
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease-out,
              transform 0.5s ease-out,
              border-color var(--dur-fast) var(--ease-premium);
  transition-delay: calc(var(--card-index, 0) * 55ms);
}

/* Cards revealed when parent grid gets .is-revealed */
.guide-items.is-revealed .guide-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .guide-item {
    opacity: 1;
    transform: none;
    transition: border-color var(--dur-fast) var(--ease-premium);
  }
}

.guide-item:hover {
  border-color: rgba(192, 170, 138, 0.2);
}

/* Photo placeholder at top of card */
.guide-item__photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: var(--bg-2);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.guide-item__photo::after {
  content: 'Photo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.4;
}

/* When an <img> is placed inside, hide the placeholder text */
.guide-item__photo img {
  width: 100%;
  height: calc(100% + 48px); /* 24px overhang each side for parallax travel */
  margin-top: -24px;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.guide-item__photo:has(img)::after {
  display: none;
}

/* Content area with padding */
.guide-item__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

/* Keep existing __name / __loc / __desc styles, just clip the desc */
.guide-item__desc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* existing size/color from base rule */
}

/* Footer row: note chip + maps button */
.guide-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

/* Note chip gets tighter in card context */
.guide-item__body .guide-item__note {
  margin-top: 0;
}

/* Maps link in footer — no extra margin needed */
.guide-item__footer .guide-item__map-link {
  margin-top: 0;
}

/* ── PDF Download strip ── */
.guide-download {
  margin-top: var(--sp-20);
  padding: var(--sp-10) var(--sp-8);
  border: 1px solid var(--border-subtle);
  background: var(--bg-1);
}

.guide-download__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.guide-download__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  color: var(--stone-400);
}

.guide-download__text {
  flex: 1;
  min-width: 180px;
}

.guide-download__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--stone-200);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.01em;
}

.guide-download__sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .guide-download {
    padding: var(--sp-8) var(--sp-6);
  }
  .guide-download__inner {
    gap: var(--sp-5);
  }
  .guide-download__btn {
    width: 100%;
    text-align: center;
  }
  .guide-filters {
    top: var(--nav-h);  /* nav stays 72px on mobile too */
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   39. MOBILE — sticky book CTA + filter scroll hint
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Hidden on desktop */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {

  /* ── Sticky bottom bar (default: full-width button) ── */
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    padding: var(--sp-8) var(--sp-5) calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to bottom, transparent, var(--bg-0) 40%);
  }

  .mobile-cta-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--sp-3) var(--sp-6);
    background: var(--teal-700);
    color: var(--stone-100);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--teal-500);
    border-radius: var(--radius-sm);
    transition: background-color var(--dur-base) var(--ease-premium),
                border-color     var(--dur-base) var(--ease-premium);
  }

  .mobile-cta-bar__btn:active {
    background: var(--teal-500);
    border-color: var(--teal-300);
  }

  /* ── Guide page variant: Check Availability + PDF icon ── */
  .mobile-cta-bar--guide {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5) calc(var(--sp-4) + env(safe-area-inset-bottom, 0px));
    background: var(--bg-0);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.28);
  }

  .mobile-cta-bar--guide .mobile-cta-bar__btn {
    flex: 1;
    width: auto;
  }

  /* PDF button — matches desktop teal style */
  .mobile-cta-bar__pdf-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-4);
    background: rgba(20, 184, 166, 0.07);
    color: var(--teal-400, #2dd4bf);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--dur-fast) var(--ease-premium),
                border-color var(--dur-fast) var(--ease-premium),
                color        var(--dur-fast) var(--ease-premium);
  }

  .mobile-cta-bar__pdf-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-cta-bar__pdf-btn:active {
    background: rgba(20, 184, 166, 0.14);
    border-color: rgba(20, 184, 166, 0.55);
    color: #5eead4;
  }

  /* Hide the desktop filter-bar PDF on mobile (sticky bar handles it) */
  .guide-filters__pdf { display: none; }
  .guide-filters__wrap { padding: 0 var(--sp-4); position: relative; }

  /* ── Balloon attention animation — fires when user scrolls into       */
  /* the contact section. Adds .is-attention to .mobile-cta-bar via JS.  */
  /* The button itself scales/lifts/glows to draw the eye to it.         */
  .mobile-cta-bar.is-attention .mobile-cta-bar__btn {
    animation: cta-balloon 1.4s var(--ease-premium) both;
  }

  @keyframes cta-balloon {
    0% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 0 rgba(20, 184, 166, 0);
      background: var(--teal-700);
    }
    18% {
      transform: translateY(-14px) scale(1.10);
      box-shadow: 0 18px 40px rgba(20, 184, 166, 0.55);
      background: var(--teal-500);
    }
    36% {
      transform: translateY(2px) scale(0.97);
      box-shadow: 0 4px 10px rgba(20, 184, 166, 0.2);
    }
    52% {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 12px 26px rgba(20, 184, 166, 0.4);
      background: var(--teal-500);
    }
    70% {
      transform: translateY(-1px) scale(1.01);
      box-shadow: 0 4px 12px rgba(20, 184, 166, 0.18);
    }
    100% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 0 rgba(20, 184, 166, 0);
      background: var(--teal-700);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-cta-bar.is-attention .mobile-cta-bar__btn {
      animation: none;
      box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
    }
  }

  /* Body clearance so last content isn't hidden behind the bar */
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }

  /* ── Filter bar right-edge fade — signals horizontal scroll ── */

  /* Gallery page: sticky on mobile (non-sticky on desktop) */
  .gallery-filters {
    position: sticky;
    top: var(--nav-h);
    z-index: 10;
  }

  /* On mobile, pills left-align and scroll; desktop uses centered layout */
  .gallery-filters .guide-filters__inner,
  .guide-filters .guide-filters__inner {
    justify-content: flex-start;
  }

  /* Gallery page: fade on the sticky outer wrapper (non-scrolling) */
  .gallery-filters::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg-0) 75%);
    pointer-events: none;
    z-index: 2;
  }

  /* ── Guide page: single-row sticky icon bar ── */
  /* Scoped to .guide-filters so gallery pills are unaffected */

  .guide-filters__wrap::after { display: none; }
  .guide-filters__wrap { padding: 0 var(--sp-3); }

  .guide-filters {
    position: sticky;
    top: var(--nav-h);
    padding-block: var(--sp-2);
    margin-bottom: var(--sp-6);
  }

  /* Single row — all 7 share width equally */
  .guide-filters .guide-filters__inner {
    flex-wrap: nowrap;
    overflow: visible;
    justify-content: space-between;
    gap: 4px;
    padding-block: 0;
  }

  /* Each icon card */
  .guide-filters .guide-filter {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    padding: var(--sp-1) 2px var(--sp-1);
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
    border-color: transparent;   /* no border box — icon glow only */
    border-radius: var(--radius-sm);
  }

  /* Icon box — always teal-tinted */
  .guide-filters .guide-filter__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(20, 184, 166, 0.12);
    border-radius: 8px;
    color: rgba(20, 184, 166, 0.65);
    flex-shrink: 0;
    transition: background var(--dur-fast) var(--ease-premium),
                color        var(--dur-fast) var(--ease-premium);
  }

  .guide-filters .guide-filter__icon svg {
    width: 18px;
    height: 18px;
  }

  .guide-filters .guide-filter__label {
    font-size: 9px;
    letter-spacing: 0;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Active: glow on icon only — no card border/background */
  .guide-filters .guide-filter.is-active {
    border-color: transparent;
    background: transparent;
    color: var(--stone-200);
  }

  .guide-filters .guide-filter.is-active .guide-filter__icon {
    background: rgba(20, 184, 166, 0.22);
    color: var(--teal-400, #2dd4bf);
  }

  .guide-filters .guide-filter.is-active .guide-filter__label {
    color: var(--teal-400, #2dd4bf);
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   40. SECTION ENRICHMENT — separators, overline variants, reviews v2
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Overline: flanked with hairlines (used on Reviews) ── */
.overline--flanked,
.section-header .overline--flanked {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  justify-content: center;
  width: 100%;
}
.overline--flanked::before,
.overline--flanked::after {
  content: '';
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: var(--border-subtle);
}

/* ── Short teal accent rule above overline ── */
.overline-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal-600);
  margin-bottom: var(--sp-4);
}

/* ── Section ornament — three spaced dots between sections ── */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) 0;
  color: var(--teal-700);
  font-size: 1rem;
  letter-spacing: 0.5em;
  pointer-events: none;
  user-select: none;
}
.section-ornament::after { content: '· · ·'; }

/* ── Short centered section break ── */
hr.section-break {
  border: none;
  width: 48px;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 auto;
}

/* ── Full-width hairline section divider ── */
hr.section-rule {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* ── Ghost number — faint display numeral behind a heading ── */
.ghost-num-wrap {
  position: relative;
}
.ghost-num-wrap .section-ghost-num {
  position: absolute;
  top: -0.1em;
  left: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 300;
  color: rgba(192, 170, 138, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.ghost-num-wrap > *:not(.section-ghost-num) {
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   Reviews v2 — 4-card horizontal row with slide animations
   ───────────────────────────────────────────────────────── */

/* Remove old review-grid once replaced */
.review-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: clamp(var(--sp-12), 5vw, var(--sp-16));
}

.review-card-v2 {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  background: rgba(255, 255, 255, 0.012);
  transition:
    border-color 0.25s var(--ease-premium),
    background   0.25s var(--ease-premium);
}

.review-card-v2:hover {
  border-color: var(--stone-500);
  background: rgba(255, 255, 255, 0.03);
}

.review-card-v2__stars {
  color: var(--teal-500);
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}

.review-card-v2 blockquote {
  margin: 0;
  flex: 1;
}

.review-card-v2 blockquote p {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.15vw, 1.02rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--stone-300);
  margin: 0;
}

.review-card-v2 blockquote p::before { content: '\201C'; }
.review-card-v2 blockquote p::after  { content: '\201D'; }

.review-card-v2 figcaption {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card-v2__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone-200);
}

.review-card-v2__platform {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-500);
}

@media (max-width: 900px) {
  .review-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .review-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   20. OUR STORY — SUBPAGE (our-story.html)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero photo ─────────────────────────────────────────────── */
.story-pg-hero {
  position: relative;
  width: 100%;
  background: var(--bg-0);
}

/* Hero photo — same crop as the homepage story section's mobile view:
   4:3 landscape, anchored 90% (people centered, full bodies visible).
   Width is capped so the image stays editorial on wide desktops. */
.story-pg-hero__img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-2);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.story-pg-hero__img img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 90%;
  display: block;
}

.story-pg-hero__caption {
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--sp-3) var(--sp-6);
  border-bottom: 1px solid var(--border-subtle);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Article body ────────────────────────────────────────────── */
.story-pg-body {
  background: var(--bg-1);
  padding: var(--sp-20) 0;
}

.story-pg-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.story-pg-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--stone-200);
  margin-bottom: var(--sp-10);
}

.story-pg-article p {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
}

.story-pg-pull-wrap {
  margin: var(--sp-14) 0;
}

.story-pg-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--stone-100);
  border-left: 2px solid var(--teal-700);
  padding: var(--sp-4) var(--sp-6);
  margin: 0;
}

.story-pg-pull-attr {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: var(--sp-3);
  padding-left: var(--sp-6);
}

/* ── Chaos / construction photo ─────────────────────────────── */
.story-pg-chaos {
  margin: 0;
  background: var(--bg-0);
}

.story-pg-chaos__img {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.story-pg-chaos__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.story-pg-chaos figcaption {
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--sp-3) var(--sp-6);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Before / After grid ─────────────────────────────────────── */
.story-pg-ba {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-20) 0;
}

.story-pg-ba__head {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.story-pg-ba__head .overline {
  display: block;
  margin-bottom: var(--sp-3);
}

.story-pg-ba__head h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.1;
}

.story-pg-ba__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.story-pg-ba__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.story-pg-ba__item::after {
  content: '';
  display: block;
  padding-bottom: 100%; /* 1:1 */
}

.story-pg-ba__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-premium);
}

.story-pg-ba__item:hover img {
  transform: scale(1.04);
}

.story-pg-ba__label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.story-pg-ba__label--before {
  background: rgba(11,13,7,0.75);
  color: var(--stone-300);
  border: 1px solid var(--border-default);
}

.story-pg-ba__label--after {
  background: rgba(46,104,88,0.85);
  color: var(--teal-300);
  border: 1px solid rgba(110,192,168,0.3);
}

/* ── Boris / Father section ──────────────────────────────────── */
.story-pg-boris {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-20) 0;
}

.story-pg-boris__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.story-pg-boris__photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

/* Let photos render at their natural aspect ratio — no forced crop. */
.story-pg-boris__photos img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.story-pg-boris__text {
  padding-top: var(--sp-6);
}

.story-pg-boris__text .overline {
  display: block;
  margin-bottom: var(--sp-4);
}

.story-pg-boris__text h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: 300;
  color: var(--stone-100);
  line-height: 1.2;
  margin-bottom: var(--sp-6);
}

.story-pg-boris__text p {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--text-secondary);
}

/* ── Press credit ─────────────────────────────────────────────── */
.story-pg-press {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-12) 0;
}

.story-pg-press__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.story-pg-press__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-pg-press__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--stone-300);
  text-decoration: none;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 2px;
  transition: color var(--dur-base) ease, border-color var(--dur-base) ease;
}

.story-pg-press__link:hover {
  color: var(--teal-300);
  border-color: var(--teal-700);
}

.story-pg-press__sep {
  width: 1px;
  height: 1em;
  background: var(--border-default);
}

/* ── Bottom CTA ───────────────────────────────────────────────── */
.story-pg-cta {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-16) 0;
}

.story-pg-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.story-pg-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-base) ease;
}

.story-pg-back:hover { color: var(--stone-300); }

.story-pg-back svg {
  transition: transform var(--dur-base) var(--ease-premium);
}

.story-pg-back:hover svg { transform: translateX(-4px); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* .story-pg-hero__img — no override; image shows full height on all breakpoints */
  .story-pg-chaos__img { aspect-ratio: 4 / 3; }

  .story-pg-ba__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-pg-boris__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  /* Keep photos stacked (single column) on tablet/mobile so they */
  /* show at their natural aspect ratios — no forced square crop. */
  .story-pg-boris__photos {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  /* Phone: use a slightly portrait container (4:5) so the photo retains
     vertical impact, anchored 80% from top so subjects + floor stay in view. */
  .story-pg-hero__img {
    aspect-ratio: 4 / 5;
    max-height: 75vh;
  }
  .story-pg-hero__img img {
    object-position: center bottom;
  }
  .story-pg-ba__grid { grid-template-columns: repeat(2, 1fr); }
  .story-pg-cta__inner { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════
   21. AVAILABILITY PAGE — redesigned (calendar + rates two-column)
   ═══════════════════════════════════════════════════════════════ */

.avail-section { padding-top: var(--sp-12); padding-bottom: var(--sp-20); }

/* ── Layout grid — calendar top-left, rates spans full right column,
      partners sits bottom-left under calendar. Single-column on mobile. ── */
.avail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  grid-template-areas:
    "cal      rates"
    "partners rates";
  gap: clamp(var(--sp-12), 4vw, var(--sp-14)) clamp(var(--sp-12), 4vw, var(--sp-20));
  align-items: start;
  margin-bottom: var(--sp-12);
}

.avail-cal-col   { grid-area: cal; }
.avail-rates-col { grid-area: rates; }
.avail-partners  { grid-area: partners; }

/* Section column heading (shared by both columns) */
.avail-col-head {
  margin-bottom: var(--sp-8);
}

.avail-col-overline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--sp-3);
}

.avail-col-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--stone-100);
  margin: 0 0 var(--sp-4);
}

.avail-col-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--stone-500);
}

/* ── Calendar column ───────────────────────────────────────── */

/* Pagination controls (prev / range label / next) */
.avail-cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.avail-cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  background: transparent;
  color: var(--stone-300);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-premium), color 0.25s var(--ease-premium), transform 0.25s var(--ease-premium), background 0.25s var(--ease-premium);
}
.avail-cal-nav:hover:not([disabled]) {
  border-color: var(--teal-500);
  color: var(--teal-300);
  transform: scale(1.05);
}
.avail-cal-nav:active:not([disabled]) { transform: scale(0.96); }
.avail-cal-nav[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.avail-cal-range {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-200);
}

/* Legend chips */
.avail-cal-legend {
  display: flex;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.avail-legend__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.avail-legend__item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.avail-legend__item--avail::before  { background: var(--teal-700); border: 1px solid var(--teal-500); }
.avail-legend__item--booked::before { background: var(--bg-3); border: 1px solid var(--border-default); }
.avail-legend__item--today::before  { background: transparent; border: 1.5px solid var(--stone-100); }

/* Calendar grid — exactly 6 months desktop (3×2), 1 month mobile */
.full-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5) var(--sp-6);
}

.full-calendar-grid .cal-month {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-3);
  transition: border-color 0.3s var(--ease-premium);
}
.full-calendar-grid .cal-month:hover { border-color: var(--stone-500); }

.full-calendar-grid .cal-month__header {
  text-align: center;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border-subtle);
}
.full-calendar-grid .cal-month__name {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-200);
}
.full-calendar-grid .cal-month__year { display: none; }  /* year shown in range label instead */

.full-calendar-grid .cal-day {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  aspect-ratio: 1;
  min-height: 0;
}

/* Skeleton (loading) */
.full-calendar-grid.full-calendar--loading .cal-skeleton {
  display: contents;
}
.full-calendar-grid:not(.full-calendar--loading) .cal-skeleton {
  display: none;
}
.cal-skeleton__month {
  aspect-ratio: 1;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  opacity: 0.5;
  animation: vq-shimmer 1.6s ease-in-out infinite;
}
@keyframes vq-shimmer {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.6; }
}

/* ── Rates column ──────────────────────────────────────────── */
.avail-rates-intro {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 var(--sp-7);
}

/* Rates table — divs, not <table>, for full styling control */
.avail-rates-table {
  display: flex;
  flex-direction: column;
}

.avail-rates-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 0.9fr;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  align-items: center;
  transition: background 0.2s ease;
}
.avail-rates-row:hover:not(.avail-rates-row--head) {
  background: rgba(255, 255, 255, 0.014);
}

.avail-rates-row--head {
  border-bottom: 1px solid var(--stone-500);
  border-top: 1px solid var(--stone-500);
  padding: var(--sp-3) 0;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.avail-rates-row__dates {
  font-family: var(--font-mono);
  color: var(--stone-200);
  letter-spacing: 0.02em;
}

.avail-rates-row__price {
  color: var(--stone-100);
  font-weight: 500;
}

.avail-rates-row__nightly {
  display: inline-block;
  margin-left: 4px;
  color: var(--text-muted);
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
}

.avail-rates-row__min {
  color: var(--stone-300);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-align: right;
}

/* Peak season subtle highlight */
.avail-rates-row--peak {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.04), transparent 70%);
}

.avail-rates-foot {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-subtle);
}
.avail-rates-foot__line {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--sp-2);
}
.avail-rates-foot__line--checkin {
  color: var(--stone-300);
  font-weight: 500;
}

/* ── Partner sites strip ───────────────────────────────────── */
.avail-partners {
  padding-top: var(--sp-12);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.avail-partners__head {
  margin-bottom: var(--sp-4);
}
.avail-partners__head .avail-col-overline {
  text-align: center;
}
.avail-partners__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--stone-100);
  margin: 0;
}

.avail-partners__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 48ch;
  margin: var(--sp-3) auto var(--sp-7);
}

/* Stack pills vertically — works for both narrow left column on web
   and full-width mobile layout. Each pill is full-width within its
   container so spacing is generous and never cramped. */
.avail-partners__logos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 380px;
  margin: 0 auto;
}

.avail-partner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  background: var(--bg-1);
  text-decoration: none;
  color: var(--stone-200);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition:
    border-color 0.3s var(--ease-premium),
    color 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium),
    background 0.3s var(--ease-premium);
}

.avail-partner > span {
  flex: 1;
  text-align: left;
}
.avail-partner:hover {
  transform: translateY(-2px);
  background: var(--bg-2);
  border-color: var(--stone-500);
  color: var(--stone-100);
}
.avail-partner__arrow {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-premium);
}
.avail-partner:hover .avail-partner__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Brand-tinted accents on hover (only the icon glyph, not the box) */
.avail-partner--airbnb svg:first-child  { color: #e8707a; }
.avail-partner--booking svg:first-child { color: #6da8e0; }
.avail-partner--google svg:first-child  { color: #cdb796; }

/* ── Responsive — single column, single-month calendar, partners last ── */
@media (max-width: 900px) {
  .avail-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cal"
      "rates"
      "partners";
    gap: var(--sp-14);
  }
  .full-calendar-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .full-calendar-grid .cal-month {
    padding: var(--sp-5) var(--sp-4);
  }
  .full-calendar-grid .cal-month__name {
    font-size: var(--text-sm);
  }
  .full-calendar-grid .cal-day {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .avail-section { padding-top: var(--sp-8); }

  /* Sticky header — "Date Range / Weekly Price" stays pinned to the
     top while the user scrolls through the 12 rate rows. */
  .avail-rates-table {
    position: relative;
  }
  .avail-rates-row--head {
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--bg-0);
    /* Subtle bottom shadow shows it's floating over the rows */
    box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.6);
  }

  /* Compact stacked layout for each rate row on phone */
  .avail-rates-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "dates dates"
      "price min";
    gap: var(--sp-1) var(--sp-4);
    padding: var(--sp-4) 0;
  }
  .avail-rates-row--head {
    grid-template-columns: 1fr auto;
    grid-template-areas: "dates price";
    padding: var(--sp-3) 0;
  }
  /* Header: only show the two relevant labels */
  .avail-rates-row--head span:nth-child(1) { grid-area: dates; }
  .avail-rates-row--head span:nth-child(2) { grid-area: price; text-align: right; }
  .avail-rates-row--head span:nth-child(3) { display: none; }

  .avail-rates-row__dates { grid-area: dates; font-size: var(--text-sm); color: var(--stone-100); font-weight: 500; }
  .avail-rates-row__price { grid-area: price; }
  .avail-rates-row__min   { grid-area: min; text-align: right; }

  .avail-cal-legend { flex-wrap: wrap; gap: var(--sp-3); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME PAGE — scroll-driven entrance animations
   All transitions start hidden; JS adds .is-revealed to
   the parent when it enters the viewport.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Hero intro: tagline lines fan in one by one ── */
.hero-intro__lead span {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.hero-intro__lead span:nth-child(1) { transition-delay:   0ms; }
.hero-intro__lead span:nth-child(2) { transition-delay: 130ms; }
.hero-intro__lead span:nth-child(3) { transition-delay: 260ms; }

.hero-intro.is-revealed .hero-intro__lead span {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery preview: cells scale + fade in sequence ── */
.airbnb-grid__cell {
  opacity: 0;
  transform: scale(0.97) translateY(10px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  transition-delay: calc(var(--cell-index, 0) * 75ms);
}
.airbnb-grid.is-revealed .airbnb-grid__cell {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Sleep cards: stagger up into view ── */
.sleep-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: calc(var(--card-idx, 0) * 80ms);
}
.sleep-cards.is-revealed .sleep-card {
  opacity: 1;
  transform: translateY(0);
}

/* ── Story section: visual from left, text from right ── */
.story-visual {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.story-text {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 140ms;
}
.story-inner.is-revealed .story-visual,
.story-inner.is-revealed .story-text {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  /* Mobile is single-column — slide up instead of sideways */
  .story-visual { transform: translateY(28px); }
  .story-text   { transform: translateY(28px); }
  .story-inner.is-revealed .story-visual,
  .story-inner.is-revealed .story-text { transform: translateY(0); }
}

/* ── Distance strip: items drop in one by one ── */
.distance-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease-out, transform 0.42s ease-out;
  transition-delay: calc(var(--dist-index, 0) * 55ms);
}
.distance-strip.is-revealed .distance-item {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion: skip everything above ── */
@media (prefers-reduced-motion: reduce) {
  .hero-intro__lead span,
  .airbnb-grid__cell,
  .sleep-card,
  .story-visual,
  .story-text,
  .distance-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE SPACING — tighter section gaps on small screens
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  /* Reduce the global section vertical padding on mobile.
     Default clamp bottoms out at 4rem (64px) — too much gap
     between sections on a narrow screen. */
  :root {
    --section-py: var(--sp-12); /* 3rem = 48px on mobile */
  }

  /* Guide cards sit at the bottom of the area-section.
     Tighten the bottom so the "Read the full guide" CTA
     feels attached to its content, not floating in space. */
  #location {
    padding-bottom: var(--sp-10);
  }

  /* Give the section-cta less top breathing room — the guide-cards
     already has margin-bottom; the button should hug closer. */
  .section-cta {
    margin-top: calc(-1 * var(--sp-2));
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FONT PREVIEW SWITCHER  (temporary — remove after font choice)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.font-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0.35;
  transition: opacity var(--dur-fast) var(--ease-premium);
}
.font-switcher:hover { opacity: 1; }

.font-switcher__btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-premium),
              color        var(--dur-fast) var(--ease-premium);
}
.font-switcher__btn--active,
.font-switcher__btn.is-active {
  border-color: rgba(20, 184, 166, 0.6);
  color: var(--teal-400, #2dd4bf);
}

/* Hide nav-bar switcher on mobile (desktop nav hidden anyway) */
@media (max-width: 768px) { .font-switcher:not(.font-switcher--mobile) { display: none; } }

/* Mobile menu switcher — shown inside the slide-out menu */
.font-switcher--mobile {
  display: none;         /* hidden until mobile menu shown */
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
  opacity: 1;
}
.font-switcher__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: var(--sp-1);
}
@media (max-width: 768px) {
  .font-switcher--mobile { display: flex; }
}
