/* ==========================================================================
   XR AGENCY — design system: ivory · near-black · metallic gold
   Fraunces display · Inter body · one dominant CTA · conversion-first
   ========================================================================== */

:root {
  --paper:       #f7f3ea;
  --paper-2:     #efe7d6;
  --card:        #fffdf7;
  --ink:         #17140f;
  --ink-2:       #443d31;
  --muted:       #766c5b;
  --line:        #e5dcc7;
  --gold:        #9a7b22;
  --gold-2:      #cb9a3a;
  --gold-3:      #f0d98a;
  --black:       #121110;
  --black-2:     #1b1917;
  --black-line:  #332e26;
  --cream:       #f4ebd4;
  --cream-mut:   #b7ab8f;
  --ink-on-gold: #1c1602;
  --radius:      14px;
  --radius-sm:   8px;
  --maxw:        1200px;
  --shadow:      0 24px 60px rgba(40,32,10,.14);
  --shadow-sm:   0 8px 28px rgba(40,32,10,.10);
  --font:   "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --display:"Fraunces", Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family:var(--font); background:var(--paper); color:var(--ink);
       line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 26px; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family:var(--display); font-weight:500; line-height:1.08;
               letter-spacing:-.015em; margin:0 0 .5em; color:var(--ink); }
h1 { font-size:clamp(2.5rem,5.6vw,4.6rem); font-weight:400; }
h2 { font-size:clamp(1.9rem,3.6vw,2.9rem); }
h3 { font-size:clamp(1.25rem,2vw,1.6rem); }
p  { margin:0 0 1rem; color:var(--muted); }
.lead { font-size:clamp(1.08rem,1.5vw,1.32rem); color:var(--ink-2); line-height:1.6; }
strong { color:var(--ink); font-weight:600; }

.eyebrow { display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font); font-size:.78rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold); margin-bottom:1.1rem; }
.eyebrow::before { content:""; width:26px; height:1px; background:var(--gold-2); display:inline-block; }
.eyebrow.plain::before { display:none; }
.accent    { color:var(--gold); }
.serif-em  { font-family:var(--display); font-style:italic; font-weight:400; }

/* ── Header / Nav ── */
.site-header {
  position:sticky; top:0; z-index:100;
  background:rgba(247,243,234,.92);
  backdrop-filter:saturate(150%) blur(14px);
  border-bottom:1px solid var(--line);
  transition: background .3s;
}
.site-header.scrolled { background:rgba(247,243,234,.98); }
.nav { display:flex; align-items:center; justify-content:space-between; height:72px; gap:20px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand img { height:56px; width:auto; }
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0; }
.nav-links a { color:var(--ink-2); font-size:.9rem; font-weight:500;
               letter-spacing:.01em; transition:color .15s; white-space:nowrap; }
.nav-links a:hover,
.nav-links a.active { color:var(--gold); }
.nav-cta  { display:flex; align-items:center; gap:12px; }
.nav-toggle {
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:40px; height:40px; background:none; border:0; color:var(--ink); cursor:pointer; padding:8px;
}
.nav-toggle svg { width:26px; height:26px; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font); font-weight:600; font-size:.93rem; letter-spacing:.02em;
  padding:13px 28px; border-radius:999px; border:1.5px solid transparent; cursor:pointer;
  transition:transform .12s ease, box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space:nowrap; text-decoration:none;
}
.btn:active { transform:translateY(1px); }

/* Primary: crisp near-black pill — readable on ivory header */
.btn-primary { background:linear-gradient(135deg, var(--gold-2), var(--gold-3)); color:var(--ink-on-gold); border-color:var(--gold-2); }
.btn-primary:hover { background:linear-gradient(135deg, var(--gold-3), var(--gold-2)); border-color:var(--gold-3); transform:translateY(-1px); box-shadow:0 8px 24px rgba(154,123,34,.35); }

/* Gold fill: for CTAs on dark / hero backgrounds */
.btn-gold { background:var(--gold-2); color:var(--ink-on-gold); border-color:var(--gold-2); }
.btn-gold:hover { background:var(--gold-3); border-color:var(--gold-3); transform:translateY(-1px); box-shadow:0 8px 28px rgba(203,154,58,.42); }

