/* =====================================================
   BRIOO AGENCY v4
   Senior developer standard. Every decision justified.
   Dark base. Gold accent. Cormorant display.
   Motion: one element at a time, purposeful only.
===================================================== */

/* RESET + TOKENS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }

:root {
  /* Core palette */
  --ink:      #060608;
  --ink2:     #0d0d12;
  --ink3:     #111118;
  --black:    #030305;
  --gold:     #c8a46b;
  --gold-hi:  #e4cc9a;
  --gold-lo:  var(--gold-12);
  --gold-bd:  rgba(200,164,107,.16);
  --gold-bd2: rgba(200,164,107,.32);
  --accent:   #2ebf8c;
  --text:     rgba(255,255,255,.9);
  --text-2:   rgba(255,255,255,.52);
  --text-3:   rgba(255,255,255,.34);
  --cream:    #f0e8da;

  /* Type */
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(88px, 11vw, 152px);
  --max: 1240px;

  /* Easing */
  --out: cubic-bezier(.16, 1, .3, 1);
  --io:  cubic-bezier(.4, 0, .2, 1);

  /* Metal gradient — headings only */
  --metal: linear-gradient(120deg, #fff 5%, #f0dcae 32%, #c8a46b 58%, #e8d0a0 84%);
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ambient light — static, no animation */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 8% 8%, rgba(200,164,107,.052) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 92%, rgba(200,164,107,.032) 0%, transparent 55%);
}

/* Noise texture */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: -9999px; top: 4px; z-index: 9999;
  background: var(--gold); color: var(--ink);
  padding: 12px 22px; font-weight: 700; font-size: .875rem; text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus { left: 4px; }

/* SCROLL BAR */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 9000; width: 0;
  transition: none;
}

/* ======================================================
   NAVIGATION
====================================================== */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 68px; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s var(--io), border-color .35s;
  border-bottom: 1px solid transparent;
}
#site-nav.past {
  background: rgba(6,6,8,.92);
  border-color: var(--gold-bd);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 36px; width: auto;
  filter: drop-shadow(0 0 10px rgba(200,164,107,.26));
  transition: height .3s var(--out);
}
#site-nav.past .nav-logo img { height: 30px; }
.nav-logo span {
  font-family: var(--display);
  font-size: 1.375rem; font-weight: 700; letter-spacing: .02em;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
#site-nav nav {
  display: flex; align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
#site-nav nav a {
  font-size: .6875rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  position: relative; padding-bottom: 2px;
  transition: color .22s;
}
#site-nav nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .28s var(--out);
}
#site-nav nav a:hover, #site-nav nav a.cur { color: var(--text); }
#site-nav nav a:hover::after, #site-nav nav a.cur::after { width: 100%; }
#site-nav .nav-book {
  background: var(--gold); color: var(--ink);
  padding: 8px 24px; border-radius: 4px;
  font-weight: 600; letter-spacing: .06em;
  font-size: .75rem;
  transition: background .25s, transform .25s;
}
#site-nav .nav-book::after { display: none; }
#site-nav .nav-book:hover { background: var(--gold-hi); transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 8px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: .3s var(--out);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(6,6,8,.97); backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transform: translateY(-100%);
  transition: transform .5s var(--out);
}
.mobile-nav[aria-hidden="false"] { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--display); font-size: 2.25rem; font-weight: 600;
  color: var(--text-2); text-decoration: none;
  transition: color .22s;
}
.mobile-nav a:hover { color: var(--gold); }
.mob-book {
  font-family: var(--body); font-size: .875rem;
  background: var(--gold); color: var(--ink);
  padding: 13px 38px; border-radius: 4px;
  font-weight: 600; letter-spacing: .06em;
  margin-top: 8px;
}

/* ======================================================
   BUTTONS
====================================================== */
.btn-primary, .btn-ghost, .btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 4px;
  font-family: var(--body); font-size: .875rem; font-weight: 600;
  letter-spacing: .01em; text-decoration: none; cursor: pointer; border: none;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.38) 50%, transparent 75%);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .6s var(--out);
}
.btn-primary:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,164,107,.28); }
.btn-primary:hover::after { transform: translateX(130%) skewX(-15deg); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--gold-bd2);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-lo); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink); color: var(--gold);
  border: 1px solid var(--gold-bd2);
}
.btn-dark:hover { border-color: var(--gold); background: var(--gold-lo); transform: translateY(-2px); }

