/* ==========================================================================
   Via Avantgarde Suites — v2 design system
   Cinematic, full-bleed, parallax-driven, dark chrome.
   Inspired by Faena + editorial boutique hotel language.
   ========================================================================== */

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

:root {
  /* Bold jewel palette */
  --ink:          #0A0D0A;     /* near-black */
  --emerald:      #0D2B1A;     /* primary dark */
  --emerald-deep: #061610;
  --midnight:     #0C1421;     /* alt dark */

  --parchment:    #F3EAD3;     /* warm cream */
  --parchment-2:  #E7DAB8;
  --bone:         #E9E3D3;

  --brass:        #C7A467;     /* champagne gold */
  --brass-bright: #E9CE94;
  --brass-deep:   #8E6C33;

  --crimson:      #A01628;     /* bold accent */
  --crimson-deep: #6B0F1C;
  --terracotta:   #B75433;

  --sage:         #7D9877;     /* naturalist */

  --text-dark:    #121210;
  --text-mid:     #3A3630;
  --text-cream:   #F3EAD3;
  --text-dim:     rgba(243, 234, 211, 0.62);

  /* Typography */
  --ff-display:   "Fraunces", "Bodoni Moda", "Playfair Display", Georgia, serif;
  --ff-italic:    "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --ff-body:      "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono:      "JetBrains Mono", "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  /* Motion */
  --e-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --e-in-out:     cubic-bezier(0.77, 0, 0.18, 1);

  /* Layout */
  --gutter:       clamp(20px, 4vw, 56px);
  --maxw:         min(1440px, 100% - calc(var(--gutter) * 2));
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html.menu-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 4px; }

/* Grain texture (cinematic film feel) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
}

/* ==========================================================================
   Typography primitives
   ========================================================================== */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(3.5rem, 10vw, 11rem); }
