/* ============ AEJ - luxury personal brand site ============ */

:root {
  --bg: #0a0908;
  --bg-2: #100d09;
  --bg-3: #161310;
  --ink: #ebe4d3;
  --ink-dim: #a8a08c;
  --ink-mute: #6a6253;

  --gold: #d4af6f;
  --gold-hi: #f4d99c;
  --gold-lo: #8a6a3e;
  --gold-deep: #5a4423;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --display: "Cinzel", "Trajan Pro", serif;
  --script: "Pinyon Script", "Allura", cursive;

  --frame: clamp(14px, 1.8vw, 28px);
  --easing: cubic-bezier(.2,.7,.2,1);
}

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

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(212,175,111,0.07), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(212,175,111,0.04), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

::selection { background: rgba(212,175,111,0.32); color: #fff; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.script { font-family: var(--script); font-weight: 400; }
.serif { font-family: var(--serif); }
.deco  { font-family: var(--display); letter-spacing: 0.18em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; margin: 0; line-height: 1.04; }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -0.005em; }
h2 em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.3em; font-weight: 400; display: inline-block; transform: translateY(0.08em); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: 0.005em; }
h3 em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.35em; font-weight: 400; display: inline-block; transform: translateY(0.1em); }

p { margin: 0; }

/* ---------- Site frame ---------- */
.site-frame {
  position: fixed;
  inset: var(--frame);
  pointer-events: none;
  z-index: 30;
  border: 1px solid rgba(212,175,111,0.4);
}
.site-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212,175,111,0.15);
}
.frame-corner {
  position: absolute;
  width: 56px; height: 56px;
  pointer-events: none;
}
.frame-corner svg { width: 100%; height: 100%; display: block; }
.frame-corner.tl { top: -1px; left: -1px; }
.frame-corner.tr { top: -1px; right: -1px; transform: scaleX(-1); }
.frame-corner.bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.frame-corner.br { bottom: -1px; right: -1px; transform: scale(-1, -1); }

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: calc(var(--frame) + 8px);
  left: var(--frame);
  right: var(--frame);
  z-index: 40;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.55) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,111,0.18);
}
.nav-mark { display: block; height: 38px; line-height: 0; flex-shrink: 0; }
.nav-mark img { height: 100%; width: auto; display: block; filter: drop-shadow(0 1px 4px rgba(212,175,111,0.4)); }
.nav-links {
  display: flex;
  gap: 38px;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: rgba(235,228,211,0.78);
  transition: color 0.5s ease;
}
.nav-links a:hover { color: var(--gold-hi); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s ease, left 0.5s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hi);
  padding: 11px 20px;
  border: 1px solid rgba(212,175,111,0.45);
  background: linear-gradient(180deg, rgba(212,175,111,0.08), rgba(212,175,111,0));
  transition: all 0.5s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: linear-gradient(180deg, rgba(212,175,111,0.2), rgba(212,175,111,0.06));
  border-color: var(--gold-hi);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
}

