/* ============================================================
   WAZEN BOUTIQUE APARTMENT — BRAND WEBSITE
   Quiet luxury · Editorial · Architectural · Spatial
   ------------------------------------------------------------
   Design decisions:
   • Dark paper (#0E0E0C) interface, warm white type, one sand
     accent — renders carry all the color.
   • Serif display (Cormorant Garamond) + quiet sans (Inter).
   • Depth = layering + perspective + shadow, never decoration.
     Tilt capped at 3–5°, motion ≥0.9s, nothing bounces.
   • One inverted light band (Experience) gives the page a
     cinematic breath between dark movements.
   ============================================================ */

:root {
  --bg: #0E0E0C;
  --surface: #171713;
  --surface-soft: #211F1A;
  --warm-white: #F3EFE7;
  --sand: #C8B89E;
  --muted: #A8A095;
  --accent: #D6B98C;
  --line: rgba(243, 239, 231, 0.14);
  --line-soft: rgba(243, 239, 231, 0.07);

  /* inverted band */
  --paper: #F3EFE7;
  --ink: #161412;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* depth hierarchy on dark: shadow + faint warm edge */
  --shadow-1: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 18px 60px rgba(0,0,0,0.5);
  --shadow-3: 0 30px 90px rgba(0,0,0,0.65);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--ink); }

/* ---------- primitives ---------- */

.container { width: min(1360px, 92%); margin: 0 auto; }

.section { padding: 150px 0; }

.micro {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
}

.section-head { margin-bottom: 88px; }
.section-head .micro { display: block; margin-bottom: 22px; }

.section-title { font-size: clamp(40px, 5vw, 72px); }
.section-title em { font-style: italic; color: var(--sand); }

/* buttons — typographic, restrained */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  padding: 18px 36px;
  border: 1px solid var(--warm-white);
  background: transparent;
  cursor: pointer;
  transition: background 0.6s var(--ease), color 0.6s var(--ease), border-color 0.6s var(--ease);
}

.btn:hover { background: var(--warm-white); color: var(--ink); }
.btn:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

.btn--ghost { border-color: var(--line); color: var(--muted); }
.btn--ghost:hover { background: transparent; border-color: var(--warm-white); color: var(--warm-white); }

.arrow { font-family: var(--font-display); font-size: 1.3em; line-height: 0; }

/* ============================================================
   3D SYSTEM — same contract as app.js
   [data-tilt] tilts toward cursor · [data-depth] floats above
   the plane · [data-parallax] drifts inside a parallax scene
   ============================================================ */

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.9s var(--ease), box-shadow 0.9s var(--ease);
}

[data-tilt] [data-depth] { transform-style: preserve-3d; will-change: transform; }

.tilt-shadow { box-shadow: var(--shadow-1); }
.tilt-shadow.is-tilting { box-shadow: var(--shadow-3); }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.reveal--persp {
  transform: perspective(1000px) translateY(54px) rotateX(5deg);
  transform-origin: center bottom;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-img { overflow: hidden; }

.reveal-img img,
.reveal-img .ph-frame {
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}

.reveal.is-visible .reveal-img img,
.reveal.is-visible .reveal-img .ph-frame,
.reveal-img.is-visible img,
.reveal-img.is-visible .ph-frame { transform: scale(1); }

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- render placeholder ---------- */

.ph-frame {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(214,185,140,0.07), transparent 65%),
    var(--surface-soft);
  border: 1px solid var(--line-soft);
  text-align: center;
  padding: 32px;
}

.ph-frame::before { content: ""; width: 36px; height: 1px; background: var(--accent); opacity: 0.7; }

.ph-frame .ph-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 34px);
  font-style: italic;
  color: var(--sand);
}

.ph-frame .ph-note {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  /* subtle translucent veil so the logo separates from the hero render */
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 239, 231, 0.06);
  transition: padding 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease);
}

.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(14, 14, 12, 0.92); /* more solid once scrolling */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}

.header-inner { display: flex; align-items: baseline; justify-content: space-between; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 24px;            /* +~15% presence */
  font-weight: 500;
  letter-spacing: 0.22em;     /* tighter — solid, not scattered */
  text-transform: uppercase;
  color: #EAE3D7;             /* warm ivory, lifts off the dark hero */
  transition: filter 0.5s var(--ease);
}

