:root {
  --bg: oklch(0.13 0.008 250);
  --bg-soft: oklch(0.18 0.010 250);
  --bg-card: oklch(0.22 0.012 250);
  --ink: oklch(0.96 0.005 250);
  --ink-mute: oklch(0.70 0.010 250);
  --ink-dim: oklch(0.52 0.010 250);
  --line: oklch(0.30 0.010 250);
  --line-soft: oklch(0.24 0.010 250);
  --accent-gradient: linear-gradient(100deg, #03a2ff 10%, #7b3cf0 55%, #ff0f0f 90%, #ff3f0f 100%);
  --accent: #ff2a1a;
  --nav-accent: var(--accent);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-size: 18px; font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
p, li { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-weight: 300; margin: 0; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.nowrap { white-space: nowrap; }
.serif { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; }
.eyebrow { font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-mute); }
.min0 { min-width: 0; overflow-wrap: break-word; }
.accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

@keyframes morph {
  0%   { border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%; }
  25%  { border-radius: 42% 58% 38% 62% / 58% 42% 60% 40%; }
  50%  { border-radius: 56% 44% 64% 36% / 36% 60% 40% 64%; }
  75%  { border-radius: 38% 62% 48% 52% / 64% 36% 56% 44%; }
  100% { border-radius: 50% 50% 42% 58% / 50% 50% 58% 42%; }
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

/* --- NAV --- */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 56px);
  padding: 13px clamp(18px, 4vw, 40px);
  backdrop-filter: blur(16px) saturate(1.15);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
nav.top .logo { display: flex; align-items: center; }
nav.top .logo img { height: 42px; width: auto; display: block; }
nav.top .cities {
  display: flex; justify-content: center; align-items: baseline; gap: clamp(8px, 2vw, 32px);
  font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
}
nav.top .city {
  position: relative; padding: 6px 6px;
  display: inline-flex; align-items: baseline; gap: 6px;
  text-align: center; color: var(--ink-mute); transition: color 200ms;
}
nav.top .city .name { color: inherit; display: block; line-height: 1; }
/* Flagship flag icon next to Los Angeles in the nav */
nav.top .city .flag {
  flex: 0 0 auto; width: 13px; height: 13px;
  transform: rotate(-14deg); transform-origin: bottom right;
  color: inherit; opacity: 1; align-self: baseline; pointer-events: none;
}
nav.top .city .flag path { vector-effect: non-scaling-stroke; }
nav.top .city:hover .flag { opacity: 1; }
nav.top .city.active .flag { color: inherit; opacity: 1; }
nav.top .city:hover { color: var(--ink); }
nav.top .city.active { color: var(--ink); }
nav.top .city.active .name { position: relative; }
nav.top .city.active .name::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 1.5px; background: var(--ink);
}
nav.top .inquire {
  position: relative; overflow: hidden;
  padding: 11px 20px; border: 1px solid transparent; border-image: var(--accent-gradient) 1;
  font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
}
nav.top .inquire::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--accent-gradient);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
nav.top .inquire:hover::before { transform: scaleX(1); }
nav.top .inquire .inq-label {
  position: relative; z-index: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transition: -webkit-text-fill-color 260ms ease 120ms, color 260ms ease 120ms;
}
nav.top .inquire:hover .inq-label { -webkit-text-fill-color: #fff; color: #fff; }
nav.top .menu-toggle { display: none; width: 40px; height: 34px; flex: 0 0 auto; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line); background: none; cursor: pointer; }
nav.top .menu-toggle .bars { position: relative; display: block; width: 18px; height: 1.5px; background: var(--ink-mute); transition: background 240ms ease; }
nav.top .menu-toggle .bars::before, nav.top .menu-toggle .bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink-mute); transition: transform 480ms cubic-bezier(0.22,1,0.36,1); }
nav.top .menu-toggle .bars::before { top: -6px; }
nav.top .menu-toggle .bars::after { top: 6px; }
nav.top.open .menu-toggle .bars { background: transparent; }
nav.top.open .menu-toggle .bars::before { transform: translateY(6px) rotate(45deg); }
nav.top.open .menu-toggle .bars::after { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 860px) {
  nav.top { grid-template-columns: auto 1fr auto auto; }
  nav.top .cities {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 4px 18px 18px;
    background: color-mix(in oklab, var(--bg) 94%, transparent);
    backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 560ms ease, opacity 400ms ease;
  }
  nav.top.open .cities { transform: none; opacity: 1; pointer-events: auto; }
  nav.top .city { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; width: 100%; padding: 16px 4px; border-bottom: 1px solid var(--line-soft); text-align: left; }
  nav.top .city:last-child { border-bottom: none; }
  nav.top .city .name { display: inline; }
  nav.top { gap: 14px; }
  nav.top .menu-toggle { display: inline-flex; grid-column: 4; grid-row: 1; }
  nav.top .logo { grid-column: 1; grid-row: 1; }
  nav.top .inquire { grid-column: 3; grid-row: 1; }
  nav.top .inquire { padding: 0 14px; font-size: 10px; height: 34px; display: inline-flex; align-items: center; box-sizing: border-box; }
}

