/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --angle      { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1E1813;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --accent:    #B85C3A;
  --accent-2:  #96432A;
  --gold:      #C9A961;
  --gold-2:    #E8C77E;
  --line:      rgba(242,235,218,.12);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: .1; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ol, ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] { scroll-margin-top: var(--nav-h); }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.kicker {
  display: block; font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.kicker-center { text-align: center; }
.kicker.reveal, .section-title.reveal { transition-delay: .05s; }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); max-width: 22ch; margin-bottom: 1.5rem; }
.section-title-center { text-align: center; margin-inline: auto; }

.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography — hero + shared
   ============================================================= */
em { font-style: italic; color: var(--gold-2); }

/* =============================================================
   5. Components
   ============================================================= */

/* -- Buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
}
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #1a1108;
  box-shadow: 0 14px 34px -12px rgba(184,92,58,.55);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -14px rgba(201,169,97,.6);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.btn-whatsapp {
  background: var(--cream); color: var(--bg);
  padding: 1.15rem 2.3rem; font-size: 1.05rem;
  box-shadow: 0 20px 46px -16px rgba(242,235,218,.35);
}
.btn-whatsapp:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 26px 60px -14px rgba(242,235,218,.5); }

/* -- Nav -- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 300;
  height: var(--nav-h);
}
/* A dedicated layer carries the blur so `.nav` itself never gets a
   filter — filter/backdrop-filter on an ancestor of [data-nav-mobile]
   would make that fixed overlay position relative to the nav bar
   instead of the viewport (a real CSS containing-block gotcha). */
.nav-backdrop {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(14,11,9,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.nav.is-scrolled .nav-backdrop { opacity: 1; }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em; color: var(--cream);
}
.nav-brand span { color: var(--gold); margin-inline: .35em; }
.nav-links {
  display: none; align-items: center; gap: 2.1rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .25rem 0; font-size: .92rem; font-weight: 500; color: var(--cream-2);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  color: var(--bg); background: var(--gold); padding: .55rem 1.2rem; border-radius: 100px; font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { color: var(--bg); background: var(--gold-2); }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; width: 30px; padding: .5rem 0;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 959px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 0 0; z-index: 290;
    background: var(--bg-2); flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
    clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
  }
  .nav-links.is-open { clip-path: inset(0); display: flex; }
  .nav-link { font-size: 1.3rem; }
  .nav-cta { padding: .8rem 2rem; }
}

/* -- Stat cards -- */
.stat-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 1rem; }
.stat-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1.6rem; text-align: center;
  transition: transform .5s var(--ease-soft), border-color .4s;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(201,169,97,.4); }
.stat-value { font-family: var(--serif); font-size: 2rem; color: var(--cream); margin-bottom: .35rem; }
.stat-value--text { font-size: 1.25rem; }
.stat-label { font-size: .82rem; letter-spacing: .04em; color: var(--cream-3); text-transform: uppercase; }
.stat-detail { font-size: .74rem; color: var(--cream-3); margin-top: .6rem; line-height: 1.5; }

/* -- Tilt (pillars, collab, gallery) -- */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

.has-halo { position: relative; isolation: isolate; }
.has-halo::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(201,169,97,.35), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.has-halo:hover::before { opacity: 1; }

/* -- Pillars -- */
.pillars-grid { display: grid; gap: 1.6rem; margin-top: 3rem; }
@media (min-width: 720px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.pillar-media { aspect-ratio: 4/3; overflow: hidden; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft); }
.pillar-card:hover .pillar-media img { transform: scale(1.08); }
.pillar-n { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); padding: 1.6rem 1.6rem 0; }
.pillar-card h3 { font-size: 1.3rem; padding: .5rem 1.6rem 0; }
.pillar-card p { padding: .8rem 1.6rem 1.8rem; color: var(--cream-2); font-size: .95rem; }

/* -- About -- */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .8fr 1.2fr; gap: 4.5rem; } }
.about-figure {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
[data-reveal-mask] { clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease-soft); }
[data-reveal-mask].is-revealed { clip-path: inset(0); }
.about-text p { color: var(--cream-2); margin-bottom: 1.1rem; max-width: 58ch; }
.about-text strong { color: var(--gold-2); font-weight: 600; }

/* -- Timeline -- */
.timeline-list { position: relative; margin-top: 3rem; padding-left: 2rem; }
.timeline-list::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 3rem; padding-left: 1.8rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2rem; top: 4px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold); box-shadow: 0 0 0 5px var(--bg-2);
}
.timeline-year { display: block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.timeline-item h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.timeline-item p { color: var(--cream-2); max-width: 62ch; }

/* -- Press -- */
.press-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .press-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } }
.press-media { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/4; }
.press-media img { width: 100%; height: 100%; object-fit: cover; }
.press-quote {
  border-left: 2px solid var(--gold); padding-left: 1.3rem; margin: 1.6rem 0; font-family: var(--serif);
  font-size: 1.2rem; font-style: italic; color: var(--cream-2);
}
.press-quote cite { display: block; margin-top: .6rem; font-family: var(--sans); font-style: normal; font-size: .82rem; color: var(--cream-3); }