h2 { font-size: clamp(2.5rem, 7vw, 7rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
p  { margin: 0 0 1em; }

em, .italic, .i {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: currentColor;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.noline::before { display: none; }

.num {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-wide { max-width: min(1760px, 100% - calc(var(--gutter) * 2)); margin: 0 auto; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }

.stack > * + * { margin-top: var(--stack, 1em); }

/* ==========================================================================
   Scroll reveal (applied via JS adding .is-in)
   ========================================================================== */
.reveal      { opacity: 0; transform: translateY(36px); transition: opacity 1.1s var(--e-out), transform 1.1s var(--e-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.18s; }
.reveal.delay-3 { transition-delay: 0.28s; }
.reveal.delay-4 { transition-delay: 0.40s; }

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--e-out);
}
.reveal-clip.is-in { clip-path: inset(0 0 0 0); }

.reveal-scale { transform: scale(1.14); transition: transform 1.8s var(--e-out), opacity 1.2s var(--e-out); opacity: 0; }
.reveal-scale.is-in { transform: scale(1); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-clip, .reveal-scale { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: clamp(18px, 2.2vw, 28px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--parchment);
  mix-blend-mode: difference; /* flips color over any background */
  transition: transform .5s var(--e-out);
}
.site-header.is-hidden { transform: translateY(-120%); }

.site-header .brand {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.04em;
  font-weight: 500;
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}
.site-header .brand em {
  font-family: var(--ff-italic);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Live analog clocks (Salvador / NY / London) */
.clocks {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  font-family: var(--ff-mono);
  pointer-events: none;
}
.clock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.clock-face {
  width: 36px;
  height: 36px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}
.clock-ring {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.1;
  opacity: 0.95;
}
.clock-dial {
  fill: rgba(6, 22, 16, 0.55);
  stroke: rgba(201, 165, 104, 0.25);
  stroke-width: 0.5;
}
.clock-ticks line {
  stroke: var(--brass-bright);
  stroke-width: 1.1;
  stroke-linecap: round;
  opacity: 0.85;
}
.clock-hand {
  stroke: var(--brass-bright);
  stroke-linecap: round;
  transform-origin: 22px 22px;
  transform: rotate(0deg);
  transition: transform 0.6s var(--e-out);
}
.clock-hour { stroke-width: 1.8; }
.clock-min  { stroke-width: 1.2; }
.clock-pin {
  fill: var(--brass-bright);
  stroke: var(--emerald-deep);
  stroke-width: 0.3;
}
.clock-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 500;
  color: var(--brass-bright);
}
@media (max-width: 720px) {
  .clocks .clock:not(:first-child) { display: none; }
  .clock-face { width: 32px; height: 32px; }
}
@media (max-width: 1080px) and (min-width: 721px) {
  .clock-face { width: 32px; height: 32px; }
  .clock-label { font-size: 0.52rem; letter-spacing: 0.18em; }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.menu-toggle .bar {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.menu-toggle .bar::before,
.menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--e-in-out);
}
.menu-toggle .bar::before { top: -5px; }
.menu-toggle .bar::after  { top: 5px; }
html.menu-open .menu-toggle .bar { background: transparent; }
html.menu-open .menu-toggle .bar::before { transform: translateY(5px) rotate(45deg); }
html.menu-open .menu-toggle .bar::after  { transform: translateY(-5px) rotate(-45deg); }

/* ==========================================================================
   Fullscreen menu overlay (Faena-style)
   ========================================================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--emerald-deep);
  color: var(--parchment);
  padding: clamp(80px, 10vh, 140px) var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  transform: translateY(-100%);
  transition: transform .9s var(--e-in-out);
  overflow-y: auto;
}
html.menu-open .menu { transform: translateY(0); }

.menu-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s var(--e-out);
  z-index: 0;
}
.menu-backdrop.is-on { opacity: 0.32; }
.menu > * { position: relative; z-index: 1; }

.menu-left { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.menu-right { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }

.menu-main {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.menu-main li + li { margin-top: 2px; }
.menu-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 6px 0;
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
  color: var(--parchment);
  transition: color .35s, letter-spacing .5s var(--e-out), transform .5s var(--e-out);
  position: relative;
  overflow: hidden;
}
.menu-link .ml-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--brass-bright);
  opacity: 0.7;
  flex-shrink: 0;
  width: 3ch;
  padding-top: 0.6em;
}
.menu-link .ml-name {
  position: relative;
  transition: transform .6s var(--e-out);
  font-weight: 500;
}
.menu-link .ml-name em { color: var(--brass-bright); }
.menu-link .ml-sub {
  position: absolute;
  left: 4.4ch;
  bottom: -14px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .4s, transform .4s var(--e-out);
}
.menu-link:hover {
  color: var(--brass-bright);
}
.menu-link:hover .ml-name { transform: translateX(10px); }
.menu-link:hover .ml-sub  { opacity: 1; transform: translateY(0); }

.menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.menu-meta a:hover { color: var(--brass-bright); }

.menu-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: center;
}
.menu-art img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s var(--e-out), transform 1.2s var(--e-out);
}
.menu-art img.is-on { opacity: 1; }
.menu-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 22, 16, 0.5));
  pointer-events: none;
}

@media (max-width: 880px) {
  .menu { grid-template-columns: 1fr; gap: 20px; }
  .menu-art { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--parchment);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--emerald-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1);
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 110%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 16, 0.35) 0%, transparent 30%, transparent 55%, rgba(6, 22, 16, 0.85) 100%),
    linear-gradient(90deg, rgba(6, 22, 16, 0.45) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 180px var(--gutter) 80px;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
.hero-eyebrow {
  color: var(--brass-bright);
  margin-bottom: 24px;
}
.hero h1 {
  max-width: 18ch;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 300;
}
.hero h1 em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.hero-dek {
  max-width: 52ch;
  margin-top: 32px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-dim);
  line-height: 1.6;
}

.hero-scrollhint {
  position: absolute;
  bottom: 32px; left: var(--gutter);
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scrollhint::after {
  content: "";
  width: 60px; height: 1px;
  background: currentColor;
  opacity: 0.5;
  animation: scrollhint 2.4s infinite var(--e-in-out);
}
@keyframes scrollhint {
  0%,100% { transform: scaleX(0.2); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

.hero-coords {
  position: absolute;
  bottom: 32px; right: var(--gutter);
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-align: right;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  overflow: hidden;
  padding: 36px 0;
  background: var(--emerald-deep);
  color: var(--brass-bright);
  border-block: 1px solid rgba(199, 164, 103, 0.22);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 42s linear infinite;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track span::after {
  content: "✦";
  color: var(--brass);
  font-size: 0.6em;
  opacity: 0.7;
}
.marquee-track em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--parchment);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.section {
  padding: clamp(80px, 14vw, 200px) 0;
  position: relative;
}
.section--cream { background: var(--parchment); color: var(--text-dark); }
.section--dark  { background: var(--emerald-deep); color: var(--parchment); }
.section--ink   { background: var(--ink); color: var(--parchment); }
.section--night { background: var(--midnight); color: var(--parchment); }
.section--bone  { background: var(--bone); color: var(--text-dark); }

/* ==========================================================================
   Manifesto / intro
   ========================================================================== */
.manifesto {
  padding: clamp(100px, 16vw, 220px) 0;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.manifesto-eyebrow { margin-bottom: 48px; color: var(--brass-deep); }
.manifesto-text {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  max-width: 26ch;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
}
.manifesto-text em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--crimson);
  font-weight: 400;
}
.manifesto-text .i-brass { color: var(--brass-deep); }

/* ==========================================================================
   Suite chapters (home page)
   Each suite is a full-bleed cinematic scene.
   ========================================================================== */
.chapter {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  color: var(--parchment);
  background: var(--emerald-deep);
}
.chapter--theme-1 { background: #0D2B1A; --accent: #E9CE94; --num-color: #E9CE94; }
.chapter--theme-2 { background: #0C1421; --accent: #C19A75; --num-color: #D4A97F; }
.chapter--theme-3 { background: #1A0C14; --accent: #D89B7B; --num-color: #E9CE94; }
.chapter--theme-4 { background: #18120D; --accent: #E9CE94; --num-color: #C7A467; }

.chapter-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.chapter-media img {
  width: 100%; height: 110%;
  object-fit: cover;
  transform: scale(1.02);
}
.chapter-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(0,0,0, 0.45) 0%, transparent 40%, rgba(0,0,0, 0.75) 100%);
}

.chapter-inner {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 160px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.chapter-n {
  position: absolute;
  top: 120px; left: var(--gutter);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--accent, var(--brass-bright));
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.chapter-n::before {
  content: "";
  display: inline-block;
  width: 56px; height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.chapter-headline h2 {
  font-weight: 300;
  color: var(--parchment);
  line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 300;
}
.chapter-headline h2 em {
  color: var(--accent, var(--brass-bright));
}
.chapter-dek {
  max-width: 46ch;
  margin-top: 24px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--text-dim);
  line-height: 1.55;
}
.chapter-cta {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  padding-bottom: 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color .3s;
}
.chapter-cta::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent, var(--brass-bright));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform .5s var(--e-out);
}
.chapter-cta:hover { color: var(--accent, var(--brass-bright)); }
.chapter-cta:hover::before { transform: scaleX(1); }
.chapter-cta .arrow {
  display: inline-block;
  transition: transform .4s var(--e-out);
}
.chapter-cta:hover .arrow { transform: translateX(8px); }

.chapter-side {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: grid;
  gap: 6px;
  text-align: right;
}

/* Photo strip that slides horizontally below each chapter */
.chapter-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44%;
  max-width: 680px;
  z-index: 3;
  display: none; /* use at larger breakpoints if room */
}
@media (max-width: 880px) {
  .chapter-inner { grid-template-columns: 1fr; padding-top: 160px; padding-bottom: 60px; }
  .chapter-side { text-align: left; }
}

/* Entire chapter becomes a link */
a.chapter { text-decoration: none; }
a.chapter:hover .chapter-media img { transform: scale(1.05); }
a.chapter .chapter-media img { transition: transform 1.6s var(--e-out); }

/* ==========================================================================
   Quote / editorial pullquote
   ========================================================================== */
.pullquote {
  padding: clamp(100px, 16vw, 220px) 0;
  background: var(--parchment);
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--text-dark);
  font-weight: 400;
}
.pullquote cite {
  display: block;
  margin-top: 40px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-style: normal;
}

/* ==========================================================================
   Location
   ========================================================================== */
.location-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  color: var(--parchment);
  background: var(--emerald-deep);
  overflow: hidden;
  text-align: center;
  padding: var(--gutter);
}
.location-hero h2 {
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 11rem);
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 300;
}
.location-hero h2 em { color: var(--brass-bright); }
.location-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--loc-image);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(0.9);
  transform: scale(1.05);
  will-change: transform;
}
.location-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,22,16,0.6) 70%, rgba(6,22,16,0.92) 100%);
}

