/* ============================================================
   AURELIA RESIDENCES — Design Tokens
   Luxury real-estate flagship · Obsidian / Travertine / Bronze
   ============================================================ */

:root {
  /* ---------- PALETTE ---------- */
  --obsidian:    #0E0C0A;
  --graphite:    #1A1612;
  --graphite-2:  #221C16;
  --travertine:  #F5F1EA;
  --limestone:   #ECE6DB;
  --ivory:       #FAF7F1;
  --bronze:      #B8924A;
  --bronze-deep: #8C6D38;
  --bronze-soft: #D4A659;
  --copper:      #D4A659;
  --ink:         #2C2825;
  --ink-soft:    #3A342E;
  --smoke:       #6B635B;
  --mist:        #C9C2B6;
  --line:        rgba(44, 40, 37, 0.12);
  --line-soft:   rgba(44, 40, 37, 0.06);
  --line-bronze: rgba(184, 146, 74, 0.32);
  --line-on-dark: rgba(245, 241, 234, 0.12);
  --success:     #5C7A3E;
  --alert:       #A14B3A;

  /* Tweakable accent (host rewrites this on disk) */
  --accent: var(--bronze);

  /* ---------- TYPE ---------- */
  --font-display: "Cormorant Garamond", "Tobias", Georgia, serif;
  --font-display-2: "Fraunces", "Tobias", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* ---------- SPACING ---------- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 192px;

  --radius-s: 2px;
  --radius-m: 4px;
  --radius-l: 8px;

  /* ---------- MOTION ---------- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-power: cubic-bezier(0.77, 0, 0.18, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--bronze); color: var(--obsidian); }

html { scroll-behavior: smooth; }
html, body { background: var(--travertine); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- TYPOGRAPHY SCALE ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: inherit;
}

.display-xxl {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 184px);
  letter-spacing: -0.038em;
  line-height: 0.88;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 144px);
  letter-spacing: -0.034em;
  line-height: 0.92;
}
.display-l {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 96px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.display-m {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.04;
}
.display-s {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.014em;
  line-height: 1.14;
}
.display-italic { font-style: italic; font-weight: 300; }
.display-bold { font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--smoke);
}
.eyebrow.bronze { color: var(--bronze); }
.eyebrow.on-dark { color: var(--bronze-soft); }

.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--smoke);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--bronze);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--bronze);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bronze-deep);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--travertine); border-color: var(--bronze-deep); }
.btn:hover::before { transform: translateX(0); }
.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--travertine); border-color: var(--ink); }

.btn-on-dark {
  background: transparent;
  color: var(--travertine);
  border: 1px solid var(--travertine);
}
.btn-on-dark::before { background: var(--travertine); }
.btn-on-dark:hover { color: var(--obsidian); }

.btn-bronze-on-dark {
  background: var(--bronze);
  color: var(--obsidian);
  border-color: var(--bronze);
}
.btn-bronze-on-dark::before { background: var(--bronze-soft); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.5s var(--ease-out);
}
.link-arrow:hover::after { transform-origin: left; transform: scaleX(0); animation: linkRedraw 0.9s 0.3s var(--ease-out) forwards; }
@keyframes linkRedraw { from { transform-origin: left; transform: scaleX(0); } to { transform: scaleX(1); } }
.link-arrow .arrow { transition: transform 0.4s var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(6px); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.hairline { height: 1px; background: var(--line); width: 100%; }
.hairline-bronze { height: 1px; background: var(--line-bronze); width: 100%; }
.hairline-v { width: 1px; background: var(--line); align-self: stretch; }
.hairline-on-dark { height: 1px; background: var(--line-on-dark); width: 100%; }

/* Section base */
section { position: relative; }

.section-dark {
  background: var(--obsidian);
  color: var(--travertine);
}
.section-graphite {
  background: var(--graphite);
  color: var(--travertine);
}
.section-light { background: var(--travertine); color: var(--ink); }
.section-limestone { background: var(--limestone); color: var(--ink); }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }
[data-reveal-delay="600"] { transition-delay: 0.6s; }
[data-reveal-delay="700"] { transition-delay: 0.7s; }