.btn-dark  { background:var(--ink); color:var(--cream); border-color:var(--ink); }
.btn-dark:hover { background:#000; transform:translateY(-1px); }

.btn-ghost { background:transparent; color:var(--gold); border-color:var(--gold-2); }
.btn-ghost:hover { background:var(--gold-2); color:var(--ink-on-gold); border-color:var(--gold-2); }
.btn-ghost.on-dark { color:var(--gold-3); border-color:var(--gold-2); }
.btn-ghost.on-dark:hover { background:var(--gold-2); color:var(--ink-on-gold); border-color:var(--gold-2); }

.btn-sm  { padding:10px 20px; font-size:.86rem; }
.btn-lg  { padding:16px 36px; font-size:1rem; }
.btn-block { width:100%; justify-content:center; }

/* ── Sections ── */
section { position:relative; }
.section    { padding:100px 0; }
.section-sm { padding:60px 0; }
.section.alt  { background:var(--paper-2); }
.section.dark { background:var(--black); color:var(--cream); }
.on-dark      { color:var(--cream); }
.section.dark h1,.section.dark h2,.section.dark h3,
.on-dark h1,.on-dark h2,.on-dark h3 { color:#fff; }
.section.dark p,.on-dark p           { color:var(--cream-mut); }
.section.dark .lead,.on-dark .lead   { color:var(--cream); }
.section.dark strong,.on-dark strong { color:#fff; }
.section-head { max-width:780px; margin-bottom:56px; }
.section-head.center { margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow::after { content:""; width:26px; height:1px; background:var(--gold-2); display:inline-block; }

/* ── Hero ── */
.hero {
  position:relative; min-height:100svh; display:flex; flex-direction:column;
  justify-content:flex-end; overflow:hidden; padding-bottom:80px;
}
.hero-bg { position:absolute; inset:0; z-index:0; background:var(--black); }
.hero-bg video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:rgba(0,0,0,.33);
}
.hero-content  { position:relative; z-index:1; max-width:760px; }
.hero-eyebrow  { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.hero-eyebrow span { font-size:.78rem; font-weight:700; letter-spacing:.12em;
                     color:var(--gold-2); text-transform:uppercase; text-shadow:0 1px 6px rgba(0,0,0,.55); }
.hero-eyebrow::before { content:''; display:block; width:32px; height:2px; background:var(--gold-2); }
.hero h1 {
  font-family:var(--display); font-size:clamp(3rem,6vw,5.2rem); line-height:1.08;
  font-weight:400; color:#fff; margin:0 0 28px;
  text-shadow:0 2px 20px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.7);
}
.hero h1 em { font-style:italic; color:var(--gold-3); }
.hero-sub {
  font-size:clamp(1rem,1.4vw,1.15rem); color:rgba(255,255,255,.93);
  max-width:580px; line-height:1.6; margin-bottom:36px;
  text-shadow:0 1px 10px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.85);
}
.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.hero-trust   { font-size:.8rem; color:rgba(255,255,255,.55); letter-spacing:.06em;
                text-transform:uppercase; }
/* Hero: .wrap content must be above the overlay */
.hero > .wrap { position:relative; z-index:1; }
.hero .hero-content { position:relative; z-index:1; }


/* ── Page hero (inner pages) ── */
.page-hero { padding:92px 0 52px; }
.page-hero h1 { max-width:20ch; }
.page-hero .lead { max-width:62ch; }
.page-hero.dark { background:var(--black); color:var(--cream); padding-bottom:64px; }
.page-hero.dark h1 { color:#fff; text-shadow:0 2px 20px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.8); }
.page-hero.dark p  { color:var(--cream-mut); text-shadow:0 1px 8px rgba(0,0,0,.5); }

/* ── Page hero background image (subpages) ── */
.page-hero.dark { position:relative; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; z-index:0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; display:block; }
.page-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:transparent;
}
.page-hero.dark:has(.cs-hero-wrap) .page-hero-bg::after {
  background:transparent;
}
.page-hero.dark .wrap { position:relative; z-index:1; }

/* ── Page hero: enforce consistent 16:8 image frame across subpages ── */
.page-hero.dark { min-height:50vw; max-height:800px; }
@media (max-width:780px) {
  .page-hero.dark { min-height:0; max-height:none; }
}

/* ── Page hero: shift text block down to lower third (desktop only) ── */
@media (min-width:781px) {
  .page-hero.dark { display:flex; flex-direction:column; justify-content:flex-end; }
  .page-hero.dark .wrap { padding-top:0; }
}

/* ── Proof bar / Logo Ticker ── */
.proofbar {
  background:var(--black); color:var(--cream);
  border-top:1px solid var(--black-line); padding:28px 0; overflow:hidden;
}
.proofbar-label {
  text-align:center; font-size:.72rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--cream-mut); margin-bottom:18px;
}
.ticker-wrap { overflow:hidden; position:relative; width:100%; }
.ticker-wrap::before,
.ticker-wrap::after {
  content:""; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
}
.ticker-wrap::before { left:0;  background:linear-gradient(to right, var(--black) 0%, transparent 100%); }
.ticker-wrap::after  { right:0; background:linear-gradient(to left,  var(--black) 0%, transparent 100%); }
.ticker-track {
  display:flex; align-items:center; width:max-content;
  animation:ticker-scroll 40s linear infinite;
}
.ticker-track:hover { animation-play-state:paused; }
@keyframes ticker-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.ticker-item { display:flex; align-items:center; padding:0 36px; flex-shrink:0; }
.ticker-item a { display:flex; align-items:center; }
.ticker-logo {
  height:41px; width:160px; object-fit:contain; display:block;
  opacity:.72; filter:brightness(0) invert(1);
  transition:opacity .2s, filter .2s;
}
.ticker-logo[alt="Edge of Show"] { height:76px; width:76px; }
.ticker-logo[alt="Incantio"] { height:76px; width:76px; }
.ticker-item a:hover .ticker-logo { opacity:1; filter:brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg); }
.ticker-logo--color { filter:none; }
.ticker-item a:hover .ticker-logo--color { filter:none; }

/* ── Ticker band: full-bleed black box, shared look for index & about ── */
.proof-bar { padding:40px 0; }
.ticker-band {
background:var(--black);
padding:40px 0;
margin-top:32px;
width:100vw;
position:relative;
left:50%;
transform:translateX(-50%);
overflow:hidden;
}