.location-copy {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--emerald-deep);
  color: var(--parchment);
}
.location-copy .wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding: 0 var(--gutter);
}
.location-copy p {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.25;
  color: var(--parchment);
  max-width: 36ch;
  font-variation-settings: "opsz" 96, "wght" 300;
}
.location-copy p em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--brass-bright);
}

@media (max-width: 880px) {
  .location-copy .wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA section
   ========================================================================== */
.cta {
  padding: clamp(100px, 16vw, 200px) 0;
  background: var(--crimson-deep);
  color: var(--parchment);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(243, 234, 211, 0.08) 0%, transparent 60%);
}
.cta-inner { position: relative; padding: 0 var(--gutter); }
.cta h2 {
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 300;
  color: var(--parchment);
}
.cta h2 em { color: var(--brass-bright); }
.cta-sub {
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(243, 234, 211, 0.78);
  max-width: 52ch;
  margin-left: auto; margin-right: auto;
}

/* ==========================================================================
   Buttons / link styles
   ========================================================================== */
.btn {
  --btn-fg: var(--parchment);
  --btn-bg: transparent;
  --btn-bd: var(--parchment);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .4s var(--e-out), color .4s var(--e-out), transform .25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--parchment);
  transform: translateY(100%);
  transition: transform .55s var(--e-out);
  z-index: 0;
}
.btn:hover::after { transform: translateY(0); }
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--emerald-deep); }
.btn--brass {
  --btn-bg: var(--brass);
  --btn-bd: var(--brass);
  --btn-fg: var(--emerald-deep);
}
.btn--brass::after { background: var(--brass-bright); }
.btn--brass:hover { color: var(--emerald-deep); }
.btn--crimson {
  --btn-bg: var(--crimson);
  --btn-bd: var(--crimson);
  --btn-fg: var(--parchment);
}
.btn--crimson::after { background: var(--parchment); }
.btn--crimson:hover { color: var(--crimson-deep); }
.btn--ghost { --btn-bg: transparent; }