/* ======================================================
   HERO
====================================================== */
.hero {
  min-height: 100svh;
  padding: calc(68px + 64px) var(--gutter) 80px;
  display: flex; align-items: center;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; max-width: var(--max); margin: 0 auto; width: 100%;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 20px;
  animation: fadeUp .6s var(--out) .05s both;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -.01em;
  margin-bottom: 24px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; animation: lineUp .95s var(--out) both; }
.hero h1 .line:nth-child(1) span { animation-delay: .08s; }
.hero h1 .line:nth-child(2) span { animation-delay: .18s; }
.hero h1 .line:nth-child(3) span { animation-delay: .28s; }
.hero h1 .italic {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 1rem; color: var(--text-2); line-height: 1.85;
  max-width: 440px; margin-bottom: 32px;
  animation: fadeUp .75s var(--out) .42s both;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .75s var(--out) .54s both;
}
.trust-list {
  list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 12px;
  animation: fadeUp .75s var(--out) .66s both;
}
.trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--text-2);
}
.td {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
@keyframes lineUp { from { transform: translateY(108%); } to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Pipeline card */
.pipeline-card {
  background: var(--ink-overlay);
  border: 1px solid var(--gold-bd);
  border-radius: 10px; overflow: hidden;
  animation: fadeUp .9s var(--out) .32s both;
}
.pc-label {
  padding: 16px 20px 0;
  font-size: .6875rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-3);
}
.pc-body {
  position: relative; padding: 16px 24px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.pc-track {
  position: absolute; left: 43px; top: 22px; bottom: 24px;
  width: 1px; background: var(--gold-bd);
}
.pc-pulse {
  position: absolute; left: 43px; top: 22px;
  width: 5px; height: 5px; margin-left: -2px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 3px rgba(200,164,107,.52);
  animation: pulseDrop 5.8s ease-in-out infinite;
}
@keyframes pulseDrop {
  0%   { top: 22px; opacity: 0; }
  5%   { opacity: 1; }
  30%  { top: calc(22px + 25%); }
  56%  { top: calc(22px + 52%); }
  82%  { top: calc(100% - 24px - 5px); opacity: 1; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}
.pc-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; position: relative; z-index: 1;
}
.pc-row + .pc-row { border-top: 1px solid rgba(200,164,107,.07); }
.pc-node {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold-bd); background: var(--ink2);
  display: flex; align-items: center; justify-content: center; color: var(--text-3);
  transition: color .4s, border-color .4s, box-shadow .4s;
  animation: nodeGold 5.8s ease-in-out infinite;
}
.pc-node svg { width: 15px; height: 15px; }
.pc-row:nth-child(1) .pc-node { animation-delay: 0s; }
.pc-row:nth-child(2) .pc-node { animation-delay: 1.42s; }
.pc-row:nth-child(3) .pc-node { animation-delay: 2.84s; }
.pc-row:nth-child(4) .pc-node { animation-delay: 4.26s; }
.pc-node.accent { color: var(--accent); border-color: var(--accent-bd); animation-name: nodeGreen; }
@keyframes nodeGold {
  0%   { box-shadow: none; border-color: var(--gold-bd); color: var(--text-3); }
  6%   { box-shadow: 0 0 16px 5px rgba(200,164,107,.4); border-color: var(--gold); color: var(--gold-warm); }
  20%  { box-shadow: none; border-color: var(--gold-bd); color: var(--text-3); }
  100% { box-shadow: none; border-color: var(--gold-bd); color: var(--text-3); }
}
@keyframes nodeGreen {
  0%   { box-shadow: none; border-color: var(--accent-bd); color: var(--accent); }
  6%   { box-shadow: 0 0 16px 5px rgba(46,191,140,.38); border-color: var(--accent); color: var(--accent-hi); }
  20%  { box-shadow: none; border-color: var(--accent-bd); color: var(--accent); }
  100% { box-shadow: none; border-color: var(--accent-bd); color: var(--accent); }
}
.pc-info strong {
  display: block; font-size: .875rem; font-weight: 600; color: var(--cream); margin-bottom: 0;
}
.pc-info span { display: block; font-size: .75rem; color: var(--text-2); line-height: 1.4; }
@media (prefers-reduced-motion: reduce) {
  .pc-pulse { display: none; }
  .pc-node { animation: none !important; color: var(--gold); }
  .pc-node.accent { color: var(--accent); }
}

/* ======================================================
   NUMBERS
====================================================== */
.numbers {
  background: var(--ink2);
  border-top: 1px solid var(--gold-bd);
  border-bottom: 1px solid var(--gold-bd);
}
.numbers-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: var(--max); margin: 0 auto;
}
.num-block {
  padding: 52px 32px;
  border-right: 1px solid var(--gold-bd);
  text-align: center;
  transition: background .3s;
}
.num-block:last-child { border-right: none; }
.num-block:hover { background: var(--ink3); }
.num-figure {
  font-family: var(--display); font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700; line-height: 1;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.num-block p { font-size: .75rem; color: var(--text-2); line-height: 1.6; margin-bottom: 8px; }
.num-block cite { font-size: .6875rem; color: var(--text-3); letter-spacing: .04em; font-style: normal; }

/* ======================================================
   AUDIENCES
====================================================== */
.audiences {
  padding: var(--section-y) var(--gutter);
  background: var(--ink3);
}
.aud-intro {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.aud-intro h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.aud-intro h2 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.aud-intro p { font-size: 1rem; color: var(--text-2); line-height: 1.85; }
.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; max-width: var(--max); margin: 0 auto;
  border-radius: 8px; overflow: hidden;
}
.aud-card { padding: 52px 44px; position: relative; overflow: hidden; }
.aud-brand {
  background: linear-gradient(145deg,#d4ad79 0%,#c8a46b 40%,#9c7840 75%,#6f5226 100%);
  color: var(--ink);
}
.aud-creator { background: var(--ink2); border: 1px solid var(--gold-bd); }
.aud-tag {
  font-size: .6875rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; display: block; margin-bottom: 16px;
}
.aud-brand .aud-tag { color: var(--ink-48); }
.aud-creator .aud-tag { color: var(--gold); }
.aud-card h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.aud-creator h3 { color: var(--text); }
.aud-card blockquote {
  padding: 12px 16px; margin-bottom: 24px;
  font-size: .875rem; font-style: italic; line-height: 1.7;
  border-left: 2px solid;
  border-radius: 0 4px 4px 0;
}
.aud-brand blockquote { background: var(--ink-10); border-color: var(--ink-28); color: var(--ink-62); }
.aud-creator blockquote { background: var(--gold-06); border-color: var(--gold); color: var(--text-2); }
.aud-card p { font-size: .875rem; line-height: 1.85; margin-bottom: 32px; }
.aud-brand p { color: var(--ink-66); }
.aud-creator p { color: var(--text-2); }

/* ======================================================
   SERVICES STRIP
====================================================== */
.services-strip {
  padding: var(--section-y) var(--gutter);
  background: var(--ink2);
}
.ss-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: var(--max); margin: 0 auto 48px; gap: 32px; flex-wrap: wrap;
}
.ss-header h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.01em;
}
.ss-header h2 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ss-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; flex-shrink: 0; white-space: nowrap;
  transition: gap .25s var(--out);
}
.ss-link svg { width: 14px; height: 14px; }
.ss-link:hover { gap: 8px; }
.ss-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: var(--max); margin: 0 auto;
  border: 1px solid var(--gold-bd); border-radius: 8px; overflow: hidden;
}
.ss-item {
  padding: 36px 28px;
  background: var(--ink);
  text-decoration: none; color: inherit;
  border-right: 1px solid var(--gold-bd);
  transition: background .3s;
  display: block;
}
.ss-item:last-child { border-right: none; }
.ss-item:hover { background: var(--ink-40); }
.ss-num {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); opacity: .35; margin-bottom: 16px; line-height: 1;
}
.ss-item h3 {
  font-family: var(--display); font-size: 1.125rem; font-weight: 700;
  margin-bottom: 8px; color: var(--cream);
  transition: color .25s;
}
.ss-item:hover h3 { color: var(--gold-hi); }
.ss-item p { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ======================================================
   PRINCIPLES
====================================================== */
.principles {
  padding: var(--section-y) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: var(--max); margin: 0 auto;
}
.pr-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.pr-left h2 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pr-left p { font-size: .875rem; color: var(--text-2); line-height: 1.85; }
.pr-right { display: flex; flex-direction: column; gap: 0; }
.pr-item {
  display: flex; gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-bd);
}
.pr-item:first-child { border-top: 1px solid var(--gold-bd); }
.pr-icon {
  width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.pr-item h4 {
  font-family: var(--display); font-size: 1.125rem; font-weight: 700;
  margin-bottom: 8px;
}
.pr-item p { font-size: .875rem; color: var(--text-2); line-height: 1.78; }

/* ======================================================
   FOUNDER
====================================================== */
.founder {
  padding: var(--section-y) var(--gutter);
  background: var(--ink2);
  border-top: 1px solid var(--gold-bd);
}
.founder-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.f-mark {
  font-family: var(--display); font-size: 5.5rem; line-height: .8;
  color: var(--gold-12); margin-bottom: -8px;
}
.f-quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  font-weight: 600; line-height: 1.32;
  color: var(--text); font-style: normal;
  margin-bottom: 24px;
}
.f-rule { width: 38px; height: 1px; background: var(--gold); margin: 0 auto 26px; }
.f-body { font-size: .875rem; color: var(--text-2); line-height: 1.9; margin-bottom: 24px; }
.f-sig {
  font-family: var(--display); font-style: italic;
  font-size: 1rem; color: var(--cream);
}
.f-sig span {
  display: block; font-family: var(--body); font-style: normal;
  font-size: .6875rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-3); margin-top: 4px;
}