/* ---------- Section base ---------- */
section {
  position: relative;
  padding: clamp(110px, 16vh, 200px) clamp(28px, 6vw, 96px);
  /* Cap content width on huge screens so the layout stays cohesive (not stretched thin) */
  max-width: 1480px;
  margin-inline: auto;
}
/* The journey is the only full-bleed section (immersive) */
.journey {
  max-width: none !important;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-lede {
  max-width: 540px;
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 18px 0 0;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 160px clamp(28px, 6vw, 96px) 160px;
  position: relative;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  /* fade canvas at edges to feel atmospheric, no rectangle */
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.hero-skyline svg { width: 100%; height: 100%; display: block; }

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 28px;
  justify-items: center;
  max-width: 1100px;
  padding: 0 6vw;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.6s var(--easing) 0.3s forwards;
}
.hero-eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-mark {
  position: relative;
  width: clamp(280px, 50vw, 620px);
  display: grid;
  place-items: center;
  margin: 12px 0;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(212,175,111,0.25)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: fadeUpScale 2s var(--easing) 0.8s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: clamp(280px, 38vw, 520px);
  opacity: 0;
  animation: fadeUp 1.4s ease 1.8s forwards;
}
.hero-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-divider .lozenge {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(212,175,111,0.6);
}
.hero-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  letter-spacing: 0.46em;
  color: var(--gold-hi);
  opacity: 0;
  animation: fadeUp 1.4s ease 2s forwards;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink-dim);
  letter-spacing: 0.01em;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 1.4s ease 2.2s forwards;
}
.hero-meta {
  position: absolute;
  left: 0; right: 0; bottom: clamp(28px, 4vh, 48px);
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(40px, 6vw, 96px);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeUp 1.4s ease 2.6s forwards;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}
.scroll-cue .pulse {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .pulse::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-hi), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@media (max-width: 700px) {
  .hero-meta { flex-direction: column; gap: 16px; bottom: 24px; }
  .hero-meta > span:not(.scroll-cue) { display: none; }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUpScale { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid rgba(212,175,111,0.15);
  border-bottom: 1px solid rgba(212,175,111,0.15);
  background: linear-gradient(180deg, rgba(212,175,111,0.03), rgba(212,175,111,0));
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 60s linear infinite;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
}
.marquee-track .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto 80px;
  max-width: 1280px;
}
.about-grid h2 { max-width: 14ch; }
.about-grid p { color: var(--ink-dim); font-size: 1.15rem; max-width: 38ch; margin-top: 24px; }
.about-portrait {
  position: relative;
  aspect-ratio: 2 / 3;                /* taller container so more of the subject fits without cropping */
  width: 100%;
  margin: 0;
  border: 1px solid rgba(212,175,111,0.3);
  background:
    linear-gradient(135deg, rgba(212,175,111,0.05), rgba(212,175,111,0.01)),
    repeating-linear-gradient(45deg, rgba(212,175,111,0.04) 0 1px, transparent 1px 22px),
    var(--bg-2);
  overflow: hidden;
}
/* Placeholder label - only shown when no <img> is inside (graceful fallback) */
.about-portrait:not(:has(.portrait-img))::before {
  content: attr(data-label);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;     /* anchor to bottom - crops empty headroom, more of him in frame */
  display: block;
  /* subtle editorial duotone-ish wash so portrait sits in the gold/dark world */
  filter: contrast(1.04) saturate(0.92) brightness(0.96);
}
.about-portrait::after {
  /* warm vignette + subtle gold-ink wash for editorial integration */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 100% at 50% 30%, transparent 60%, rgba(10,9,8,0.55) 100%),
    linear-gradient(180deg, rgba(212,175,111,0.04) 0%, transparent 30%, rgba(10,9,8,0.25) 100%);
  mix-blend-mode: multiply;
}
.portrait-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,175,111,0.35);
  pointer-events: none;
  z-index: 2;
}
.about-body {
  max-width: 880px;        /* slightly wider on widescreens - comfortable reading width */
  margin: 0 auto;          /* centered within section */
  font-size: 1.18rem;
  line-height: 1.78;
  color: var(--ink);
}
.about-body p + p { margin-top: 24px; }
.about-body p:last-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 40px;
}
.about-body strong { color: var(--gold-hi); font-weight: 500; }
.about-tags {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.about-tags > span:not(:nth-child(2n)) { color: var(--gold-hi); }
.about-tags > span:nth-child(2n) { color: var(--gold); opacity: 0.5; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Journey (scroll parallax) ---------- */
.journey {
  position: relative;
  padding: 0 !important;
  background: var(--bg);
}

/* Progress rail - fixed, fades in while the journey is on screen */
.journey-progress {
  position: fixed;
  left: clamp(20px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  height: 42vh;
  width: 1px;
  background: rgba(212,175,111,0.15);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.journey-progress.active { opacity: 1; }
.journey-progress .fill {
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  box-shadow: 0 0 8px rgba(212,175,111,0.6);
  transition: height 0.12s linear;
}
.journey-progress .tick {
  position: absolute;
  left: -3px;
  width: 7px; height: 1px;
  background: var(--gold);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.journey-progress .tick.on { opacity: 0.95; }
.journey-progress .knob {
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px; height: 9px;
  background: var(--gold-hi);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(212,175,111,0.7);
  transition: top 0.12s linear;
}

/* Each scene reserves scroll length; the stage pins while it scrubs */
.scene {
  position: relative;
  height: 220vh;
}
.scene-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg-fallback, var(--bg));
  background-size: cover;
  background-position: center;
}

/* Layers - absolutely stacked, parallax + entrance via transform/opacity only */
.layer {
  position: absolute;
  inset: -16%;            /* overscan so parallax travel never reveals an edge */
  will-change: transform, opacity;
  pointer-events: none;
}
.layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.layer-sky   { z-index: 1; }
.layer-far   { z-index: 2; }
.layer-mid   { z-index: 3; }
.layer-fore  { z-index: 4; }
.layer-atmos { z-index: 5; }
.layer-atmos[data-blend="screen"] { mix-blend-mode: screen; }

/* Grade + vignette above imagery, below copy */
.scene-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 38%, transparent 42%, rgba(10,9,8,0.55) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.42) 0%, transparent 22%, transparent 68%, rgba(10,9,8,0.72) 100%);
}