.wordmark em { font-style: normal; color: #C9A46A; } /* refined muted gold Z */

.wordmark:hover { filter: brightness(1.12); }

.wordmark-emblem {
  height: 44px;
  width: auto;
}

.site-footer .wordmark-emblem { height: 48px; }

.main-nav { display: flex; gap: 40px; }

.main-nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.5s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.main-nav a:hover, .main-nav a.is-active { color: var(--warm-white); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

/* language switch — always visible, even on mobile */
.lang-switch { display: flex; gap: 4px; }

.lang-switch button {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 7px 10px;
  cursor: pointer;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.lang-switch button:hover { color: var(--warm-white); }
.lang-switch button.is-active { color: var(--accent); border-color: var(--line); }

/* ---------- mobile hamburger ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--warm-white);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.site-header.nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- header contact CTA + dropdown ---------- */

.header-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-contact {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EAE3D7;
  background: none;
  border: 1px solid #C9A46A;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

.header-contact:hover { background: #C9A46A; color: var(--ink); }

/* ---------- contact panel (shared by header + floating button) ---------- */

.contact-pop {
  position: absolute;
  width: 290px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  padding: 26px 26px 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  z-index: 200;
}

.contact-pop.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.contact-pop--down { top: calc(100% + 14px); right: 0; }
.contact-pop--up { bottom: calc(100% + 14px); right: 0; transform: translateY(-8px); }
.contact-pop--up.is-open { transform: translateY(0); }

.cp-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  color: var(--warm-white);
  margin-bottom: 18px;
}

.cp-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 16px 0 10px;
}

.cp-msg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cp-msg a {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  border: 1px solid var(--line);
  padding: 11px 8px; /* comfortable tap target */
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.cp-msg a:hover { border-color: var(--accent); color: var(--accent); }

.cp-phone {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 1px solid var(--line);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.4s var(--ease);
}

.cp-phone:hover { border-color: var(--accent); }

.cp-phone span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--warm-white);
}

.cp-phone .cp-copy {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.cp-phone .cp-copy.is-done { color: var(--accent); }

.cp-social {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.cp-social a {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cp-social a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- floating contact button ---------- */

.contact-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
}

#contact-fab {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: #C9A46A;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

#contact-fab:hover { transform: translateY(-2px); filter: brightness(1.07); }

/* ============================================================
   HERO — layered spatial composition
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 0 110px;
  perspective: 1400px;
  overflow: hidden;
}

/* faint architectural grid, fading toward the edges */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 220px 220px;
  mask-image: radial-gradient(ellipse 75% 65% at 60% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 60% 40%, black 0%, transparent 75%);
  pointer-events: none;
}

/* warm glow behind the visual — light as material */
.hero::after {
  content: "";
  position: absolute;
  top: 10%; right: -10%;
  width: 55vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(214,185,140,0.07), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow { display: block; margin-bottom: 34px; }

.hero-name {
  font-size: clamp(54px, 7vw, 110px);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-name em {
  display: block;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.52em;
  color: var(--sand);
  margin-top: 14px;
}

.hero-role {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-role::before { content: ""; width: 44px; height: 1px; background: var(--accent); }

.hero-lede {
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 52px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; transform-style: preserve-3d; }

.hero-figure {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 74vh;
  margin-left: auto;
  width: min(100%, 520px);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line-soft);
}

.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

/* floating caption chips — elevated planes */
.hero-chip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 20px;
  box-shadow: var(--shadow-1);
  max-width: 250px;
}

.hero-chip .micro { display: block; margin-bottom: 4px; font-size: 9px; }

.hero-chip strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.hero-chip--a { top: 9%; left: -9%; }
.hero-chip--b { bottom: 14%; right: -6%; }

.hero-num {
  position: absolute;
  bottom: -5%;
  left: -15%;
  font-family: var(--font-display);
  font-size: clamp(120px, 13vw, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  pointer-events: none;
  z-index: -1;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue::after {
  content: "";
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cue 2.4s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 0.9; transform: scaleY(1); }
}

/* ============================================================
   SCOPE STRIP
   ============================================================ */

.scope {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 34px 0;
}

.scope-inner { display: flex; flex-wrap: wrap; gap: 14px 0; justify-content: space-between; }

.scope-item {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}

.scope-item:not(:last-child)::after { content: "·"; color: var(--line); margin-left: 14px; }

/* ============================================================
   SPACES — editorial blocks, objects not tiles
   ============================================================ */

.space { margin-bottom: 140px; }
.space:last-child { margin-bottom: 0; }

/* ----- feature (facade, apartments) ----- */

.space--feature .space-stage { position: relative; perspective: 1600px; }

.space--feature .space-media {
  position: relative;
  aspect-ratio: 21 / 10;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.space--feature .space-media img { width: 100%; height: 100%; object-fit: cover; }

/* text panel floats above the image plane */
.space--feature .space-panel {
  position: relative;
  width: min(640px, 92%);
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 52px 56px 46px;
  margin: -110px auto 0 6%;
  z-index: 2;
}

/* ----- half (alternating rows) ----- */

.space--half .space-row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: center;
}

.space--half.space--flip .space-row { grid-template-columns: 5fr 7fr; }
.space--half.space--flip .space-stage { order: 2; }
.space--half.space--flip .space-body { order: 1; }

.space--half .space-stage { perspective: 1400px; }

.space--half .space-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.space--half .space-media img { width: 100%; height: 100%; object-fit: cover; }

/* ----- shared anatomy ----- */

.space-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.space-index {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--muted);
}

.status-badge {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 7px 13px;
  white-space: nowrap;
  background: var(--bg);
}

.space-name { font-size: clamp(30px, 3.2vw, 46px); margin-bottom: 12px; }

.space-role {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.space-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; max-width: 56ch; }

.space-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.space-tags span {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 12px;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.space:hover .space-tags span { color: var(--sand); }

/* floating label above the image plane */
.media-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(14,14,12,0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  padding: 9px 16px;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
}

/* gallery strip */
.space-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.space-strip .strip-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.space-strip .strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.space-strip .strip-item:hover img { transform: scale(1.05); }

/* ============================================================
   PHILOSOPHY — manifesto
   ============================================================ */

.philosophy { border-top: 1px solid var(--line-soft); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 90px;
  align-items: start;
}

.philosophy-left { position: sticky; top: 120px; }

.philosophy-headline {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.14; /* breathing room between the three lines */
  margin-top: 28px;
  max-width: 13ch;
  color: var(--warm-white);
}

.philosophy-intro {
  margin-top: 30px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 42ch;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.quote-block {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 56px 58px;
  margin-bottom: 72px;
  perspective: 1200px;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.4;
}

.quote-sign {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

.quote-block .quote-mark {
  position: absolute;
  top: -30px;
  left: 34px;
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  background: var(--bg);
  padding: 0 12px;
}

.philosophy-body { color: var(--muted); font-size: 15px; max-width: 60ch; margin-bottom: 18px; }

.principles { margin-top: 8px; }

.principle {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 44px 0; /* airier rhythm between the five items */
  border-top: 1px solid var(--line-soft);
}

.principle-no {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--sand);
  line-height: 1.3;
}

.principle h3 { font-size: 23px; margin-bottom: 8px; }
.principle p { font-size: 14px; color: var(--muted); max-width: 52ch; }

/* ============================================================
   EXPERIENCE — inverted paper band, cinematic breath
   ============================================================ */

.experience {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.experience .micro { color: #8A7B5E; }

.exp-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
}

.exp-stack {
  position: relative;
  perspective: 1500px;
  transform-style: preserve-3d;
  min-height: 500px;
}

.exp-img { position: absolute; overflow: hidden; box-shadow: 0 30px 80px rgba(22,20,18,0.3); }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }

.exp-img--back { top: 0; left: 0; width: 72%; aspect-ratio: 4 / 3; }

.exp-img--front {
  bottom: 0; right: 0;
  width: 46%;
  aspect-ratio: 3 / 4;
  border: 6px solid var(--paper);
}

.exp-title { font-size: clamp(38px, 4.2vw, 64px); margin: 22px 0 18px; }
.exp-title em { font-style: italic; }

.exp-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: #4A443B;
  margin-bottom: 26px;
}

.exp-body { font-size: 14.5px; color: #6F6A62; margin-bottom: 20px; max-width: 52ch; }

.exp-facts { margin: 36px 0 44px; border-top: 1px solid rgba(22,20,18,0.18); }

.exp-facts div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22,20,18,0.18);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

.exp-facts span:first-child {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #8A8378;
  padding-top: 2px;
}

.experience .btn { border-color: var(--ink); color: var(--ink); }
.experience .btn:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   LOCATION — address, distances, map
   ============================================================ */

.loc-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.loc-addr {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--warm-white);
  margin: 34px 0 22px;
  line-height: 1.25;
}

.loc-addr span {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--sand);
  margin-top: 10px;
}

.loc-lede { color: var(--muted); font-size: 14.5px; max-width: 46ch; margin-bottom: 30px; }

.loc-facts { border-top: 1px solid var(--line); margin-bottom: 38px; }

.loc-facts div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.loc-facts span:first-child {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}

.loc-facts span:last-child { color: var(--warm-white); }

.loc-map {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05); /* keeps the map quiet, on-brand */
  transition: filter 0.8s var(--ease);
}

.loc-map:hover iframe { filter: grayscale(0.2) contrast(1); }

/* ============================================================
   BOOKING — reservation request form
   ============================================================ */

/* pre-opening rate anchors */
.rates {
  border: 1px solid var(--line);
  padding: 24px 26px 18px;
  margin-bottom: 40px;
  background: var(--surface);
}

.rates .cp-label { margin: 0 0 14px; }

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
}

.rate-val {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.rate-val i { font-style: normal; color: var(--muted); }
.rate-val em { font-style: normal; font-family: var(--font-body); font-size: 11px; color: var(--sand); }

.rate-note { font-size: 11px; color: var(--muted); margin-top: 12px; }

.form-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */

.faq { margin-top: 110px; max-width: 760px; }

.faq-title { font-size: clamp(28px, 3vw, 42px); margin: 18px 0 34px; }
.faq-title em { font-style: italic; color: var(--sand); }

.faq-list details { border-top: 1px solid var(--line-soft); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-soft); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--warm-white);
  position: relative;
  transition: color 0.4s var(--ease);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  color: var(--sand);
  transition: transform 0.4s var(--ease);
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--sand); }