/* ======================================================
   CLOSING CTA
====================================================== */
.closing {
  padding: clamp(100px, 14vw, 180px) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(900px,110vw); height: min(900px,110vw);
  background: radial-gradient(circle, var(--gold-06) 0%, transparent 62%);
  pointer-events: none;
}
.closing h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  font-weight: 700; line-height: .96; letter-spacing: -.02em;
  margin-bottom: 20px; position: relative;
}
.closing h2 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.closing > .vis { position: relative; }
.closing p {
  font-size: 1rem; color: var(--text-2); max-width: 400px;
  margin: 0 auto 36px; line-height: 1.85; position: relative;
}
.closing-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.closing-email {
  margin-top: 22px; font-size: .75rem; color: var(--text-3); position: relative;
}
.closing-email a { color: var(--gold); text-decoration: none; }
.closing-email a:hover { color: var(--gold-hi); }

/* ======================================================
   FOOTER
====================================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-bd);
  padding: 64px var(--gutter) 0;
}
.foot-top {
  display: grid; grid-template-columns: 1.8fr 1fr;
  gap: 64px; max-width: var(--max); margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gold-bd);
}
.foot-name {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.foot-brand p { font-size: .875rem; color: var(--text-2); line-height: 1.85; max-width: 270px; margin-bottom: 16px; }
.foot-brand a { font-size: .75rem; color: var(--text-3); text-decoration: none; transition: color .22s; }
.foot-brand a:hover { color: var(--gold); }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.foot-col h5 {
  font-size: .6875rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 16px;
}
.foot-col a, .foot-col button {
  display: block; font-size: .875rem; color: var(--text-2); text-decoration: none;
  margin-bottom: 8px; transition: color .22s, transform .22s;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--body);
  padding: 0;
}
.foot-col a:hover, .foot-col button:hover { color: var(--gold); transform: translateX(3px); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 28px;
  max-width: var(--max); margin: 0 auto;
}
.foot-logo-row {
  display: flex; align-items: center; gap: 8px;
}
.foot-logo-row img { height: 26px; width: auto; filter: drop-shadow(0 0 6px rgba(200,164,107,.18)); }
.foot-logo-row span {
  font-family: var(--display); font-size: 1.125rem; font-weight: 700;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot-bottom p { font-size: .75rem; color: var(--text-3); }
.foot-legal { display: flex; gap: 16px; }
.foot-legal button {
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: .75rem; color: var(--text-3);
  transition: color .22s; padding: 0;
}
.foot-legal button:hover { color: var(--gold); }

/* ======================================================
   SCROLL REVEAL  — simple, one class
====================================================== */
.vis {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s var(--out), transform .75s var(--out);
}
.vis.on { opacity: 1; transform: translateY(0); }