/* Copy - deco-framed panel set into reserved negative space */
.scene-copy {
  position: absolute;
  z-index: 7;
  top: 32%;
  width: clamp(280px, 30vw, 440px);
  padding: 28px 32px;
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
  background: linear-gradient(180deg, rgba(10,9,8,0.78), rgba(10,9,8,0.55));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,175,111,0.5);
  border-bottom: 1px solid rgba(212,175,111,0.5);
}
.scene-copy::before, .scene-copy::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
}
.scene-copy::before {
  top: -1px; left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.scene-copy::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.scene-copy.left  { left: clamp(40px, 7vw, 110px); }
.scene-copy.right { right: clamp(40px, 7vw, 110px); }
.scene-copy.show  { opacity: 1; transform: translateY(0); }

.scene-copy .pnl-eyebrow {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.scene-copy h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.18;
}
.scene-copy h3 em { font-style: italic; color: var(--gold-hi); }
.scene-copy p {
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .scene { height: 180vh; }
  .scene-copy.left, .scene-copy.right {
    left: 9vw; right: 9vw;
    top: auto; bottom: 10%;
    width: auto;
    transform: translateY(46px);
  }
  .scene-copy.left.show, .scene-copy.right.show {
    transform: translateY(0);
  }
  .journey-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .layer { transform: none !important; }
  .scene-copy {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none;
  }
}

/* ---------- Worlds ---------- */
#worlds h2 { margin-bottom: 12px; }
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 64px auto 0;
  max-width: 1300px;       /* tighten on widescreens so cards stay readable, not overstretched */
}
.world {
  position: relative;
  padding: 48px 36px 56px;
  border-top: 1px solid rgba(212,175,111,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 520px;
  transition: background 0.6s ease;
}
.world::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}
.world:hover {
  background: linear-gradient(180deg, rgba(212,175,111,0.04), rgba(0,0,0,0));
}
.world-num {
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
}
.world-icon { width: 80px; height: 80px; margin-top: 12px; }
.world-icon svg { width: 100%; height: 100%; }
.world h3 { margin-top: auto; font-weight: 300; }
.world p { color: var(--ink-dim); font-size: 1rem; line-height: 1.62; }
.world-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid rgba(212,175,111,0.18);
}
.world-meta .sep { opacity: 0.4; }
@media (max-width: 1000px) {
  .worlds-grid { grid-template-columns: 1fr; gap: 0; }
  .world { min-height: auto; }
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  border-top: 1px solid rgba(212,175,111,0.1);
  border-bottom: 1px solid rgba(212,175,111,0.1);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
  margin-top: 56px;
}
.life-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212,175,111,0.18);
  transition: transform 0.7s var(--easing), border-color 0.5s ease;
}
.life-card.tall { grid-row: span 2; }
.life-card:hover { transform: translateY(-4px); border-color: rgba(212,175,111,0.5); }
.life-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212,175,111,0.06), rgba(212,175,111,0.02) 60%),
    repeating-linear-gradient(45deg, rgba(212,175,111,0.05) 0 1px, transparent 1px 18px),
    var(--bg-3);
}
.life-img::before {
  content: attr(data-label);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  white-space: nowrap;
}
.life-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85) 60%);
  display: grid;
  gap: 6px;
}
.life-card .lc-num {
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}
.life-card .lc-ttl {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink);
}
.life-card .lc-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-dim);
}
@media (max-width: 900px) {
  .lifestyle-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .life-card.tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
}

/* ---------- Numbers ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 40px auto 0;
  /* Cap so 4 stats stay close together on widescreens - not isolated cells */
  max-width: 1100px;
  border-top: 1px solid rgba(212,175,111,0.2);
  border-bottom: 1px solid rgba(212,175,111,0.2);
}
.stat {
  padding: 56px 28px;
  text-align: center;
  position: relative;
}
.stat + .stat { border-left: 1px solid rgba(212,175,111,0.15); }
.stat-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-hi);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}
.stat-value .unit { font-size: 0.36em; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.stat-label {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(2), .stat:nth-child(4) { border-left: 1px solid rgba(212,175,111,0.15); }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(212,175,111,0.15); }
}