/* --- HERO --- */
.hero { position: relative; padding: 124px clamp(20px, 4vw, 48px) 76px; display: flex; flex-direction: column; justify-content: center; gap: 48px; overflow: hidden; min-height: 76vh; }
.hero .slideshow { position: absolute; inset: 0; z-index: 0; }
.hero .slideshow.is-blurred {
  z-index: 1;
  -webkit-mask-image: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 80%);
          mask-image: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 80%);
}
.hero .slideshow.is-blurred .slide { filter: blur(8px); transform: scale(1.10); }
.hero .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1800ms ease; transform: scale(1.06);
  animation: kenburns 18s ease-in-out infinite alternate; will-change: opacity, transform;
}
.hero .slide.active { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 40% 35%, transparent 0%, color-mix(in oklab, var(--bg) 50%, transparent) 60%, var(--bg) 100%),
    linear-gradient(180deg, color-mix(in oklab, var(--bg) 30%, transparent) 0%, color-mix(in oklab, var(--bg) 75%, transparent) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: multiply; opacity: 0.35;
}
.hero .inner { position: relative; z-index: 3; max-width: 1280px; margin: 0 auto; width: 100%; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(56px, 10vw, 168px); line-height: 0.9; letter-spacing: -0.03em; margin: 0 0 28px; font-weight: 400; }
.hero .lede { max-width: 60ch; font-size: clamp(18px, 1.4vw, 20px); line-height: 1.55; color: color-mix(in oklab, var(--ink) 85%, var(--ink-mute)); }

/* --- generic section --- */
.container { max-width: 1280px; margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.section-head h2 { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(40px, 6vw, 84px); line-height: 0.96; letter-spacing: -0.025em; }
.section-head .right { color: var(--ink-mute); font-size: 1em; line-height: 1.6; max-width: 44ch; justify-self: end; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 20px; } .section-head .right { justify-self: start; } }

/* --- PILLAR DEEP --- */
.pdetail { padding: clamp(48px, 5.5vw, 84px) clamp(20px, 4vw, 48px); border-top: 1px solid var(--line); }
.pdetail .container { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.pdetail.flip .container { direction: rtl; }
.pdetail.flip .container > * { direction: ltr; }
@media (max-width: 900px) { .pdetail .container { grid-template-columns: 1fr; gap: 32px; } .pdetail.flip .container { direction: ltr; } }
.pdetail .pic-wrap { aspect-ratio: 4/3; position: relative; min-width: 0; }
.pdetail .pic {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  border: 2px solid var(--line); animation: morph 20s ease-in-out infinite alternate;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdetail.flip .pic { animation-delay: -6s; }
.pdetail:hover .pic { transform: scale(1.04); }
.pdetail .copy { min-width: 0; }
.pdetail .copy h3 { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(34px, 4.4vw, 60px); line-height: 0.98; margin-bottom: 22px; }
.pdetail .copy .lede { font-size: 1em; line-height: 1.5; color: color-mix(in oklab, var(--ink) 88%, var(--ink-mute)); margin-bottom: 0; max-width: 52ch; }

/* --- FEATURE BAND (full-bleed grand spotlight) --- */
.feature-band {
  position: relative; overflow: hidden; border-top: 1px solid var(--line);
  min-height: 78vh; display: flex; align-items: flex-end;
  padding: clamp(40px, 6vw, 84px) clamp(20px, 4vw, 64px);
}
.feature-band .bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate; }
.feature-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(0deg, var(--bg) 6%, color-mix(in oklab, var(--bg) 78%, transparent) 38%, color-mix(in oklab, var(--bg) 30%, transparent) 60%, transparent 78%),
    linear-gradient(90deg, color-mix(in oklab, var(--bg) 90%, transparent) 0%, color-mix(in oklab, var(--bg) 50%, transparent) 38%, transparent 70%);
}
.feature-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.16) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: multiply; opacity: 0.3;
}
.feature-band .fb-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.feature-band .fb-eyebrow { font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px; }
.feature-band h2 { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(46px, 7.5vw, 118px); line-height: 0.92; letter-spacing: -0.03em; font-weight: 400; margin-bottom: 28px; max-width: 16ch; }
.feature-band .fb-lede { max-width: 56ch; font-size: clamp(18px, 1.4vw, 20px); line-height: 1.55; color: color-mix(in oklab, var(--ink) 88%, var(--ink-mute)); }
@media (max-width: 700px) { .feature-band { min-height: 80vh; } }