/* ==========================================================================
   Suite detail page
   ========================================================================== */
.suite-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--parchment);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.suite-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.suite-hero .hero-media img { width: 100%; height: 110%; object-fit: cover; }
.suite-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,22,16,0.35) 0%, transparent 40%, rgba(6,22,16,0.9) 100%);
}
.suite-hero .hero-inner { padding: 180px var(--gutter) 90px; width: 100%; max-width: 1760px; margin: 0 auto; }

.suite-hero .num-col {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--brass-bright);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.suite-hero h1 {
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 250;
  max-width: 14ch;
}
.suite-hero h1 em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}
.suite-hero-dek {
  max-width: 52ch;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: rgba(243,234,211,0.72);
}
.suite-hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 44px;
}

/* About / description */
.suite-about {
  padding: clamp(100px, 14vw, 200px) 0;
  background: var(--parchment);
  color: var(--text-dark);
}
.suite-about .wrap {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
.suite-about-title h2 {
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
}
.suite-about-title h2 em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--crimson);
}
.suite-about-body {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-mid);
  max-width: 58ch;
  font-family: var(--ff-body);
}
.suite-about-body .lang-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 36px 0;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.suite-about-body .lang-divider::before,
.suite-about-body .lang-divider::after {
  content: ""; flex: 1; height: 1px;
  background: rgba(142, 108, 51, 0.3);
}
.suite-about-body .en { font-family: var(--ff-italic); font-style: italic; color: var(--text-mid); font-size: 1.1rem; }

@media (max-width: 880px) {
  .suite-about .wrap { grid-template-columns: 1fr; }
}