/* Char split reveal */
.split-text { display: inline-block; }
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.split-text.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- GRAIN OVERLAY ---------- */
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  z-index: 1;
}
.grain-light::before { mix-blend-mode: overlay; opacity: 0.12; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 40px;
  border-bottom-color: var(--line-on-dark);
}
.nav.dark { color: var(--travertine); }
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  justify-self: start;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  opacity: 0.86;
  transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width 0.5s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { opacity: 1; color: var(--bronze-soft); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.18em;
  font-weight: 400;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.nav-logo small {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.42em;
  margin-top: 5px;
  opacity: 0.55;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-self: end;
}
.lang-switch {
  display: flex;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-switch button {
  padding: 4px 8px;
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
  font-weight: 400;
}
.lang-switch button.active { opacity: 1; color: var(--bronze-soft); }
.lang-switch span { opacity: 0.25; }

.nav-cta {
  padding: 11px 22px;
  border: 1px solid currentColor;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
}
.nav-cta:hover {
  background: var(--bronze);
  color: var(--obsidian);
  border-color: var(--bronze);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--obsidian);
  color: var(--travertine);
  padding: var(--s-10) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 96px;
  position: relative;
  z-index: 2;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--bronze-soft);
  font-weight: 400;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 14px; opacity: 0.78; }
.footer li a { transition: opacity 0.3s, color 0.3s; }
.footer li a:hover { opacity: 1; color: var(--bronze-soft); }
.footer-statement {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 32px;
  font-style: italic;
  max-width: 480px;
}
.footer-newsletter {
  display: flex;
  border-bottom: 1px solid var(--line-on-dark);
  padding-bottom: 14px;
  max-width: 440px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--travertine);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  padding: 8px 0;
}
.footer-newsletter input::placeholder { color: rgba(245, 241, 234, 0.4); }
.footer-newsletter button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  padding: 0 12px;
  transition: color 0.3s;
}
.footer-newsletter button:hover { color: var(--travertine); }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}
.footer-signature {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--graphite);
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
}

/* ---------- CUSTOM CURSOR ---------- */
.custom-cursor {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), background 0.4s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.custom-cursor.is-hover {
  width: 56px; height: 56px;
  background: rgba(184, 146, 74, 0.18);
  border: 1px solid var(--bronze);
  mix-blend-mode: normal;
}
.custom-cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), opacity 0.3s, border-color 0.3s;
  opacity: 0.5;
}
@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-ring { display: none; }
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader svg { width: 88px; height: 110px; }
.loader-line {
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s var(--ease-out) forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.loader-brand {
  position: absolute;
  bottom: 96px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.6em;
  color: var(--bronze-soft);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s var(--ease-out) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--line);
  background: var(--travertine);
}
.badge-bronze { background: var(--bronze); color: var(--obsidian); border-color: var(--bronze); }
.badge-on-dark { background: transparent; border-color: var(--bronze); color: var(--bronze-soft); }
.badge-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}
.badge-status.reserved::before { background: var(--bronze); }
.badge-status.sold::before { background: var(--smoke); }

/* ---------- COUNTER ---------- */
.counter {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 11rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--bronze);
  display: inline-block;
}

/* ---------- STICKY CONCIERGE ---------- */
.sticky-concierge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--obsidian);
  color: var(--travertine);
  padding: 14px 22px;
  border: 1px solid var(--bronze);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.sticky-concierge:hover { background: var(--bronze); color: var(--obsidian); }
.sticky-concierge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  animation: pulse 2.4s infinite;
}
.sticky-concierge:hover .sticky-concierge-dot { background: var(--obsidian); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ---------- FORMS ---------- */
.field {
  position: relative;
  margin-bottom: 28px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 0 12px;
  outline: none;
  transition: border-color 0.4s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--bronze);
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 4px;
  font-weight: 400;
}

/* ---------- MOBILE MENU (Aurelia) ---------- */
.aurelia-mm-btn {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  z-index: 1002;
  transition: background 240ms ease, border-color 240ms ease;
}
.aurelia-mm-btn:hover { background: rgba(184, 146, 74, 0.08); }
.aurelia-mm-btn span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1px;
  background: var(--bone, #E8DFD0);
  transition: transform 280ms ease, opacity 200ms ease, top 280ms ease;
}
.aurelia-mm-btn span:nth-child(1) { top: 16px; }
.aurelia-mm-btn span:nth-child(2) { top: 22px; }
.aurelia-mm-btn span:nth-child(3) { top: 28px; }
.aurelia-mm-btn.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.aurelia-mm-btn.is-open span:nth-child(2) { opacity: 0; }
.aurelia-mm-btn.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.aurelia-mm {
  position: fixed; inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}