.faq-list details p {
  padding: 0 36px 24px 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 62ch;
}

.booking-grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 90px;
  align-items: start;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.field { margin-bottom: 30px; }

.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 2px;
  transition: border-color 0.4s var(--ease);
  border-radius: 0;
}

.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--surface); color: var(--warm-white); }

.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--accent); }

/* date/month picker icon visibility on dark */
.field input[type="month"] { color-scheme: dark; }
.field input[type="number"] { color-scheme: dark; }

.field-hint {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--muted);
}

.form-note {
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--muted);
  max-width: 48ch;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-title {
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1.04;
  margin: 26px 0 40px;
  max-width: 16ch;
}

.contact-title em { font-style: italic; color: var(--sand); }

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: end;
}

.contact-lede { color: var(--muted); font-size: 15px; max-width: 52ch; margin-bottom: 44px; }

.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-meta { border-top: 1px solid var(--line); }

.contact-meta div {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-meta span:first-child {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { padding: 44px 0 50px; border-top: 1px solid var(--line-soft); }

.footer-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px 48px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-contact .cp-label { margin: 0 0 8px; }

.footer-contact a {
  font-size: 13px;
  color: var(--warm-white);
  transition: color 0.4s var(--ease);
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact i {
  font-style: normal;
  color: var(--muted);
  margin: 0 8px;
}

.footer-contact .footer-phone {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--accent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .section { padding: 110px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-figure { margin: 0 auto; }
  .hero-chip--a { left: 0; }
  .hero-chip--b { right: 0; }
  .hero-num { left: -4%; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 56px; }
  .philosophy-left { position: static; }
  .exp-grid { grid-template-columns: 1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .booking-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 820px) {
  .space--half .space-row,
  .space--half.space--flip .space-row { grid-template-columns: 1fr; gap: 36px; }
  .space--half.space--flip .space-stage { order: 0; }
  .space--half.space--flip .space-body { order: 1; }
  .space { margin-bottom: 100px; }
  .space--feature .space-panel { margin: -60px auto 0; padding: 38px 30px 34px; }
  .space--feature .space-media { aspect-ratio: 16 / 10; }
  .space-strip { gap: 10px; }
  .quote-block { padding: 42px 30px; }
}

@media (max-width: 1080px) and (min-width: 0px) {
  .loc-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  /* slide-down mobile menu */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 14, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 4%;
  }

  .site-header.nav-open .main-nav { display: flex; }

  .main-nav a {
    padding: 16px 0; /* comfortable tap target */
    font-size: 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .main-nav a:last-child { border-bottom: none; }
  .main-nav a::after { content: none; }
  .section { padding: 90px 0; }
  .hero { padding: 140px 0 90px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-chip--a { top: 4%; }
  .hero-chip--b { bottom: 6%; }
  .scope-inner { flex-direction: column; gap: 10px; }
  .scope-item:not(:last-child)::after { content: none; }
  .exp-stack { min-height: 380px; }
  .principle { grid-template-columns: 48px 1fr; gap: 16px; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  #booking-form .btn { width: 100%; justify-content: center; }
  .header-contact { display: none; } /* floating button serves mobile */
  .header-right { gap: 10px; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .rate-row { flex-direction: column; gap: 2px; }
  .faq { margin-top: 80px; }
  .contact-float { right: 16px; bottom: 16px; }
  .contact-pop { width: min(320px, calc(100vw - 32px)); }
  .footer-contact { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--persp { opacity: 1; transform: none; transition: none; }
  .reveal-img img, .reveal-img .ph-frame { transform: none; transition: none; }
  [data-tilt] { transition: none; }
  .scroll-cue::after { animation: none; }
}