/* ======================================================
   MODAL
====================================================== */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(3,3,3,.78); backdrop-filter: blur(6px); animation: mfade .28s; }
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  position: relative; background: var(--ink2);
  border: 1px solid var(--gold-bd2); border-radius: 8px;
  max-width: 620px; width: 100%; max-height: 82vh; overflow-y: auto;
  padding: 44px clamp(22px, 5vw, 52px);
  animation: mup .35s var(--out);
}
@keyframes mup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: none; border: 1px solid var(--gold-bd); cursor: pointer;
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: all .22s;
}
.modal-x svg { width: 14px; height: 14px; }
.modal-x:hover { border-color: var(--gold); background: var(--gold-lo); transform: rotate(90deg); }
.modal-box h2 {
  font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.modal-box .mu { font-size: .6875rem; color: var(--text-3); letter-spacing: .05em; margin-bottom: 20px; }
.modal-box p { color: var(--text-2); line-height: 1.85; margin-bottom: 16px; font-size: .875rem; }
.modal-box ul { list-style: none; margin-bottom: 16px; }
.modal-box li {
  color: var(--text-2); padding: 9px 0;
  border-bottom: 1px solid var(--gold-bd);
  font-size: .875rem; display: flex; gap: 8px;
}
.modal-box li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.modal-box li strong { color: var(--cream); font-weight: 600; }
.modal-box a { color: var(--gold); text-decoration: none; }

/* ======================================================
   SERVICES PAGE
====================================================== */
.shero {
  padding: calc(68px + 70px) var(--gutter) 64px;
  background: var(--ink); position: relative; overflow: hidden;
}
.shero::after {
  content: ''; position: absolute; top: -20%; right: -8%;
  width: 50%; height: 130%;
  background: radial-gradient(circle, rgba(200,164,107,.055) 0%, transparent 62%);
  pointer-events: none;
}
.shero-inner { max-width: 720px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color .22s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.16); }
.breadcrumb .here { color: var(--gold); }
.shero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.shero h1 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shero p { font-size: 1rem; color: var(--text-2); line-height: 1.85; max-width: 560px; }