.aurelia-mm.is-open { visibility: visible; pointer-events: auto; }
.aurelia-mm-backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 12, 10, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 280ms ease;
}
.aurelia-mm.is-open .aurelia-mm-backdrop { opacity: 1; }
.aurelia-mm-panel {
  position: absolute; top: 0; right: 0;
  width: min(420px, 92vw); height: 100dvh;
  background: linear-gradient(180deg, #14110D 0%, #0E0C0A 100%);
  border-left: 1px solid rgba(184, 146, 74, 0.18);
  display: flex; flex-direction: column;
  padding: 24px 28px 32px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.6, 0, 0.2, 1);
  overflow-y: auto;
}
.aurelia-mm.is-open .aurelia-mm-panel { transform: translateX(0); }
.aurelia-mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 146, 74, 0.16);
  margin-bottom: 28px;
}
.aurelia-mm-brand {
  font-family: var(--f-serif, 'Cormorant Garamond', serif);
  font-size: 22px; letter-spacing: 0.18em; color: var(--bone, #E8DFD0);
  display: flex; flex-direction: column; line-height: 1;
}
.aurelia-mm-brand small {
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bronze-soft, #B8924A); margin-top: 6px; opacity: 0.7;
}
.aurelia-mm-close {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(184, 146, 74, 0.3);
  border-radius: 50%;
  color: var(--bone, #E8DFD0);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.aurelia-mm-close:hover { background: rgba(184, 146, 74, 0.1); border-color: var(--bronze-soft, #B8924A); }
.aurelia-mm-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.aurelia-mm-link {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0;
  font-family: var(--f-serif, 'Cormorant Garamond', serif);
  font-size: 26px; letter-spacing: -0.005em;
  color: var(--bone, #E8DFD0);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 74, 0.08);
  opacity: 0; transform: translateY(8px);
  transition: opacity 360ms ease, transform 360ms ease, color 200ms ease;
}
.aurelia-mm.is-open .aurelia-mm-link { opacity: 1; transform: translateY(0); }
.aurelia-mm-link:hover, .aurelia-mm-link.active { color: var(--bronze-soft, #B8924A); }
.aurelia-mm-num {
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--bronze-soft, #B8924A); opacity: 0.6;
  min-width: 28px;
}
.aurelia-mm-foot { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.aurelia-mm-foot .lang-switch {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.2em;
}
.aurelia-mm-foot .lang-switch button {
  background: none; border: none; color: var(--bone, #E8DFD0); opacity: 0.55; cursor: pointer; padding: 4px 2px;
}
.aurelia-mm-foot .lang-switch button.active { opacity: 1; color: var(--bronze-soft, #B8924A); }
.aurelia-mm-cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  background: var(--bronze-soft, #B8924A);
  color: #0E0C0A;
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease;
}
.aurelia-mm-cta:hover { background: #c89e54; transform: translateY(-1px); }
@media (max-width: 900px) {
  .aurelia-mm-btn { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .aurelia-mm-panel, .aurelia-mm-backdrop, .aurelia-mm-link { transition-duration: 0.01ms !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-right .lang-switch { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-right { gap: 0; }
  .nav-logo { justify-self: start; font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: var(--s-9) 0 var(--s-5); }
  .footer-statement { font-size: 22px; }
  .footer-signature { font-size: 26vw; bottom: 50px; }
  .container { padding: 0 22px; }
  .container-wide { padding: 0 22px; }
  .sticky-concierge { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .split-text .char { opacity: 1; transform: none; }
}

/* ======= MOBILE: 768px ======= */
@media (max-width: 768px) {
  .container, .container-wide, .container-narrow { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-logo { font-size: 16px; }

  .footer { padding: 80px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-statement { font-size: 18px; max-width: 100%; }
  .footer-signature { font-size: 30vw; bottom: 40px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    padding-top: 24px;
  }
  .sticky-concierge { right: 12px; bottom: 12px; font-size: 9px; padding: 10px 14px; }
  .sticky-concierge span:not(.sticky-concierge-dot) { display: none; }

  .display-xxl { font-size: clamp(44px, 12vw, 88px); }
  .display-xl  { font-size: clamp(40px, 11vw, 80px); }
  .display-l   { font-size: clamp(32px, 9vw, 60px); }

  .btn { padding: 14px 24px; font-size: 10px; gap: 10px; }
}

/* ======= MOBILE: 480px ======= */
@media (max-width: 480px) {
  .container, .container-wide, .container-narrow { padding: 0 16px; }
  .nav { padding: 12px 16px; }
  .footer { padding: 60px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-signature { display: none; }
  .sticky-concierge { display: none; }

  .display-xxl { font-size: clamp(36px, 12vw, 72px); }
  .display-xl  { font-size: clamp(32px, 11vw, 64px); }
  .btn { padding: 12px 20px; }
}
