/* ===================================================================
   TAYLORED REACH — design system
   Plum (#4A3B5C) + gold, Fraunces headlines, Cormorant subtext, Jost UI
   =================================================================== */

:root{
  --dark:        #4A3B5C;
  --dark-2:      #3D3149;
  --dark-3:      #5A4A6E;
  --line:        rgba(230,217,180,0.16);
  --line-strong: rgba(200,169,110,0.38);
  --gold:        #C8A96E;
  --gold-bright: #DDBF87;
  --gold-dim:    #8E7A50;
  --cream:       #E6D9B4;
  --cream-dim:   #C9BEDD;
  --white:       #F6F1E4;

  --display: 'Instrument Serif', serif;
  --subtext: 'Cormorant Garamond', serif;
  --body:    'Jost', sans-serif;

  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background:var(--dark);
  color:var(--cream);
  font-family:var(--body);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family:var(--display);
  color:var(--white);
  font-weight:400;
  margin:0;
  letter-spacing:0.01em;
}

.eyebrow{
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:12px;
  color:var(--gold);
  font-weight:500;
}

.rule{
  border:0;
  border-top:1px solid var(--line);
  margin:0;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

section{ position:relative; }

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* ---------- nav ---------- */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:transparent;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease;
}
.nav-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:20px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-family:var(--display);
  font-size:22px;
  font-weight:400;
  color:var(--white);
  letter-spacing:0.04em;
  transition:color .3s ease;
}
.brand span{ color:var(--gold); transition:color .3s ease; }
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.14em;
}
.nav-links a{
  color:var(--cream-dim);
  transition:color .3s ease;
  position:relative;
  padding-bottom:4px;
}
.nav-links a:hover{ color:var(--white); }
.nav-links a.active{ color:var(--gold); }
.nav-links a.active::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:1px;
  background:var(--gold);
  transition:background .3s ease;
}
.nav-toggle{ display:none; }

/* default (unadapted) state assumes the dark hero — matches what's
   behind the nav on first paint, before scroll JS has run */