.sticky-nav {
  position: sticky; top: 68px; z-index: 600;
  background: rgba(6,6,8,.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-bd);
  transition: top .3s var(--out);
}
.sn-inner {
  display: flex; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter); overflow-x: auto; scrollbar-width: none;
  gap: 2px;
}
.sn-inner::-webkit-scrollbar { display: none; }
.sn-inner a {
  flex-shrink: 0; padding: 12px 16px;
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--text-3); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .22s, border-color .22s; white-space: nowrap;
}
.sn-inner a:hover { color: var(--text-2); }
.sn-inner a.on { color: var(--gold); border-color: var(--gold); }

.svc-section { padding: var(--section-y) var(--gutter); }
.svc-section:nth-child(odd) { background: var(--ink); }
.svc-section:nth-child(even) { background: var(--ink2); }
.svc-head {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 52px);
  max-width: var(--max); margin: 0 auto; align-items: start;
}
.svc-n {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700; line-height: .8;
  background: var(--metal); -webkit-background-clip: text; background-clip: text;
  color: transparent; opacity: .75;
}
.svc-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 16px;
}
.svc-title em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svc-lead { font-size: 1rem; color: var(--text-2); line-height: 1.85; max-width: 580px; }
.svc-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  max-width: var(--max); margin: 38px auto 0;
  border: 1px solid var(--gold-bd); border-radius: 6px; overflow: hidden;
}
.svc-col { padding: 30px 28px; background: var(--ink3); }
.svc-col h4 {
  font-size: .6875rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.svc-col ul { list-style: none; }
.svc-col li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--gold-bd);
  font-size: .875rem; color: var(--text-2); line-height: 1.6;
}
.svc-col li:last-child { border-bottom: none; }
.chk {
  flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%;
  border: 1px solid var(--gold-bd2);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.chk svg { width: 10px; height: 10px; color: var(--accent); }
.svc-pull {
  max-width: var(--max); margin: 32px auto 0;
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.5;
  color: var(--cream); padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.svc-pull em {
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic;
}

/* FAQ */
.faq-tabs { display: inline-flex; gap: 2px; padding: 4px; background: var(--ink3); border: 1px solid var(--gold-bd); border-radius: 4px; margin: 26px 0 6px; }
.faq-tab {
  padding: 8px 24px; border-radius: 3px; background: none; border: none;
  color: var(--text-2); font-family: var(--body); font-size: .6875rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .25s var(--out);
}
.faq-tab:hover { color: var(--text); }
.faq-tab.on { background: var(--gold); color: var(--ink); }
.faq-list { max-width: 720px; margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--gold-bd); }
.faq-item.hide { display: none; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 2px; background: none; border: none;
  text-align: left; cursor: pointer;
  font-family: var(--body); font-size: 1rem; font-weight: 600;
  color: var(--cream); transition: color .22s;
}
.faq-q:hover { color: var(--gold); }
.faq-plus { position: relative; width: 15px; height: 15px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform .32s var(--out), opacity .22s;
}
.faq-plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .42s var(--out); }
.faq-item.open .faq-ans { max-height: 400px; }
.faq-ans p { padding: 0 2px 20px; font-size: .875rem; color: var(--text-2); line-height: 1.85; max-width: 620px; }