/* ---------- Voice ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin: 56px auto 0;
  max-width: 1200px;       /* keep quote and list visually paired on widescreens */
}
.voice-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  padding-left: 36px;
}
.voice-quote::before {
  content: "“";
  position: absolute;
  left: -8px; top: -32px;
  font-family: var(--script);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
}
.voice-source {
  margin-top: 32px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.voice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(212,175,111,0.18);
}
.voice-list li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212,175,111,0.18);
  align-items: center;
}
.voice-list .yr { font-family: var(--display); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; color: var(--gold); }
.voice-list .ttl { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--ink); }
.voice-list .src { font-family: var(--display); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.36em; color: var(--ink-mute); text-transform: uppercase; }
@media (max-width: 1000px) {
  .voice-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Hello ---------- */
.hello {
  background:
    radial-gradient(800px 500px at 50% -10%, rgba(212,175,111,0.1), transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(212,175,111,0.12);
}
.hello-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
  border-top: 1px solid rgba(212,175,111,0.4);
  border-bottom: 1px solid rgba(212,175,111,0.4);
  text-align: center;
  background: linear-gradient(180deg, rgba(212,175,111,0.03), rgba(0,0,0,0));
}
.hello-card::before, .hello-card::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
}
.hello-card::before { top: -1px; left: -1px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hello-card::after { bottom: -1px; right: -1px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hello-card h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hello-sub {
  margin: 26px auto 44px;
  max-width: 480px;
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
}
.hello-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-hi);
  background: linear-gradient(180deg, rgba(212,175,111,0.08), rgba(0,0,0,0));
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,240,200,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { background: linear-gradient(180deg, rgba(212,175,111,0.18), rgba(212,175,111,0.04)); color: #fff; }
.btn.ghost { border-color: rgba(212,175,111,0.4); color: var(--ink-dim); }
.btn.ghost:hover { color: var(--gold-hi); border-color: var(--gold); }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

.hello-channels {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(212,175,111,0.2);
}
.channel {
  padding: 28px 22px;
  text-align: center;
}
.channel + .channel { border-left: 1px solid rgba(212,175,111,0.15); }
.channel .lbl {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.channel .val {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
@media (max-width: 700px) {
  .hello-channels { grid-template-columns: 1fr; }
  .channel + .channel { border-left: 0; border-top: 1px solid rgba(212,175,111,0.15); }
}

/* ---------- Footer ---------- */
.foot {
  padding: 80px clamp(28px, 6vw, 96px) 120px;
  border-top: 1px solid rgba(212,175,111,0.18);
  text-align: center;
}
.foot-mark {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(212,175,111,0.3));
}
.foot-name {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.46em;
  color: var(--gold-hi);
  text-transform: uppercase;
}
.foot-meta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 22px;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.foot-fine {
  margin-top: 56px;
  font-family: var(--display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ---------- Reveal on scroll (slower, softer) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.6s var(--easing), transform 1.6s var(--easing);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.18s; }
.reveal.delay-2 { transition-delay: 0.36s; }
.reveal.delay-3 { transition-delay: 0.54s; }

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, .btn, .nav-cta, [role="button"] { cursor: none; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold-hi);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
  box-shadow: 0 0 8px rgba(244,217,156,0.8);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,111,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}
.cursor-ring::before, .cursor-ring::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.cursor-ring::before { top: -4px; left: 50%; width: 1px; height: 4px; transform: translateX(-50%); }
.cursor-ring::after  { bottom: -4px; left: 50%; width: 1px; height: 4px; transform: translateX(-50%); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--gold-hi); }
.cursor-ring.click { width: 24px; height: 24px; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  html, body { cursor: auto; }
}

/* ---------- Section dividers (soft transitions, not hard cuts) ---------- */
section + section,
.marquee + section {
  position: relative;
}
section::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, transparent, rgba(212,175,111,0.25));
  pointer-events: none;
}
.hero::before,
.journey::before,
.marquee + section::before { content: none; }

/* ---------- Mobile tweaks ---------- */
@media (max-width: 640px) {
  section { padding: 80px 24px; }
}