/* --- GALLERY --- */
/* Column count is driven by --cols, set per page from the photo count so rows
   always stay full (10 photos -> 5 cols x2 rows; 4 photos -> 4 cols x1 row). */
.gallery-band { padding: clamp(56px, 7vw, 104px) clamp(20px, 4vw, 48px); border-top: 1px solid var(--line); background: var(--bg-soft); }
.gallery { display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.g-item { position: relative; display: block; overflow: hidden; min-width: 0; aspect-ratio: 1; background: var(--bg-card); cursor: pointer; border-radius: 50% 50% 42% 58% / 50% 50% 58% 42%; animation: morph 22s ease-in-out infinite alternate; }
.g-item:nth-child(2n) { animation-delay: -5s; animation-duration: 26s; }
.g-item:nth-child(3n) { animation-delay: -11s; animation-duration: 24s; }
.g-item:nth-child(4n) { animation-delay: -17s; animation-duration: 28s; }
.g-item:nth-child(5n) { animation-delay: -8s; }
.g-item .pic { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 800ms cubic-bezier(0.16,0.84,0.3,1); }
.g-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at center, color-mix(in oklab, var(--bg) 30%, transparent) 0%, color-mix(in oklab, var(--bg) 72%, transparent) 100%);
  opacity: 0; transition: opacity 360ms ease;
}
.g-item .view {
  position: absolute; z-index: 2; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  opacity: 0; transform: scale(0.92); transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22,1,0.36,1);
}
.g-item .view svg { width: 13px; height: 13px; flex: none; }
.g-item:hover .pic, .g-item:focus-visible .pic { transform: scale(1.07); }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }
.g-item:hover .view, .g-item:focus-visible .view { opacity: 1; transform: none; }
.g-item:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(var(--cols-md, 3), 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* --- VOICES --- */
.voices-band { padding: clamp(56px, 7vw, 104px) clamp(20px, 4vw, 48px); }
.voice-grid { display: flex; flex-direction: column; gap: 24px; max-width: 820px; margin: 40px auto 0; }
.voice { position: relative; display: flex; flex-direction: column; gap: 12px; min-width: 0; padding: 60px clamp(48px, 5vw, 68px) 62px; background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,44%20C90,16%20170,30%20250,30%20C340,30%20430,12%20520,26%20C558,31%20580,22%20600,38%20L600,84%20L0,84%20Z'/%3E%3C/svg%3E") top center/100% 84px no-repeat, url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,0%20L600,0%20L600,48%20C560,66%20490,52%20410,56%20C320,60%20240,72%20160,60%20C92,50%2040,68%200,52%20Z'/%3E%3C/svg%3E") bottom center/100% 84px no-repeat, linear-gradient(var(--bg-soft),var(--bg-soft)) center/100% calc(100% - 156px) no-repeat; }
.voice:nth-child(2n) { background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,38%20C80,18%20180,40%20270,32%20C360,24%20450,10%20540,28%20C572,34%20588,24%20600,42%20L600,84%20L0,84%20Z'/%3E%3C/svg%3E") top center/100% 84px no-repeat, url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,0%20L600,0%20L600,52%20C556,70%20480,56%20400,60%20C300,65%20220,50%20150,58%20C88,65%2036,72%200,50%20Z'/%3E%3C/svg%3E") bottom center/100% 84px no-repeat, linear-gradient(var(--bg-soft),var(--bg-soft)) center/100% calc(100% - 156px) no-repeat; }
.voice:nth-child(3n) { background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,44%20C90,16%20170,30%20250,30%20C340,30%20430,12%20520,26%20C558,31%20580,22%20600,38%20L600,84%20L0,84%20Z'/%3E%3C/svg%3E") top center/100% 84px no-repeat, url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,0%20L600,0%20L600,52%20C556,70%20480,56%20400,60%20C300,65%20220,50%20150,58%20C88,65%2036,72%200,50%20Z'/%3E%3C/svg%3E") bottom center/100% 84px no-repeat, linear-gradient(var(--bg-soft),var(--bg-soft)) center/100% calc(100% - 156px) no-repeat; }
.voice:nth-child(4n) { background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,38%20C80,18%20180,40%20270,32%20C360,24%20450,10%20540,28%20C572,34%20588,24%20600,42%20L600,84%20L0,84%20Z'/%3E%3C/svg%3E") top center/100% 84px no-repeat, url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%2084'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%230e1216'%20d='M0,0%20L600,0%20L600,48%20C560,66%20490,52%20410,56%20C320,60%20240,72%20160,60%20C92,50%2040,68%200,52%20Z'/%3E%3C/svg%3E") bottom center/100% 84px no-repeat, linear-gradient(var(--bg-soft),var(--bg-soft)) center/100% calc(100% - 156px) no-repeat; }
.voice::before { content: "\201C"; position: absolute; top: clamp(4px, 1.3vw, 12px); left: clamp(24px, 3vw, 44px); font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(104px, 11vw, 168px); line-height: 1; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; opacity: 0.8; pointer-events: none; }
.voice .quote { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-weight: 300; font-size: clamp(19px, 1.55vw, 23px); line-height: 1.45; color: var(--ink); }
.voice .who { display: flex; align-items: center; gap: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.voice .who .name { font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 13.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); line-height: 1.2; }
.voice .who .title { font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }

/* --- CTA CLOSER --- */
.closer { padding: clamp(64px, 8.5vw, 128px) clamp(20px, 4vw, 48px); text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.closer .blob { position: absolute; width: 620px; height: 620px; opacity: 0.10; filter: blur(80px); animation: morph 24s ease-in-out infinite alternate; pointer-events: none; background: var(--accent-gradient); }
.closer .blob.b1 { left: -240px; top: -160px; }
.closer .blob.b2 { right: -260px; bottom: -180px; animation-delay: -10s; }
.closer .content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.closer h2 { font-family: "Funnel Display", "Mona Sans", system-ui, sans-serif; font-size: clamp(48px, 8vw, 130px); line-height: 0.94; letter-spacing: -0.03em; margin-bottom: 28px; }
.closer p { max-width: 54ch; margin: 0 auto 40px; color: var(--ink-mute); font-size: 18px; line-height: 1.55; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  position: relative; overflow: hidden;
  padding: 18px 30px; border: 1px solid transparent; border-image: var(--accent-gradient) 1; cursor: pointer;
  font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.btn-primary::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--accent-gradient); transform: scaleX(0); transform-origin: left center; transition: transform 420ms cubic-bezier(0.22,1,0.36,1); }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary .l { position: relative; z-index: 1; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; transition: -webkit-text-fill-color 260ms ease 120ms, color 260ms ease 120ms; }
.btn-primary:hover .l { -webkit-text-fill-color: #fff; color: #fff; }

footer.site { padding: 28px clamp(20px, 4vw, 48px); display: flex; justify-content: center; align-items: center; border-top: 1px solid var(--line); font-family: "proxima-nova", "Mona Sans", system-ui, sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); text-align: center; }

/* --- reveal --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16,0.84,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero .slide { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