/* ======================================================
   SCROLLBAR
====================================================== */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-20); }



/* ======================================================
   TRACTION
====================================================== */
.traction {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--gold-bd);
}
.traction-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: var(--max); margin: 0 auto;
  align-items: start;
}
.tr-tag {
  display: inline-block;
  font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.tr-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.01em;
}
.tr-left h2 em {
  font-style: italic;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tr-right {
  display: flex; flex-direction: column; gap: 0;
}
.tr-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-bd);
  display: flex; gap: 24px; align-items: flex-start;
}
.tr-stat:first-child { border-top: 1px solid var(--gold-bd); }
.tr-num {
  font-family: var(--display); font-size: 2.25rem; font-weight: 700;
  line-height: 1;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  flex-shrink: 0; min-width: 72px;
}
.tr-stat p { font-size: .875rem; color: var(--text-2); line-height: 1.75; padding-top: 4px; }
@media (max-width: 768px) {
  .traction-inner { grid-template-columns: 1fr; gap: 40px; }
  .tr-num { min-width: 56px; font-size: 1.75rem; }
}
/* ======================================================
   FOCUS MANAGEMENT — WCAG 2.4.7
====================================================== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(200,164,107,.18);
}
.pipeline-card:focus-visible,
.pc-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.faq-q:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.modal-x:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1100px) {
  #site-nav nav { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .numbers-inner { grid-template-columns: repeat(2,1fr); }
  .ss-grid { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .principles { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  #site-nav { height: 60px; padding: 0 20px; }
  .sticky-nav { top: 60px; }
  .hero { padding-top: calc(60px + 40px); min-height: auto; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-card { padding: 38px 24px; }
  .numbers-inner { grid-template-columns: 1fr; }
  .num-block { border-right: none; border-bottom: 1px solid var(--gold-bd); }
  .num-block:last-child { border-bottom: none; }
  .ss-grid { grid-template-columns: 1fr; }
  .ss-header { flex-direction: column; align-items: flex-start; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .svc-head { grid-template-columns: 1fr; gap: 8px; }
  .svc-n { font-size: 3rem; }
  .svc-cols { grid-template-columns: 1fr; }
  section { padding-left: 20px; padding-right: 20px; }
  .hero, .numbers, .audiences, .services-strip, .principles, .founder, .closing { padding-left: 20px; padding-right: 20px; }
  .faq-tabs { width: 100%; display: flex; }
  .faq-tab { flex: 1; text-align: center; padding: 8px 8px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .nav-logo span { display: none; }
  .foot-cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .vis { opacity: 1 !important; transform: none !important; }
  .hero-tag, .hero h1, .hero-sub, .hero-cta, .trust-list, .pipeline-card { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero h1 .line span { animation: none !important; transform: none !important; }
  .pc-pulse { display: none; }
  .pc-node { animation: none !important; color: var(--gold); }
  .pc-node.accent { color: var(--accent); }
}