/* ---------- nav over a light/gold section ---------- */
.nav.on-light{ border-bottom-color:rgba(74,59,92,0.14); }
.nav.on-light .brand{ color:#4A3B5C; }
.nav.on-light .brand span{ color:#8A6D2E; }
.nav.on-light .nav-links a{ color:#6E5F80; }
.nav.on-light .nav-links a:hover{ color:#2E2438; }
.nav.on-light .nav-links a.active{ color:#8A6D2E; }
.nav.on-light .nav-links a.active::after{ background:#8A6D2E; }
.nav.on-light .nav-toggle{ color:#4A3B5C; border-color:rgba(74,59,92,0.3); }

.nav-cta{
  background:var(--dark);
  border:1px solid var(--dark);
  padding:10px 20px;
  color:var(--gold-bright) !important;
  font-size:12px !important;
  transition:all .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{
  background:var(--white);
  color:var(--dark) !important;
  border-color:var(--white);
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-toggle{
    display:block;
    background:none;
    border:1px solid var(--line-strong);
    color:var(--cream);
    padding:8px 14px;
    font-family:var(--body);
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    transition:color .3s ease, border-color .3s ease;
  }
  .nav-links.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%; left:0; right:0;
    background:rgba(250,247,239,0.97);
    border-bottom:1px solid rgba(74,59,92,0.15);
    padding:24px 32px;
    gap:20px;
  }
  .nav-links.open a{ color:#4A3B5C; }
  .nav-links.open a:hover{ color:#2E2438; }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:13px;
  font-weight:500;
  padding:17px 34px;
  border:1px solid var(--gold);
  transition:all .25s ease;
  cursor:pointer;
}
.btn-solid{
  background:var(--gold);
  color:var(--dark);
}
.btn-solid:hover{
  background:var(--gold-bright);
  border-color:var(--gold-bright);
  transform:translateY(-1px);
}
.btn-outline{
  background:transparent;
  color:var(--gold-bright);
}
.btn-outline:hover{
  background:var(--gold);
  color:var(--dark);
}

/* ---------- hero ---------- */
.hero{
  padding:120px 0 90px;
  text-align:center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(200,169,110,0.10), transparent 60%),
    var(--dark);
}
.hero h1{
  font-size:clamp(34px,6vw,62px);
  line-height:1.1;
  max-width:900px;
  margin:22px auto 20px;
}
.hero .sub{
  max-width:560px;
  margin:0 auto 40px;
  color:var(--cream-dim);
  font-size:19px;
  font-family:var(--subtext);
  font-style:italic;
  font-weight:500;
}
.price-line{
  font-family:var(--display);
  font-size:clamp(30px,4vw,44px);
  color:var(--gold-bright);
  margin:6px 0 36px;
}
.price-line small{
  font-family:var(--subtext);
  font-style:italic;
  font-size:16px;
  color:var(--cream-dim);
  letter-spacing:0.02em;
}

/* ---------- split meter (signature element) ---------- */
.split-meter{
  max-width:760px;
  margin:56px auto 0;
}
.split-meter .caption-row{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--cream-dim);
  margin-bottom:10px;
}
.split-meter .caption-row .them{ color:var(--gold); }
.meter-bar{
  height:14px;
  width:100%;
  border:1px solid var(--line-strong);
  display:flex;
  overflow:hidden;
  background:var(--dark-2);
}
.meter-fill-fixed{
  width:12%;
  background:repeating-linear-gradient(135deg, var(--gold-dim), var(--gold-dim) 4px, var(--gold) 4px, var(--gold) 8px);
}
.meter-fill-yours{
  width:88%;
  background:var(--white);
  opacity:0.92;
}
.split-meter .numbers{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  font-family:var(--display);
  font-size:19px;
  color:var(--white);
}
.split-meter .numbers .them{ color:var(--gold-bright); font-size:16px; }

/* ---------- sections ---------- */
.section{ padding:100px 0; }
.section-tight{ padding:70px 0; }
.section-alt{ background:var(--dark-2); }
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 60px;
}
.section-head h2{
  font-size:clamp(26px,3.6vw,38px);
  margin-top:14px;
}
.section-head p{
  color:var(--cream-dim);
  margin-top:16px;
  font-size:18px;
  font-family:var(--subtext);
  font-style:italic;
  font-weight:500;
}

/* ---------- pipeline flow (process, genuinely sequential) ---------- */
.pipeline{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  counter-reset:step;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.pipeline .step{
  flex:1 1 0;
  min-width:150px;
  padding:34px 22px;
  border-right:1px solid var(--line);
  counter-increment:step;
  position:relative;
}
.pipeline .step:last-child{ border-right:none; }
.pipeline .step::before{
  content:counter(step, decimal-leading-zero);
  font-family:var(--display);
  font-size:14px;
  color:var(--gold-dim);
  letter-spacing:0.1em;
}
.pipeline .step h4{
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:0.1em;
  font-size:14px;
  color:var(--white);
  margin-top:12px;
  font-weight:500;
}
.pipeline .step p{
  font-size:13.5px;
  color:var(--cream-dim);
  margin-top:8px;
  line-height:1.5;
}
.pipeline .step.final{
  background:var(--gold);
  color:var(--dark);
}
.pipeline .step.final::before{ color:rgba(74,59,92,0.55); }
.pipeline .step.final h4{ color:var(--dark); }
.pipeline .step.final p{ color:rgba(74,59,92,0.75); }

@media (max-width: 780px){
  .pipeline{ flex-direction:column; }
  .pipeline .step{ border-right:none; border-bottom:1px solid var(--line); }
  .pipeline .step:last-child{ border-bottom:none; }
}

/* ---------- gate checklist ---------- */
.gate-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.gate-item{
  background:var(--dark);
  padding:30px 26px;
}
.gate-item .mark{
  color:var(--gold);
  font-family:var(--display);
  font-size:22px;
}
.gate-item h4{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--white);
  margin-top:10px;
  font-weight:500;
}
.gate-item p{
  font-size:14px;
  color:var(--cream-dim);
  margin-top:8px;
}

/* ---------- fit lists ---------- */
.fit-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.fit-col{ background:var(--dark); padding:38px; }
.fit-col h3{
  font-size:20px;
  margin-bottom:22px;
  color:var(--white);
}
.fit-col ul{ list-style:none; margin:0; padding:0; }
.fit-col li{
  padding:11px 0;
  border-top:1px solid var(--line);
  font-size:15px;
  color:var(--cream-dim);
  display:flex;
  gap:12px;
}
.fit-col li:first-child{ border-top:none; }
.fit-col.yes li::before{ content:'✓'; color:var(--gold); font-family:var(--display); }
.fit-col.no li::before{ content:'—'; color:var(--cream-dim); }

@media (max-width:760px){
  .fit-cols{ grid-template-columns:1fr; }
}

/* ---------- industries ---------- */
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.tag{
  border:1px solid var(--line-strong);
  padding:10px 20px;
  font-size:13.5px;
  color:var(--cream);
  letter-spacing:0.02em;
}

/* variant: single row on desktop, 3-column grid on mobile (e.g. "we can research") */
.tag-row-grid{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  justify-content:center;
}
.tag-row-grid .tag{
  flex:1 1 0;
  text-align:center;
  white-space:nowrap;
  padding:10px 14px;
}
@media (max-width:760px){
  .tag-row-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:8px;
  }
  .tag-row-grid .tag{
    white-space:normal;
    padding:12px 6px;
    font-size:12px;
  }
}

/* ---------- cards ---------- */
.card{
  background:var(--dark-2);
  border:1px solid var(--line);
  padding:38px;
}
.card ul{
  margin:0; padding:0; list-style:none;
  columns:2;
  column-gap:28px;
}
.card ul li{
  font-size:14.5px;
  color:var(--cream-dim);
  padding:8px 0;
  break-inside:avoid;
}
.card ul li::before{ content:'— '; color:var(--gold-dim); }
@media (max-width:640px){ .card ul{ columns:1; } }

/* ---------- quote / statement block ---------- */
.statement{
  text-align:center;
  padding:90px 0;
}
.statement p{
  font-family:var(--display);
  font-size:clamp(24px,3.6vw,38px);
  color:var(--white);
  max-width:760px;
  margin:0 auto;
  line-height:1.35;
}
.statement p em{ color:var(--gold-bright); font-style:normal; }

/* ---------- numbered workflow (Work With Us page) ---------- */
.workflow{
  display:flex;
  flex-direction:column;
  gap:0;
}
.wf-row{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:36px;
  padding:44px 0;
  border-top:1px solid var(--line);
}
.workflow .wf-row:last-child{ border-bottom:1px solid var(--line); }
.wf-num{
  font-family:var(--display);
  font-size:44px;
  color:var(--gold-dim);
  line-height:1;
}
.wf-body h3{
  font-size:22px;
  margin-bottom:10px;
}
.wf-body p, .wf-body li{
  color:var(--cream-dim);
  font-size:15px;
}
.wf-body ul{ padding-left:18px; margin:14px 0 0; }
.wf-body li{ margin-bottom:6px; }

@media (max-width:640px){
  .wf-row{ grid-template-columns:1fr; gap:10px; }
}

/* ---------- commission ledger (Careers page) ---------- */
.ledger{
  border:1px solid var(--line);
}
.ledger-role{
  border-top:1px solid var(--line);
  padding:28px 32px 32px;
}
.ledger-role:first-child{ border-top:none; }
.ledger-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:0 0 6px;
  flex-wrap:wrap;
  gap:10px;
}
.ledger-head h3{ font-size:24px; }
.ledger-head .pod-tag{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--gold);
  border:1px solid var(--gold-dim);
  padding:5px 10px;
}
.ledger-desc{
  padding:0;
  color:var(--cream-dim);
  font-size:15px;
  max-width:640px;
}
.ledger-rows{
  padding:22px 32px 30px;
  display:flex;
  flex-direction:column;
  gap:0;
}
.ledger-line{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-top:1px dashed var(--line);
  font-size:15px;
}
.ledger-line:first-child{ border-top:none; }
.ledger-line .amt{
  font-family:var(--display);
  color:var(--gold-bright);
  font-size:18px;
  white-space:nowrap;
  margin-left:20px;
}
.ledger-total{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--line-strong);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.ledger-total .label{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:0.12em;
  color:var(--cream-dim);
}
.ledger-total .amt{
  font-family:var(--display);
  font-size:26px;
  color:var(--white);
}

/* ---------- light-background section variants ---------- */
.section-light{ background:#FAF7EF; }
.section-gold{ background:#F3E0AC; }

.section-light h1, .section-light h2, .section-light h3, .section-light h4,
.section-gold h1, .section-gold h2, .section-gold h3, .section-gold h4{
  color:#2E2438;
}
.section-light .eyebrow, .section-gold .eyebrow{ color:#8A6D2E; }
.section-light .section-head p, .section-gold .section-head p{ color:#4A3B5C; }
.section-light .statement p, .section-gold .statement p{ color:#2E2438; }
.section-light .statement p em, .section-gold .statement p em{ color:#8A6D2E; }
.section-light .tag, .section-gold .tag{ border-color:rgba(74,59,92,0.35); color:#4A3B5C; }
.section-light .fine-print, .section-gold .fine-print{ color:#6E5F80; }
.section-light .price-line, .section-gold .price-line{ color:#8A6D2E; }
.section-light .price-line small, .section-gold .price-line small{ color:#6E5F80; }

/* protect nested self-contained dark tiles: their own background stays dark
   purple regardless of section theme, so their headings must stay white */
.section-light .fit-col h3, .section-gold .fit-col h3{ color:var(--white); }
.section-light .gate-item h4, .section-gold .gate-item h4{ color:var(--white); }
.section-light .teaser-card h3, .section-gold .teaser-card h3{ color:var(--white); }

/* numbered workflow (.wf-*) sits directly on the section background,
   so it needs its own light/gold text treatment */
.section-light .wf-body h3, .section-gold .wf-body h3{ color:#2E2438; }
.section-light .wf-body p, .section-light .wf-body li,
.section-gold .wf-body p, .section-gold .wf-body li{ color:#4A3B5C; }
.section-light .wf-num, .section-gold .wf-num{ color:#8A6D2E; }

/* pipeline steps (non-final) also sit directly on the section background */
.section-light .pipeline, .section-gold .pipeline,
.section-light .pipeline .step, .section-gold .pipeline .step{ border-color:rgba(74,59,92,0.25); }
.section-light .pipeline .step h4, .section-gold .pipeline .step h4{ color:#2E2438; }
.section-light .pipeline .step p, .section-gold .pipeline .step p{ color:#4A3B5C; }
.section-light .pipeline .step::before, .section-gold .pipeline .step::before{ color:#8A6D2E; }

/* day-in-the-life carousel */
.section-light .day-slide .persona-tag, .section-gold .day-slide .persona-tag{ color:#8A6D2E; }
.section-light .day-slide .persona, .section-gold .day-slide .persona{ color:#2E2438; }
.section-light .day-slide .beat .time, .section-gold .day-slide .beat .time{ color:#8A6D2E; }
.section-light .day-slide .beat .what, .section-gold .day-slide .beat .what{ color:#4A3B5C; }
.section-light .day-nav-btn, .section-gold .day-nav-btn{ border-color:rgba(74,59,92,0.35); color:#8A6D2E; }
.section-light .day-nav-btn:hover, .section-gold .day-nav-btn:hover{ background:#8A6D2E; color:#FAF7EF; border-color:#8A6D2E; }
.section-light .day-dot, .section-gold .day-dot{ background:rgba(74,59,92,0.3); }
.section-light .day-dot.active, .section-gold .day-dot.active{ background:#8A6D2E; }

/* split-meter (sits directly on section background) */
.section-light .caption-row, .section-gold .caption-row{ color:#6E5F80; }
.section-light .caption-row .them, .section-gold .caption-row .them{ color:#8A6D2E; }
.section-light .numbers, .section-gold .numbers{ color:#2E2438; }
.section-light .numbers .them, .section-gold .numbers .them{ color:#8A6D2E; }

/* ledger (role cards sit directly on section background) */
.section-light .ledger, .section-light .ledger-role,
.section-gold .ledger, .section-gold .ledger-role{ border-color:rgba(74,59,92,0.2); }
.section-light .ledger-head h3, .section-gold .ledger-head h3{ color:#2E2438; }
.section-light .ledger-desc, .section-gold .ledger-desc{ color:#4A3B5C; }
.section-light .pod-tag, .section-gold .pod-tag{ color:#8A6D2E; border-color:rgba(138,109,46,0.5); }


/* ---------- CTA band ---------- */
.cta-band{
  background:var(--dark-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:90px 0;
  text-align:center;
}
.cta-band h2{
  font-size:clamp(24px,3.6vw,36px);
  margin-bottom:18px;
}
.cta-band .sub{
  color:var(--cream-dim);
  max-width:480px;
  margin:0 auto 34px;
  font-family:var(--subtext);
  font-style:italic;
  font-size:18px;
}
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.fine-print{
  margin-top:22px;
  font-size:12.5px;
  color:var(--cream-dim);
  letter-spacing:0.03em;
}

/* ---------- inclusions teaser (homepage) ---------- */
.teaser-card{
  border:1px solid var(--line-strong);
  padding:34px 38px;
  max-width:640px;
  margin:0 auto;
  text-align:center;
  background:var(--dark-2);
}
.teaser-card h3{ font-size:24px; margin-bottom:10px; }
.teaser-card p{ color:var(--cream-dim); font-family:var(--subtext); font-style:italic; font-size:17px; margin-bottom:22px; }
.teaser-card a{
  display:inline-block;
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:0.1em;
  font-size:12.5px;
  color:var(--gold-bright);
  border-bottom:1px solid var(--gold-dim);
  padding-bottom:3px;
}
.teaser-card a:hover{ color:var(--gold-bright); border-color:var(--gold-bright); }

/* ---------- contact / application modal ---------- */
.modal-backdrop{
  display:none;
  position:fixed; inset:0;
  background:rgba(20,14,26,0.72);
  z-index:200;
  align-items:flex-start;
  justify-content:center;
  overflow-y:auto;
  padding:60px 16px;
}
.modal-backdrop.open{ display:flex; }
.modal{
  background:#FAF7EF;
  border:1px solid rgba(74,59,92,0.3);
  max-width:480px;
  width:100%;
  padding:36px;
  position:relative;
}
.modal h3{ font-size:26px; margin-bottom:6px; color:#2E2438; }
.modal .modal-sub{ color:#6E5F80; font-family:var(--subtext); font-style:italic; font-size:16px; margin-bottom:24px; }
.modal .field{ margin-bottom:16px; }
.modal .field label{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:#6E5F80;
  margin-bottom:6px;
  font-family:var(--body);
}
.modal input, .modal textarea{
  width:100%;
  background:#F0E9D8;
  border:1px solid rgba(74,59,92,0.3);
  color:#2E2438;
  padding:11px 12px;
  font-family:var(--body);
  font-size:14px;
}
.modal textarea{ min-height:80px; resize:vertical; }
.modal .position-tag{
  display:inline-block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:#8A6D2E;
  border:1px solid rgba(138,109,46,0.5);
  padding:5px 10px;
  margin-bottom:18px;
}
.modal .close-x{
  position:absolute; top:18px; right:20px;
  background:none; border:none; color:#6E5F80;
  font-size:22px; cursor:pointer; line-height:1;
}
.modal .close-x:hover{ color:#2E2438; }
.modal .discretion-note{
  font-size:13px; color:#6E5F80; font-style:italic;
  font-family:var(--subtext); margin-top:-8px; margin-bottom:18px;
}
.modal-confirm{ text-align:center; padding:20px 0; }
.modal-confirm h3{ margin-bottom:14px; color:#2E2438; }
.modal-confirm p{ color:#6E5F80; font-family:var(--subtext); font-style:italic; font-size:17px; }

/* ---------- slashed day-in-the-life (careers "workday") ---------- */
.slash-row{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:0;
  padding-bottom:10px;
}
.slash-slide{
  flex:0 0 auto;
  width:min(340px, 82vw);
  scroll-snap-align:start;
  padding:0 34px 0 0;
  margin-right:34px;
  border-right:1px solid var(--line-strong);
  position:relative;
}
.slash-slide:last-child{ border-right:none; margin-right:0; padding-right:0; }
.slash-slide .persona{
  font-family:var(--display);
  font-size:22px;
  color:var(--white);
  margin-bottom:6px;
}
.slash-slide .persona-tag{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--gold);
  margin-bottom:16px;
  display:block;
}
.slash-slide .beat{
  display:flex;
  gap:12px;
  margin-bottom:12px;
  font-size:13.5px;
}
.slash-slide .beat .time{
  color:var(--gold-dim);
  font-family:var(--display);
  font-size:13px;
  white-space:nowrap;
  min-width:64px;
}
.slash-slide .beat .what{ color:var(--cream-dim); }
.slash-nav{ text-align:center; margin-top:6px; font-size:11px; color:var(--cream-dim); text-transform:uppercase; letter-spacing:0.1em; }
@media (max-width:640px){
  .slash-slide{ width:78vw; }
}

/* ---------- day-in-the-life carousel (one slide at a time) ---------- */
.day-carousel{
  max-width:480px;
  margin:0 auto;
}
.day-slide-window{
  position:relative;
  min-height:230px;
}
.day-slide{
  display:none;
  text-align:center;
}
.day-slide.active{ display:block; }
.day-slide .persona-tag{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--gold);
  margin-bottom:10px;
  display:block;
}
.day-slide .persona{
  font-family:var(--display);
  font-size:22px;
  color:var(--white);
  margin-bottom:22px;
}
.day-slide .beat{
  display:flex;
  gap:14px;
  margin-bottom:14px;
  font-size:14px;
  text-align:left;
  max-width:380px;
  margin-left:auto;
  margin-right:auto;
}
.day-slide .beat .time{
  color:var(--gold-dim);
  font-family:var(--display);
  font-size:13px;
  white-space:nowrap;
  min-width:120px;
}
.day-slide .beat .what{ color:var(--cream-dim); }
.day-carousel-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:26px;
}
.day-nav-btn{
  background:none;
  border:1px solid var(--line-strong);
  color:var(--gold-bright);
  width:36px; height:36px;
  border-radius:50%;
  cursor:pointer;
  font-size:15px;
  transition:all .2s ease;
}
.day-nav-btn:hover{ background:var(--gold); color:var(--dark); border-color:var(--gold); }
.day-dots{ display:flex; gap:8px; }
.day-dot{
  width:7px; height:7px;
  border-radius:50%;
  background:var(--line-strong);
  cursor:pointer;
  transition:background .2s ease;
}
.day-dot.active{ background:var(--gold); }
.role-apply-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:18px;
}

/* ---------- footer ---------- */
footer{
  padding:56px 0 40px;
  border-top:1px solid var(--line);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-brand{
  font-family:var(--display);
  font-size:18px;
  color:var(--white);
}
.footer-tag{
  font-size:13px;
  color:var(--cream-dim);
}
.footer-links{
  display:flex;
  gap:26px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--cream-dim);
}
.footer-links a:hover{ color:var(--gold); }
.copyright{
  margin-top:30px;
  font-size:12px;
  color:var(--gold-dim);
  text-align:center;
}

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ---------- role cards (careers) ---------- */
.pod-label{
  text-align:center;
  margin:0 0 30px;
}
.pod-label .eyebrow{ display:block; margin-bottom:6px; }
.pod-label h2{ font-size:clamp(26px,3.6vw,36px); }