/* Highlights (sticky list) */
.highlights {
  list-style: none; padding: 0; margin: 44px 0 0;
  counter-reset: hl;
}
.highlights li {
  counter-increment: hl;
  padding: 20px 0;
  border-top: 1px solid rgba(18, 18, 16, 0.12);
  display: grid;
  grid-template-columns: 3ch 1fr;
  gap: 16px;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  align-items: baseline;
}
.highlights li::before {
  content: counter(hl, decimal-leading-zero);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brass-deep);
}
.highlights li:last-child { border-bottom: 1px solid rgba(18, 18, 16, 0.12); }

/* Facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(18, 18, 16, 0.12);
  margin: 80px 0;
}
.fact {
  background: var(--parchment);
  padding: 40px 24px;
  text-align: center;
}
.fact-n {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text-dark);
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 300;
}
.fact-label {
  display: block;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
@media (max-width: 720px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Gallery — asymmetric, full-bleed
   ========================================================================== */
.gallery {
  padding: clamp(60px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--parchment);
}
.gallery-intro {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery-intro h2 {
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  padding: 0 var(--gutter);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--emerald-deep);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--e-out);
}
.gallery-item:hover img { transform: scale(1.06); }

/* asymmetric pattern */
.gallery-item { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(5n+1) { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-item:nth-child(7n+2) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-item:nth-child(11n+5) { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-item:nth-child(13n+6) { grid-column: span 3; aspect-ratio: 2/3; }

@media (max-width: 880px) {
  .gallery-item,
  .gallery-item:nth-child(5n+1),
  .gallery-item:nth-child(7n+2),
  .gallery-item:nth-child(11n+5),
  .gallery-item:nth-child(13n+6) { grid-column: span 6; aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .gallery-item,
  .gallery-item:nth-child(5n+1),
  .gallery-item:nth-child(7n+2),
  .gallery-item:nth-child(11n+5),
  .gallery-item:nth-child(13n+6) { grid-column: span 12; aspect-ratio: 4/3; }
}

/* ==========================================================================
   Amenities (three column editorial)
   ========================================================================== */
.amenities-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bone);
  color: var(--text-dark);
}
.amenities-section .wrap { padding: 0 var(--gutter); }
.amenities-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.amenities-head h2 {
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
}
.amenities-list {
  list-style: none; padding: 0; margin: 0;
  columns: 3 240px;
  column-gap: clamp(30px, 4vw, 80px);
}
.amenities-list li {
  padding: 16px 0;
  border-top: 1px solid rgba(18,18,16,0.16);
  break-inside: avoid;
  font-size: 1rem;
  color: var(--text-mid);
}
.amenities-list li:last-child { border-bottom: 1px solid rgba(18,18,16,0.16); }

/* ==========================================================================
   Related suites (horizontal scroll on mobile)
   ========================================================================== */
.related {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--parchment);
  color: var(--text-dark);
}
.related-head { padding: 0 var(--gutter); max-width: var(--maxw); margin: 0 auto 60px; }
.related-grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  color: var(--parchment);
}
.related-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--e-out);
}
.related-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,22,16,0.85));
  pointer-events: none;
}
.related-card-body {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
}
.related-card-n {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--brass-bright);
  margin-bottom: 8px;
}
.related-card h3 {
  font-weight: 300;
  line-height: 1;
  color: var(--parchment);
}
.related-card h3 em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--brass-bright);
}
.related-card:hover img { transform: scale(1.07); }

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}
.site-footer .wrap {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
}
.footer-brand em { font-family: var(--ff-italic); font-style: italic; color: var(--brass-bright); }
.footer-tag {
  max-width: 32ch;
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  color: var(--text-dim);
  transition: color .3s;
  font-size: 0.96rem;
}
.footer-col a:hover { color: var(--brass-bright); }

.footer-wordmark {
  font-family: var(--ff-display);
  font-weight: 200;
  font-size: clamp(4rem, 18vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-top: 100px;
  padding: 0 var(--gutter);
  color: var(--parchment);
  opacity: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 200;
}
.footer-wordmark em { font-family: var(--ff-italic); font-style: italic; color: var(--brass-bright); }

.footer-legal {
  padding: 32px var(--gutter) 0;
  margin-top: 40px;
  border-top: 1px solid rgba(199, 164, 103, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-legal a { color: var(--brass-bright); }
.footer-legal a:hover { color: var(--parchment); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   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;
}