/* ── Stats ── */
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:40px 32px; }
.stat { border-left:2px solid var(--gold-2); padding-left:20px; }
.stat .num { font-family:var(--display); font-weight:500;
             font-size:clamp(2rem,3.4vw,2.9rem); letter-spacing:-.02em; line-height:1; color:var(--ink); }
.section.dark .stat .num { color:#fff; }
.stat .num .accent { color:var(--gold); }
.stat .cap { color:var(--muted); font-size:.92rem; margin:10px 0 0; }
.section.dark .stat .cap { color:var(--cream-mut); }

/* ── Cards ── */
.grid   { display:grid; gap:26px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
.cards-3.grid-4 { grid-template-columns:repeat(4,1fr); }

.card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px; transition:border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color:var(--gold-2); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.card .num-mark { font-family:var(--display); font-size:1rem; color:var(--gold);
                  letter-spacing:.1em; margin-bottom:14px; }
.card .icon { width:48px; height:48px; border-radius:12px; display:grid; place-items:center;
              background:linear-gradient(135deg, var(--gold-3), var(--gold-2));
              color:var(--ink-on-gold); font-size:1.3rem; margin-bottom:18px; }
.card h3 { color:var(--ink); margin-bottom:10px; }
.card p  { margin-bottom:0; font-size:.96rem; }
.card ul { margin:14px 0 0; padding:0; list-style:none; }
.card ul li { position:relative; padding-left:22px; margin-bottom:8px;
              color:var(--muted); font-size:.93rem; }
.card ul li::before { content:""; position:absolute; left:2px; top:.6em;
                      width:8px; height:8px; border-radius:50%; border:1.5px solid var(--gold-2); }
.card .card-link { display:inline-flex; align-items:center; gap:6px; margin-top:18px;
                   color:var(--gold); font-weight:600; font-size:.9rem; }
.card .card-link:hover { gap:10px; }
.section.dark .card,.on-dark .card { background:var(--black-2); border-color:var(--black-line); }
.section.dark .card h3,.on-dark .card h3 { color:#fff; }
.section.dark .card p,.on-dark .card p,
.section.dark .card ul li,.on-dark .card ul li { color:var(--cream-mut); }

/* ── Image cards (icard) ── */
.icard {
  overflow:hidden; padding:0; display:flex; flex-direction:column;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color .2s, transform .2s, box-shadow .2s;
}
.icard:hover { border-color:var(--gold-2); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.icard .thumb { aspect-ratio:16/10; overflow:hidden; position:relative; background:#0c0b0a; }
.icard .thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.icard:hover .thumb img { transform:scale(1.05); }
.icard .thumb .badge {
  position:absolute; top:14px; left:14px;
  background:rgba(10,9,8,.72); color:var(--gold-3);
  border:1px solid rgba(203,154,58,.5); font-size:.7rem; letter-spacing:.08em;
  text-transform:uppercase; padding:6px 12px; border-radius:999px;
}
.icard .body { padding:26px 28px 30px; display:flex; flex-direction:column; flex:1; }
.icard .tag  { font-size:.74rem; letter-spacing:.1em; text-transform:uppercase;
               color:var(--gold); font-weight:600; margin-bottom:10px; }
.icard h3 { color:var(--ink); font-size:1.32rem; }
.icard p  { font-size:.95rem; }
.icard .card-link { display:inline-flex; align-items:center; gap:6px; margin-top:auto;
                    color:var(--gold); font-weight:600; font-size:.9rem; }
.icard:hover .card-link { gap:10px; }

/* ── Systems grid (Four Integrated Systems) ── */
.systems-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.icard-img { aspect-ratio:16/10; overflow:hidden; position:relative; background:#0c0b0a; }
.icard-img img { width:100%; height:100%; object-fit:cover; display:block; }
.icard-body { padding:26px 28px 30px; display:flex; flex-direction:column; flex:1; }

/* ── Who we work with cards ── */
.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }

/* ── Featured work cards ── */
.work-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.work-card {
  overflow:hidden; padding:0; display:flex; flex-direction:column;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color .2s, transform .2s, box-shadow .2s;
}
.work-card:hover { border-color:var(--gold-2); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.work-img { aspect-ratio:16/10; overflow:hidden; position:relative; background:#0c0b0a; }
.work-img img { width:100%; height:100%; object-fit:cover; display:block; }
.work-card-body { padding:26px 28px 30px; display:flex; flex-direction:column; flex:1; }
.work-tag { font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:10px; }
.work-card h3 { color:var(--ink); font-size:1.32rem; }
.work-card p { font-size:.95rem; flex:1; }
.work-card .card-link { display:inline-flex; align-items:center; gap:6px; margin-top:18px; color:var(--gold); font-weight:600; font-size:.9rem; }
.work-card:hover .card-link { gap:10px; }

/* ── Split rows ── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.split.reverse .split-media { order:2; }
.split-media {
  border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
  box-shadow:var(--shadow); aspect-ratio:4/3; background:#0c0b0a;
}
#devrel .split-media, #architecture .split-media, #infrastructure .split-media, #advisory .split-media, #media .split-media, #hackathons .split-media { aspect-ratio:3/4; }
.split-media img { width:100%; height:100%; object-fit:cover; }
.split ul { list-style:none; padding:0; margin:18px 0 0; }
.split ul li { position:relative; padding-left:24px; margin-bottom:10px; color:var(--muted); }
.split ul li::before { content:""; position:absolute; left:0; top:.62em;
                       width:9px; height:9px; border-radius:50%; border:1.5px solid var(--gold-2); }
.on-dark .split ul li,.section.dark .split ul li { color:var(--cream-mut); }
/* ── Pivot section: tighter rhythm, shorter stacked image ── */
section[aria-labelledby="pivot-heading"] { padding-bottom:56px; }
section[aria-labelledby="systems-heading"] { padding-top:56px; }
section[aria-labelledby="pivot-heading"] .split-media { aspect-ratio:16/10; }
section[aria-labelledby="systems-h"] .split-media { aspect-ratio:16/9; }
section[aria-labelledby="pivot-heading"] .split-text { display:flex; flex-direction:column; gap:22px; align-items:flex-start; }

/* ── Team ── */
.team { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.team-img { aspect-ratio:7/8; overflow:hidden; background:#0c0b0a; margin-bottom:16px; }
.team-info { margin-top:4px; }
.team-img img { width:100%; height:100%; object-fit:cover; display:block; }
.member {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; transition:border-color .2s, transform .2s, box-shadow .2s;
}
.member:hover { border-color:var(--gold-2); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.member .photo { aspect-ratio:1/1; overflow:hidden; background:#16130f; }
.member .photo img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.member:hover .photo img { transform:scale(1.04); }
.member .m-body { padding:22px 24px 26px; }
.member h4 { font-family:var(--display); font-weight:500; font-size:1.25rem;
             color:var(--ink); margin:0 0 3px; }
.member .role { color:var(--gold); font-size:.82rem; font-weight:600;
                letter-spacing:.06em; text-transform:uppercase; margin-bottom:12px; }
.member p { font-size:.9rem; margin:0; }

/* ── Partners ── */
.partners { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.partner {
  border:1px solid var(--line); border-radius:var(--radius-sm); padding:22px 16px;
  text-align:center; font-family:var(--display); font-weight:500;
  color:var(--ink-2); font-size:1.02rem; background:var(--card); transition:border-color .2s, color .2s;
}
.partner:hover { border-color:var(--gold-2); color:var(--gold); }

/* ── Quote ── */
.quote { max-width:940px; margin:0 auto; text-align:center; }
.quote blockquote {
  font-family:var(--display); font-weight:400; font-style:italic;
  font-size:clamp(1.5rem,3vw,2.3rem); line-height:1.32; margin:0 0 24px; letter-spacing:-.01em;
}
.section.dark .quote blockquote { color:#fff; }
.quote .mark { font-family:var(--display); font-size:3rem; color:var(--gold-2);
               line-height:0; display:block; height:30px; }
.quote .cite { color:var(--muted); font-size:.95rem; }
.section.dark .quote .cite { color:var(--cream-mut); }
.section.dark .quote .cite strong { color:var(--gold-3); }

/* ── CTA band ── */
.cta-band {
  position:relative; overflow:hidden; text-align:center;
  padding:96px 0; background:var(--black); color:var(--cream);
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background:radial-gradient(760px 340px at 50% 0%, rgba(203,154,58,.22), transparent 66%);
}
.cta-band .wrap { position:relative; z-index:1; }
.cta-band h2 { color:#fff; max-width:22ch; margin:0 auto .55rem; }
.cta-band p  { color:var(--cream-mut); max-width:56ch; margin:0 auto 30px; }
.cta-band .cta-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* ── Steps ── */
.steps { display:grid; gap:20px; }
.step {
  display:grid; grid-template-columns:58px 1fr; gap:22px; align-items:start;
  padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:var(--card);
}
.step .n {
  width:50px; height:50px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--display); font-size:1.2rem;
  background:linear-gradient(135deg, var(--gold-3), var(--gold-2)); color:var(--ink-on-gold);
}
.step h4 { color:var(--ink); font-family:var(--display); font-weight:500; font-size:1.2rem; margin-bottom:6px; }
.step p  { margin:0; font-size:.95rem; }

/* ── Audience ── */
.audience { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.aud {
  border:1px solid var(--line); border-radius:var(--radius); padding:30px;
  background:var(--card); transition:border-color .2s, transform .2s;
}
.aud:hover { border-color:var(--gold-2); transform:translateY(-3px); }
.aud .num-mark { font-family:var(--display); color:var(--gold); font-size:1.4rem; margin-bottom:12px; }
.aud h4 { color:var(--ink); font-family:var(--display); font-weight:500; font-size:1.28rem; margin-bottom:10px; }

/* ── Contact / Form ── */
.contact-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:start; }
.form {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:34px; box-shadow:var(--shadow-sm);
}
.form .row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:16px; }
.field label { display:block; font-size:.8rem; font-weight:600; color:var(--ink);
               margin-bottom:7px; letter-spacing:.02em; }
.field label .req { color:var(--gold); }

.form-footer-row { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:8px; flex-wrap:wrap; }
.privacy-note { font-size:.82rem; color:var(--muted); max-width:38ch; margin:0; }
.privacy-note a { color:var(--ink-2); text-decoration:underline; text-underline-offset:2px; }
.form-success { background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:48px; text-align:center; box-shadow:var(--shadow-sm); }
.form-success .success-icon { margin-bottom:18px; }
.form-success h3 { font-family:var(--display); font-size:1.5rem; margin-bottom:12px; }
.form-success p { color:var(--muted); max-width:44ch; margin:0 auto 22px; }

.field input,.field select,.field textarea {
  width:100%; padding:13px 14px; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-sm); color:var(--ink); font-family:var(--font);
  font-size:.95rem; transition:border-color .15s, box-shadow .15s;
}
.field textarea { min-height:120px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus {
  outline:none; border-color:var(--gold-2); box-shadow:0 0 0 3px rgba(203,154,58,.16);
}
.field input::placeholder,.field textarea::placeholder { color:#b0a894; }

.contact-aside .info-block {
  border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; background:var(--card); margin-bottom:20px;
}
.contact-aside h3 { color:var(--ink); font-family:var(--display); font-weight:500; }
.contact-aside .info-item { display:flex; gap:13px; align-items:flex-start; margin-bottom:15px; }
.contact-aside .info-item .ic { color:var(--gold); flex-shrink:0; margin-top:3px; }
.contact-aside .info-item a { color:var(--ink); }
.contact-aside .info-item a:hover { color:var(--gold); }
.contact-aside .info-item span { color:var(--muted); font-size:.93rem; }
.booking-card {
  text-align:center; background:var(--black); color:var(--cream);
  border-radius:var(--radius); padding:32px;
}
.booking-card h3 { color:#fff; }
.booking-card p  { color:var(--cream-mut); font-size:.93rem; }

/* ── Locations ── */
.locations { display:flex; flex-wrap:wrap; gap:10px; }
.loc { border:1px solid var(--line); background:var(--card); border-radius:999px;
       padding:8px 16px; font-size:.86rem; color:var(--muted); }
.loc.hq { border-color:var(--gold-2); color:var(--gold); font-weight:600; }

/* ── Tags / chips ── */
.tag-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.chip {
  border:1px solid var(--line); background:var(--card); border-radius:999px;
  padding:7px 15px; font-size:.82rem; color:var(--muted);
}
.on-dark .chip { border-color:var(--black-line); background:var(--black-2); color:var(--cream); }

/* ── Video embed ── */
.video-embed {
  position:relative; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); background:#0c0b0a; box-shadow:var(--shadow-sm);
}
.video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ── Footer ── */
.site-footer {
  background:#0d0c0b; color:var(--cream-mut);
  padding:72px 0 32px; border-top:3px solid var(--gold-2);
}
.footer-top {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:44px; margin-bottom:48px;
}
.footer-brand img { height:62.5px; width:auto; margin-bottom:18px; filter:brightness(0) invert(1); }
.footer-brand p { font-size:.92rem; max-width:36ch; color:var(--cream-mut); }
.footer-col h4,
.footer-col h5 {
  font-family:var(--font); font-size:.74rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold-3); margin:0 0 18px;
}
.footer-col ul { list-style:none; margin:0; padding:0; }
.footer-col li { margin-bottom:11px; }
.footer-col a { color:var(--cream-mut); font-size:.92rem; }
.footer-col a:hover { color:var(--gold-3); }
.socials { display:flex; gap:12px; margin-top:18px; }
.socials a {
  width:40px; height:40px; border-radius:10px; border:1px solid var(--black-line);
  display:grid; place-items:center; color:var(--cream-mut); transition:all .15s;
}
.socials a:hover { color:var(--ink-on-gold); border-color:var(--gold-2); background:var(--gold-2); }
.socials svg { width:18px; height:18px; }
.footer-bottom {
  border-top:1px solid var(--black-line); padding-top:24px;
  display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center;
}
.footer-bottom p { margin:0; font-size:.84rem; color:#7d7360; }
.footer-bottom .fnav { display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom .fnav a { font-size:.84rem; color:#7d7360; }
.footer-bottom .fnav a:hover { color:var(--gold-3); }

/* ── Misc utilities ── */
.centered { text-align:center; }
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s, transform .6s; }
.reveal.in { opacity:1; transform:none; }
.mobile-menu { display:none; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .nav-links { display:none; }
  .nav-toggle { display:inline-flex; }
  .nav-cta .btn { display:none; }
  .split,.contact-grid { grid-template-columns:1fr; gap:38px; }
  .split.reverse .split-media { order:0; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .stats,.grid-4 { grid-template-columns:repeat(2,1fr); }
  .cards-3,.work-grid-3 { grid-template-columns:repeat(2,1fr); }
  .team { grid-template-columns:repeat(2,1fr); }
  .partners { grid-template-columns:repeat(3,1fr); }
  .mobile-menu.open {
    display:block; border-top:1px solid var(--line); background:var(--paper-2);
  }
  .mobile-menu ul { list-style:none; margin:0; padding:12px 26px 22px; }
  .mobile-menu li { padding:11px 0; border-bottom:1px solid var(--line); }
  .mobile-menu li:last-child { border-bottom:0; }
  .mobile-menu a { color:var(--ink); font-weight:500; }
  .mobile-menu .btn { margin-top:14px; }

}
@media (max-width: 640px) {
  .section { padding:68px 0; }
  .hero { padding-bottom:56px; }
  .grid-2,.grid-3,.grid-4,.audience,.team,.systems-grid,.cards-3,.work-grid-3,.inst-grid { grid-template-columns:1fr; }
  .stats { grid-template-columns:1fr; }
  .form .row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .partners { grid-template-columns:repeat(2,1fr); }
  .btn { flex:1 1 auto; }
}

/* ── Live engagements (Institutional practice) ── */
.live-engagements-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:26px; margin-top:2.5rem; }
.live-engagement { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; padding:0; display:flex; flex-direction:column; }
.le-media { aspect-ratio:16/9; overflow:hidden; background:#0c0b0a; }
.le-media img { width:100%; height:100%; object-fit:cover; display:block; }
.le-header { display:flex; gap:8px; padding:26px 28px 0; }
.le-badge { font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; font-weight:600; color:var(--gold); border:1px solid var(--gold-2); border-radius:20px; padding:4px 12px; }
.live-engagement h3 { padding:14px 28px 0; font-size:1.3rem; color:var(--ink); margin:0; }
.le-meta { display:flex; flex-wrap:wrap; gap:16px; padding:14px 28px 0; font-size:.85rem; color:var(--muted); }
.live-engagement p { padding:0 28px; margin-top:14px; font-size:.95rem; }
.live-engagement .btn { margin:20px 28px 28px; align-self:flex-start; }


/* ── Generic section banner image (used where no dedicated media slot exists) ── */
.section-media { margin:2rem 0 2.5rem; border-radius:var(--radius); overflow:hidden; }
.section-media img { width:100%; height:auto; max-height:460px; object-fit:cover; display:block; }


/* ── Legal content (Privacy Policy) ── */
.legal-content { max-width:760px; margin:0 auto; }
.legal-content h2 { font-family:var(--display); font-size:1.5rem; margin:2.2em 0 .6em; }
.legal-content h2:first-child { margin-top:0; }
.legal-content p { color:var(--ink-2); line-height:1.7; margin-bottom:1em; }
.legal-content a { color:var(--gold); text-decoration:underline; }


/* ── Institution type cards ── */
.inst-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; margin-top:2.5rem; }
.inst-card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:border-color .2s, transform .2s, box-shadow .2s; }
.inst-card:hover { border-color:var(--gold-2); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.inst-img { aspect-ratio:16/10; overflow:hidden; background:#0c0b0a; }
.inst-img img { width:100%; height:100%; object-fit:cover; display:block; }
.inst-content { padding:30px 32px 34px; }
.inst-content .eyebrow { margin-bottom:10px; }
.inst-content h3 { margin-bottom:12px; }
.inst-content > p { color:var(--ink-2); margin-bottom:16px; }
.inst-bullets { list-style:none; margin:0 0 26px; padding:0; }
.inst-bullets li { padding:9px 0; border-bottom:1px solid var(--line); color:var(--muted); font-size:.92rem; }
.inst-bullets li:last-child { border-bottom:0; }
.inst-content .btn { margin-top:6px; }


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


/* ================================
   Case Study page — component styles
   ================================ */
.cs-hero-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:8px; }
.cs-stat { border-left:2px solid var(--gold-2); padding-left:20px; }
.cs-stat-number { display:block; font-family:var(--display); font-weight:500;
  font-size:clamp(2rem,3.4vw,2.9rem); letter-spacing:-.02em; line-height:1; color:#fff; }
.cs-stat-label { display:block; color:var(--cream-mut); font-size:.92rem; margin-top:10px; }

.cs-quote { max-width:820px; margin:36px auto; text-align:center; padding:40px 48px;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius); }
.cs-quote p { font-family:var(--display); font-weight:400; font-style:italic;
  font-size:clamp(1.3rem,2.4vw,1.7rem); line-height:1.4; margin:0 0 18px; color:var(--ink); }
.cs-quote cite { color:var(--muted); font-size:.95rem; font-style:normal; }

.cs-steps { display:grid; gap:18px; margin-top:8px; }
.cs-step { display:grid; grid-template-columns:58px 1fr; gap:22px; align-items:start;
  padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:var(--card); }
.cs-step-num { width:50px; height:50px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--display); font-size:1.2rem;
  background:linear-gradient(135deg, var(--gold-3), var(--gold-2)); color:var(--ink-on-gold); }
.cs-step-body h3 { font-family:var(--display); font-weight:500; font-size:1.2rem; margin:0 0 6px; }
.cs-step-body p { margin:0; font-size:.95rem; }

.cs-outcomes { display:grid; grid-template-columns:repeat(3,1fr); gap:28px 24px; margin-top:8px; }
.cs-outcome { border-left:2px solid var(--gold-2); padding-left:20px; }
.outcome-num { display:block; font-family:var(--display); font-weight:500;
  font-size:clamp(1.8rem,3vw,2.4rem); letter-spacing:-.02em; line-height:1; color:var(--ink); }
.outcome-text { display:block; color:var(--muted); font-size:.92rem; margin-top:8px; }

.cs-layout { display:grid; grid-template-columns:1fr 340px; gap:56px; align-items:start; }
.cs-block { margin-bottom:8px; }
.cs-block + .cs-block { margin-top:56px; }
.cs-video-wrap { border-radius:var(--radius); overflow:hidden; margin-bottom:56px; }

.cs-sidebar-card.sticky-card { position:sticky; top:110px; background:var(--card);
  border:1px solid var(--line); border-radius:var(--radius); padding:32px; }
.cs-sidebar-card h3 { font-family:var(--display); font-weight:500; font-size:1.25rem; margin:0 0 10px; }
.cs-sidebar-card > p { font-size:.95rem; color:var(--muted); margin:0 0 20px; }
.cs-sidebar-card .btn { margin-bottom:12px; width:100%; text-align:center; }
.cs-sidebar-divider { border:none; border-top:1px solid var(--line); margin:22px 0; }
.cs-sidebar-card h4 { font-family:var(--display); font-weight:500; font-size:1rem; margin:0 0 4px; }
.cs-related-links { list-style:none; margin:8px 0 0; padding:0; }
.cs-related-links li { border-top:1px solid var(--line); }
.cs-related-links li:first-child { border-top:none; }
.cs-related-links a { display:block; padding:10px 0; color:var(--ink); font-size:.95rem; text-decoration:none; }
.cs-related-links a:hover { color:var(--gold); }

@media (max-width: 960px) {
  .cs-layout { grid-template-columns:1fr; }
  .cs-hero-stats { grid-template-columns:repeat(2,1fr); }
  .cs-outcomes { grid-template-columns:repeat(2,1fr); }
  .cs-sidebar-card.sticky-card { position:static; }
}


/* ================================
   Services page — proof callouts & action links
   ================================ */
.svc-proof { background:var(--card); border-left:3px solid var(--gold-2);
  border-radius:var(--radius-sm); padding:18px 22px; margin:4px 0 22px;
  font-size:.95rem; line-height:1.5; color:var(--muted); }
.svc-proof strong { color:var(--ink); }
.section.dark .svc-proof, .on-dark .svc-proof { background:rgba(255,255,255,.06); color:var(--cream-mut); }
.section.dark .svc-proof strong, .on-dark .svc-proof strong { color:#fff; }
.split-text .card-link { margin-top:2px; }
.split-text .card-link:hover { gap:10px; }


/* Full-bleed hero video (homepage): header overlays transparently until scrolled */
body.has-dark-hero .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-dark-hero .site-header.scrolled {
  background: rgba(247,243,234,.98);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}
body.has-dark-hero .site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
body.has-dark-hero .site-header:not(.scrolled) .nav-links a:hover,
body.has-dark-hero .site-header:not(.scrolled) .nav-links a.active { color: var(--gold-3); }
body.has-dark-hero .site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
body.has-dark-hero .site-header:not(.scrolled) .nav-toggle { color: #fff; }
body.has-dark-hero .site-header:not(.scrolled) .btn-ghost { border-color: rgba(255,255,255,.6); color:#fff; }

.hero {
  margin-top: -73px;
  min-height: calc(100svh + 73px);
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.62) 0, rgba(0,0,0,.32) 160px, rgba(0,0,0,.33) 100%);
}


/* Services page — clearly-visible CTA button inside each 'In action' proof box */
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-2);
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
  transition: background .2s, color .2s, transform .12s ease, box-shadow .2s, border-color .2s;
}
.svc-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-on-gold);
  gap: 10px;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.section.dark .svc-cta { border-color: var(--gold-2); color: var(--gold-3); }
.section.dark .svc-cta:hover { background: var(--gold-3); color: var(--ink-on-gold); border-color: var(--gold-3); }

/* ── Services in-action bold link CTA ── */
.svc-cta-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
}
.svc-cta-link:hover { border-bottom-color: var(--gold); }
.section.dark .svc-cta-link, .on-dark .svc-cta-link { color: var(--gold-3); }
.section.dark .svc-cta-link:hover, .on-dark .svc-cta-link:hover { border-bottom-color: var(--gold-3); }


/* ── Mobile: logo now shown on home page (horizontal logo) ── */
@media (max-width: 980px) {
  body.has-dark-hero .brand { display:flex; }
}

/* ── Subpage hero sections: force all text white ── */
.page-hero.dark, .page-hero.dark *:not(.btn):not(.btn *) { color:#fff !important; }


/* ── Calendly booking frame (contact page) ── */
.calendly-frame {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 18px 40px -18px rgba(0,0,0,.28);
  overflow: hidden;
  position: relative;
}
.calendly-frame::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3), var(--gold-2));
}
.calendly-frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.calendly-frame-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3aa25a;
  box-shadow: 0 0 0 0 rgba(58,162,90,.5);
  animation: calendly-pulse 2s infinite;
  flex: none;
}
@keyframes calendly-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(58,162,90,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(58,162,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,162,90,0); }
}
.calendly-frame-label {
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.calendly-frame-body {
  padding: 6px 6px 0;
}
@media (max-width: 640px) {
  .calendly-frame { border-radius: 14px; }
  .calendly-frame-top { padding: 11px 16px; }
}


/* ── Mobile: eyebrow (black) ABOVE the image; headline (white) overlays the LOWER THIRD of the image, left-aligned; body content renders BELOW the image, in black (mobile only, desktop unchanged) ── */
@media (max-width:780px) {
  /* Homepage video hero */
  .hero {
    position:relative; display:block; min-height:0; overflow:visible;
    margin-top:0; padding-top:44px; padding-bottom:36px;
    background:var(--paper);
  }
  .hero-bg { position:static; width:100%; height:clamp(300px,82vw,420px); z-index:auto; }
  .hero-bg video { position:static; width:100%; height:100%; object-fit:cover; display:block; }
  .hero-bg::after { background:transparent; }
  .hero > .wrap { position:static; z-index:auto; padding-top:16px; padding-bottom:8px; }

  .hero > .wrap > .eyebrow {
    position:absolute; top:10px; left:26px; right:26px; z-index:5; margin:0;
    color:#000 !important; text-shadow:none !important;
  }
  .hero > .wrap > h1 {
    position:absolute; left:26px; right:26px; z-index:5; margin:0;
    top:calc(44px + clamp(300px,82vw,420px) * 0.5);
    color:#fff !important; text-shadow:0 1px 10px rgba(0,0,0,.55) !important;
    font-size:calc(clamp(1.6rem,7.6vw,2.1rem) + 4px); line-height:1.14; max-width:none;
  }
  .hero .wrap *:not(.btn):not(.btn *):not(.eyebrow):not(h1):not(h1 *) { color:#000 !important; text-shadow:none !important; }
  .hero .btn-ghost.on-dark { color:var(--ink); border-color:var(--gold); }

  /* Subpage image heroes (incl. case-study) */
  .page-hero.dark {
    position:relative; padding:44px 0 0; background:var(--paper); min-height:0; max-height:none; overflow:visible;
  }
  .page-hero-bg { position:static; width:100%; height:clamp(300px,82vw,420px); z-index:auto; }
  .page-hero-bg img { position:static; width:100%; height:100%; object-fit:cover; display:block; }
  .page-hero-bg::after,
  .page-hero.dark:has(.cs-hero-wrap) .page-hero-bg::after { background:transparent; }
  .page-hero.dark .wrap { position:static; z-index:auto; padding-top:16px; padding-bottom:28px; }

  .page-hero.dark .wrap > .eyebrow,
  .page-hero.dark .wrap > .cs-hero-meta {
    position:absolute; top:10px; left:26px; right:26px; z-index:5; margin:0;
    color:#000 !important; text-shadow:none !important;
  }
  .page-hero.dark .wrap > .cs-hero-meta {
    display:flex; flex-wrap:wrap; gap:4px 10px; align-items:center; line-height:1.3;
  }
  .page-hero.dark .wrap > h1 {
    position:absolute; left:26px; right:26px; z-index:5; margin:0;
    top:calc(44px + clamp(300px,82vw,420px) * 0.6);
    color:#fff !important; text-shadow:0 1px 10px rgba(0,0,0,.55) !important;
    font-size:calc(clamp(1.6rem,7.6vw,2.1rem) + 4px); line-height:1.14; max-width:none;
  }
  .page-hero.dark:has(.cs-hero-wrap) { padding-top:64px; }
  .page-hero.dark:has(.cs-hero-wrap) .wrap > h1 { top:calc(64px + clamp(300px,82vw,420px) * 0.6); }

  .page-hero.dark .wrap *:not(.btn):not(.btn *):not(.eyebrow):not(h1):not(h1 *):not(.cs-hero-meta):not(.cs-hero-meta *) {
    color:#000 !important; text-shadow:none !important;
  }
  .page-hero.dark .wrap > .cs-hero-meta .back-link,
  .page-hero.dark .wrap > .cs-hero-meta .cs-tag { color:#000 !important; }

  /* Header logo: keep proportional and appropriately sized on mobile */
  .brand img { height:34px; width:auto; }


  /* Header: on mobile the header no longer overlays the dark hero (hero has margin-top:0 here),
     so restore normal light-header styling for the homepage's has-dark-hero mode */
  body.has-dark-hero .site-header {
    background: var(--paper);
    backdrop-filter: none;
    border-bottom-color: var(--line);
  }
  body.has-dark-hero .site-header:not(.scrolled) .nav-links a { color: var(--ink); }
  body.has-dark-hero .site-header:not(.scrolled) .brand img { filter:none; }
  body.has-dark-hero .site-header:not(.scrolled) .nav-toggle { color: var(--ink); }
  body.has-dark-hero .site-header:not(.scrolled) .btn-ghost { border-color: var(--line); color: var(--ink); }
}

/* ── Contact page: compact, sophisticated redesign ── */
.contact-page .page-hero.dark { padding-bottom:40px; }
.contact-page .section.contact-intro { padding:48px 0 56px; }
.contact-page .contact-paths.grid-2 { gap:24px; }

.contact-page .contact-methods-grid {
  display:grid; grid-template-columns:1fr; background:var(--paper-2);
}
.contact-page .contact-method-panel { padding:52px 6vw; background:transparent; }
.contact-page .contact-method-panel .section-header { margin-bottom:26px; }

.contact-page .section.contact-direct { padding:56px 0; }
.contact-page .contact-channels.grid-4 { gap:20px; }

@media (min-width:901px) {
  .contact-page .contact-methods-grid { grid-template-columns:1fr 1fr; }
  .contact-page .contact-method-panel { padding:64px 48px; }
  .contact-page .contact-method-panel#calendly { border-right:1px solid var(--line); }
}


/* ── work.html: hero was noticeably shorter than other subpage heroes (content-driven height); align it with the typical subpage hero height ── */
.work-page .page-hero.dark { min-height:50vw; }