.collab-strip { margin-top: 4.5rem; text-align: center; }
.collab-label { font-size: .85rem; color: var(--cream-3); letter-spacing: .04em; margin-bottom: 1.5rem; }
.collab-row { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; }
.collab-card {
  width: 190px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-3);
  transition: transform .5s var(--ease-soft), border-color .4s;
}
@media (min-width: 720px)  { .collab-card { width: 230px; } }
@media (min-width: 1280px) { .collab-card { width: 260px; } }
.collab-card:hover { transform: translateY(-6px); border-color: rgba(201,169,97,.4); }
.collab-card img { aspect-ratio: 1; object-fit: cover; }
.collab-card figcaption { padding: .8rem; font-size: .88rem; color: var(--cream-2); }

/* -- Manifesto -- */
.manifesto { position: relative; padding-block: 7rem; text-align: center; overflow: clip; }
.manifesto-halo {
  position: absolute; inset: -60% -10% -60% -10%; z-index: -1;
  background: radial-gradient(45% 40% at 50% 50%, rgba(184,92,58,.28), transparent 70%);
  filter: blur(110px);
}
.manifesto-glyph { width: 42px; height: 42px; color: var(--gold); margin-inline: auto; margin-bottom: 2rem; opacity: .8; }
.manifesto-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.6rem); max-width: 20ch; margin-inline: auto; color: var(--cream);
  line-height: 1.3;
}
.manifesto-sign { margin-top: 2rem; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--gold); }

/* -- Gallery -- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: 3rem;
}
@media (min-width: 720px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; isolation: isolate;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,11,9,.75));
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.15) brightness(1.03); }
.gallery-item:hover::after { opacity: 1; }

.social-row { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .social-row { grid-template-columns: 1fr 1fr; } }
.social-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.7rem;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 18px; color: var(--gold);
  transition: transform .45s var(--ease-soft), border-color .4s;
}
.social-card span { color: var(--cream-2); font-size: .88rem; line-height: 1.4; }
.social-card strong { color: var(--cream); }
.social-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,.4); }

/* -- Lightbox -- */
.lightbox {
  position: fixed; inset: 0; z-index: 500; display: grid; place-items: center;
  background: rgba(10,8,6,.94); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
  padding: 2rem;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(92vw, 900px); }
.lightbox img { max-height: 80svh; border-radius: 10px; margin-inline: auto; }
.lightbox figcaption { text-align: center; color: var(--cream-2); margin-top: 1rem; font-size: .9rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; color: var(--cream);
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(242,235,218,.08);
}
.lightbox-close:hover { background: rgba(242,235,218,.18); }

/* -- Services -- */
.services-grid { display: grid; gap: 1.4rem; margin-top: 3rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  padding: 1.9rem 1.6rem; border-radius: 18px; background: var(--bg-3); border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), border-color .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,169,97,.4); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .7rem; color: var(--gold-2); }
.service-card p { font-size: .9rem; color: var(--cream-2); }
.services-cta { text-align: center; margin-top: 3rem; }

/* -- Contact -- */
.contact { position: relative; text-align: center; padding-block: 6rem; overflow: clip; }
.contact-halo {
  position: absolute; inset: -60% -10% -60% -10%; z-index: -1;
  background: radial-gradient(40% 45% at 50% 40%, rgba(201,169,97,.22), transparent 70%);
  filter: blur(100px);
}
.contact-text { max-width: 46ch; margin-inline: auto; color: var(--cream-2); margin-bottom: 2.4rem; }
.social-links { display: flex; justify-content: center; gap: 1.2rem; margin-top: 2.2rem; }
.social-links a {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--gold); transition: transform .4s var(--ease-soft), border-color .3s;
}
.social-links a:hover { transform: translateY(-3px); border-color: var(--gold); }

/* -- Footer -- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 3rem 2.2rem; }
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-glyph { width: 30px; height: 30px; color: var(--gold); opacity: .85; flex-shrink: 0; }
.footer-name { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer-alias { font-family: var(--serif); font-style: italic; font-size: .85rem; color: var(--gold-2); margin-top: .15rem; }
.footer-actions { display: flex; align-items: center; gap: 1.3rem; }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold);
  display: grid; place-items: center; transition: border-color .3s, transform .4s var(--ease-soft);
}
.footer-socials a:hover { border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  padding-top: 1.6rem; font-size: .78rem; color: var(--cream-3);
}
.footer-credit { color: var(--cream-3); }
@media (max-width: 539px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-actions { width: 100%; justify-content: space-between; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
}

/* -- Sound toggle -- */
.sound-toggle {
  position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 250;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(30,24,19,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--cream-3);
  display: grid; place-items: center; transition: color .3s, border-color .3s, transform .4s var(--ease-soft);
}
.sound-toggle:hover { transform: translateY(-3px); }
.sound-toggle[aria-pressed="true"] { color: var(--gold); border-color: rgba(201,169,97,.5); }
.sound-toggle .sound-waves { opacity: .35; transition: opacity .3s; }
.sound-toggle[aria-pressed="true"] .sound-waves { opacity: 1; }

/* -- Back to top (footer inline + floating) -- */
.back-to-top {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold);
  display: grid; place-items: center; transition: transform .4s var(--ease-soft), border-color .3s;
}
.back-to-top:hover { transform: translateY(-4px); border-color: var(--gold); }

.back-to-top-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 250;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(30,24,19,.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .4s var(--ease-soft), border-color .3s;
}
.back-to-top-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top-float:hover { border-color: var(--gold); transform: translateY(-3px); }
@media (max-width: 539px) { .back-to-top-float { width: 44px; height: 44px; right: 1rem; bottom: 1rem; } }

/* -- Splash loader (double safety: CSS + JS) -- */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1.05s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.splash-glyph { width: 46px; height: 46px; color: var(--gold); animation: splashPulse 1.8s ease-in-out infinite; }
@keyframes splashPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.splash-line { width: 120px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.splash-line::after {
  content: ""; position: absolute; inset: 0; width: 40%; background: var(--gold);
  animation: splashLine 1.4s ease-in-out infinite;
}
@keyframes splashLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@media (prefers-reduced-motion: reduce) {
  .splash-glyph, .splash-line::after { animation-duration: 2.6s; }
}

/* =============================================================
   6. Sections
   ============================================================= */
section { position: relative; padding-block: clamp(4.5rem, 8vw, 8rem); }

/* -- Hero -- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: clip; padding-block: 0 5rem;
}
.hero-bg { position: absolute; top: -15%; bottom: -15%; left: 0; right: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%;
  animation: ambientZoom 30s ease-in-out infinite;
}
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.04); }
  50%      { transform: scale(1.12); }
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,9,.55) 0%, rgba(14,11,9,.35) 35%, rgba(14,11,9,.92) 100%),
    linear-gradient(90deg, rgba(14,11,9,.75) 0%, transparent 55%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -2;
  background:
    radial-gradient(50% 45% at var(--mesh-x,30%) var(--mesh-y,40%), rgba(184,92,58,.4), transparent 60%),
    conic-gradient(from var(--mesh-angle,0deg), rgba(201,169,97,.18), transparent 30%, rgba(184,92,58,.16), transparent 70%);
  filter: blur(90px) saturate(130%);
  opacity: .8; mix-blend-mode: screen;
  animation: meshDrift 26s linear infinite;
}
@keyframes meshDrift {
  0%   { --mesh-angle: 0deg; }
  100% { --mesh-angle: 360deg; }
}
.hero-grain {
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
.hero-inner { position: relative; z-index: 1; }
.hero-meta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-2);
  margin-bottom: 1.6rem;
}
.hero-glyph { width: 22px; height: 22px; color: var(--gold); }
.hero-meta-dot { color: var(--gold); }
.hero-title {
  font-size: clamp(2.6rem, 8vw, 6rem); line-height: .98; max-width: 16ch; margin-bottom: 1.1rem;
  color: var(--cream);
}
.hero-alias {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--gold-2); margin-bottom: .6rem;
}
.hero-roles { font-size: 1.05rem; color: var(--cream-2); margin-bottom: 1.2rem; font-weight: 500; }
.hero-tagline { max-width: 42ch; font-size: 1.1rem; color: var(--cream-2); margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 22px; height: 36px; border: 1.5px solid var(--line); border-radius: 100px;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 100px; background: var(--gold);
  margin: 6px auto 0; animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* -- Stats -- */
.stats { padding-block: clamp(3rem, 6vw, 4.5rem); }
.stats-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* -- alternating warm section backgrounds -- */
.about, .press, .services { background: var(--bg-2); }
.pillars, .timeline, .gallery, .contact { background: var(--bg); }
.manifesto { background: var(--bg-2); }

/* =============================================================
   7. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero { align-items: flex-end; padding-bottom: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .collab-card { width: 42vw; max-width: 190px; }
}

/* =============================================================
   8. Reduced motion — only truly intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-mesh { animation: none; }
  .scroll-cue span { animation: none; }
}
