/* ===================================
   ZENITH MEDIA SOLUTIONS — styles.css
   Palette: exact GPOP.inc aesthetic
   ─ #F2EBDF  parchment background  (GPOP meta theme-color)
   ─ #E6DDD0  slightly deeper parchment
   ─ #D8CFC0  footer / deepest bg
   ─ #111111  near-black ink (primary text, GPOP)
   ─ #555555  secondary text
   ─ #999999  muted / labels / captions
   ─ rgba(17,17,17,0.13)  hairline rules
   Zero accent colour — strictly monochrome, editorial, black-on-parchment.
   =================================== */

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg:      #F2EBDF;
  --bg2:     #E6DDD0;
  --bg3:     #D8CFC0;
  --ink:     #111111;
  --ink2:    #555555;
  --ink3:    #999999;
  --rule:    rgba(17,17,17,0.13);
  --rule2:   rgba(17,17,17,0.22);
  --r:       3px;
  --ease:    cubic-bezier(0.4,0,0.2,1);
  --t:       0.25s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a            { color: inherit; text-decoration: none; }
button       { font-family: inherit; cursor: pointer; border: none; background: none; }
ul           { list-style: none; }
img,svg      { display: block; }
::selection  { background: rgba(17,17,17,0.12); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--ink3); border-radius: 99px; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section   { padding: 100px 0; }

/* ===================================
   TYPOGRAPHY
=================================== */
.section-index {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink3);
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink3);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 20px;
}
.section-title em { font-style: italic; }
.section-sub  { font-size: 0.95rem; color: var(--ink2); max-width: 380px; line-height: 1.75; }
.body-text    { font-size: 0.95rem; color: var(--ink2); line-height: 1.85; margin-bottom: 16px; }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: var(--r);
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-primary {
  background: var(--ink); color: var(--bg); border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: #333; transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17,17,17,0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--ink2); border: 1px solid var(--rule2);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===================================
   SECTION HEADER SPLIT (two-column header above sections)
=================================== */
.section-header-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid var(--rule2); margin-bottom: 60px;
}
.section-header-split .section-sub { margin-bottom: 4px; }

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 24px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease),
              border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(242,235,223,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 16px 0; border-bottom-color: var(--rule);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.6; }
.logo-z { /* same color as rest — no accent */ }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-size: 0.8rem; font-weight: 500; color: var(--ink2);
  padding: 8px 14px; border-radius: var(--r);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav-link:hover { color: var(--ink); background: rgba(17,17,17,0.06); }
.nav-link.nav-cta {
  color: var(--ink); border: 1px solid var(--rule2); margin-left: 12px; padding: 7px 16px;
}
.nav-link.nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  border-radius: var(--r);
}
.hamburger:hover { background: rgba(17,17,17,0.06); }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh; padding: 150px 0 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--rule2);
  overflow: hidden; position: relative;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.hero-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 32px; max-width: 820px;
}
.typed-wrapper { display: block; font-style: italic; color: var(--ink); }
.cursor {
  font-style: normal; font-weight: 300; color: var(--ink3);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  font-size: 1.05rem; color: var(--ink2); line-height: 1.8;
  max-width: 540px; margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-rule {
  width: 100%; max-width: 1100px; margin: 60px auto 32px; padding: 0 40px;
  height: 0; border: none; border-top: 1px solid var(--rule2);
}
.hero-footnote {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink3);
}
.dot { color: var(--ink3); opacity: 0.4; }

.hero-graphic {
  position: absolute; right: 60px; bottom: 80px;
  width: 340px; opacity: 0.35; pointer-events: none;
}

/* ===================================
   ABOUT
=================================== */
.about { background: var(--bg2); border-bottom: 1px solid var(--rule2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border-top: 1px solid var(--rule2); border-left: 1px solid var(--rule2);
}
.pillar {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px 18px;
  border-right: 1px solid var(--rule2); border-bottom: 1px solid var(--rule2);
  transition: background var(--t);
}
.pillar:hover { background: var(--bg3); }
.pillar-num   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink3); }
.pillar-label { font-size: 0.8rem; font-weight: 600; color: var(--ink2); }

/* ===================================
   SERVICES
=================================== */
.services { background: var(--bg); border-bottom: 1px solid var(--rule2); }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule2); border-left: 1px solid var(--rule2);
}
.service-card {
  padding: 40px 36px;
  border-right: 1px solid var(--rule2); border-bottom: 1px solid var(--rule2);
  display: flex; flex-direction: column; gap: 12px;
  transition: background var(--t) var(--ease);
}
.service-card:hover { background: var(--bg2); }
.service-meta {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px;
}
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem; font-style: italic; color: var(--ink3); font-weight: 700;
}
.service-icon  { color: var(--ink3); }
.service-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.service-desc  { font-size: 0.87rem; color: var(--ink2); line-height: 1.72; }
.service-list  { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.service-list li {
  font-size: 0.78rem; color: var(--ink3);
  padding-left: 16px; position: relative; line-height: 1.5;
}
.service-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--ink3); font-size: 0.68rem;
}

/* ===================================
   HOW IT WORKS
   Three-column row: [number] [vertical rule] [content]
   The key: step-divider is a visual column, not a gap.
   We use explicit column widths so the content lines up precisely.
=================================== */
.how-it-works { background: var(--bg2); border-bottom: 1px solid var(--rule2); }
.steps-table  { max-width: 760px; }

.step {
  display: grid;
  /* col1: step number (right-aligned in 52px box)
     col2: 1px vertical rule with horizontal margin built in via padding
     col3: the actual content */
  grid-template-columns: 52px 1px 1fr;
  /* gap between col1/col2 and col2/col3 done with padding on col2 */
  column-gap: 0;
  align-items: stretch;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule2);
}
.step:first-child { border-top: 1px solid var(--rule2); }

.step-num {
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--ink3); text-align: right;
  align-self: flex-start; padding-top: 3px;
  /* push number to sit right against the rule with a small gap */
  padding-right: 20px;
}

/* The 1px vertical rule — use box-shadow trick for reliable rendering */
.step-divider {
  width: 1px;
  background: var(--rule2);
  align-self: stretch;
  min-height: 1em;
}

.step-body {
  /* Left gap between rule and content */
  padding-left: 28px;
}

.step-title {
  font-size: 0.95rem; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.87rem; color: var(--ink2); line-height: 1.78;
}

/* ===================================
   FOR CLIENTS
=================================== */
.clients-section { background: var(--bg); border-bottom: 1px solid var(--rule2); }
.clients-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.clients-text .btn { margin-top: 12px; }

/* 2×2 perk grid — hairline borders only, no radius */
.clients-perks {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule2); border-left: 1px solid var(--rule2);
}
.perk {
  padding: 26px 22px;
  border-right: 1px solid var(--rule2); border-bottom: 1px solid var(--rule2);
  transition: background var(--t) var(--ease);
}
.perk:hover { background: var(--bg2); }
.perk-header { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.perk-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--ink2);
}
.perk-title { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.perk-desc  { font-size: 0.78rem; color: var(--ink2); line-height: 1.65; }

/* ===================================
   FAQ
=================================== */
.faq { background: var(--bg2); border-bottom: 1px solid var(--rule2); }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--rule2); }
.faq-item:first-child { border-top: 1px solid var(--rule2); }

.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 0.93rem; font-weight: 600;
  color: var(--ink); text-align: left;
  transition: color var(--t) var(--ease);
}
.faq-question:hover { color: var(--ink2); }
.faq-question[aria-expanded="true"] { color: var(--ink); }
.faq-icon {
  flex-shrink: 0; color: var(--ink3); display: flex;
  transition: transform var(--t) var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.42s var(--ease), padding 0.32s ease;
}
.faq-answer.open { max-height: 320px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.88rem; color: var(--ink2); line-height: 1.8; }

/* ===================================
   CONTACT
=================================== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.contact-details { margin-top: 28px; }
.contact-email {
  font-size: 0.86rem; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t); display: inline-block;
}
.contact-email:hover { border-bottom-color: var(--ink); }

.contact-form {
  background: var(--bg2); border: 1px solid var(--rule2);
  border-radius: 4px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }

label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink3);
  transition: color var(--t);
}

input, select, textarea {
  background: var(--bg); border: 1px solid var(--rule2);
  border-radius: var(--r); padding: 11px 15px;
  font-size: 0.89rem; color: var(--ink); font-family: inherit;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--ink3); }
select option { background: var(--bg); color: var(--ink); }
input:focus, select:focus, textarea:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}
input:hover:not(:focus), select:hover:not(:focus), textarea:hover:not(:focus) {
  border-color: rgba(17,17,17,0.32);
}
textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.73rem; color: var(--ink3); text-align: center; margin-top: 10px;
}
.form-success {
  display: none; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: rgba(17,17,17,0.05); border: 1px solid var(--rule2);
  border-radius: var(--r); font-size: 0.86rem; color: var(--ink); margin-top: 14px;
}
.form-success.visible { display: flex; }

/* ===================================
   FOOTER
=================================== */
.footer { background: var(--bg3); border-top: 1px solid var(--rule2); padding: 52px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-top {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
}
.footer-logo em { font-style: normal; }
.footer-tagline { font-size: 0.8rem; color: var(--ink3); max-width: 360px; }
.footer-rule    { height: 1px; background: var(--rule2); }
.footer-bottom  {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy  { font-size: 0.76rem; color: var(--ink3); }
.footer-email { font-size: 0.76rem; color: var(--ink2); transition: color var(--t); }
.footer-email:hover { color: var(--ink); }

/* ===================================
   SCROLL REVEAL
=================================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===================================
   SUB-PAGE HERO (Brands / Creators / Roster / About)
=================================== */
.page-hero {
  padding: 150px 0 64px;
  border-bottom: 1px solid var(--rule2);
}
.page-hero .container { max-width: 1100px; }
.page-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 24px;
}
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 24px; max-width: 760px;
}
.page-title em { font-style: italic; }
.page-sub {
  font-size: 1.02rem; color: var(--ink2); line-height: 1.8;
  max-width: 580px;
}

/* ===================================
   TWO-COLUMN FEATURE ROWS (Brands / Creators pages)
=================================== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
  padding: 64px 0; border-bottom: 1px solid var(--rule2);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { grid-template-columns: 1.4fr 1fr; }
.feature-row.reverse .feature-visual { order: -1; }

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; font-style: italic; font-weight: 700;
  color: var(--ink3); margin-bottom: 14px; display: block;
}
.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  font-size: 0.86rem; color: var(--ink2);
  padding-left: 18px; position: relative; line-height: 1.6;
}
.feature-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--ink3); font-size: 0.74rem;
}

/* Feature visual: bordered panel with icon grid */
.feature-visual {
  border: 1px solid var(--rule2); border-radius: 4px;
  padding: 36px; background: var(--bg2);
}
.feature-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule2); border: 1px solid var(--rule2);
}
.feature-visual-cell {
  background: var(--bg2); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--t);
}
.feature-visual-cell:hover { background: var(--bg3); }
.feature-visual-cell svg { color: var(--ink2); }
.feature-visual-label { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.feature-visual-sub   { font-size: 0.72rem; color: var(--ink3); line-height: 1.5; }

/* ===================================
   VALUES / PRINCIPLES GRID (About page)
=================================== */
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule2); border-left: 1px solid var(--rule2);
}
.value-card {
  padding: 36px;
  border-right: 1px solid var(--rule2); border-bottom: 1px solid var(--rule2);
  transition: background var(--t);
}
.value-card:hover { background: var(--bg2); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; font-style: italic; font-weight: 700;
  color: var(--ink3); margin-bottom: 14px; display: block;
}
.value-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.value-desc  { font-size: 0.87rem; color: var(--ink2); line-height: 1.75; }

/* Timeline (About page) */
.timeline { max-width: 760px; }
.timeline-item {
  display: grid; grid-template-columns: 90px 1px 1fr;
  padding: 28px 0; border-bottom: 1px solid var(--rule2);
}
.timeline-item:first-child { border-top: 1px solid var(--rule2); }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 800; color: var(--ink);
  align-self: flex-start; padding-top: 2px;
}
.timeline-divider { width: 1px; background: var(--rule2); align-self: stretch; }
.timeline-body { padding-left: 28px; }
.timeline-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.timeline-desc  { font-size: 0.87rem; color: var(--ink2); line-height: 1.75; }

/* ===================================
   ROSTER GRID (Roster page)
=================================== */
.roster-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
}
.roster-filter {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 18px; border: 1px solid var(--rule2); border-radius: 99px;
  color: var(--ink2); transition: var(--t);
  cursor: pointer; background: transparent;
}
.roster-filter:hover, .roster-filter.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}

/* Roster summary stats strip */
.roster-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule2); border-left: 1px solid var(--rule2);
  margin-bottom: 56px;
}
.roster-stat-block {
  padding: 28px 24px;
  border-right: 1px solid var(--rule2); border-bottom: 1px solid var(--rule2);
}
.roster-stat-block .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em; display: block; margin-bottom: 6px;
}
.roster-stat-block .stat-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink3);
}
.roster-stat-block .stat-list {
  font-size: 0.82rem; color: var(--ink2); line-height: 1.6;
}

/* Roster table */
.roster-table-wrap { overflow-x: auto; }
.roster-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  font-size: 0.92rem; table-layout: fixed;
}
.roster-table thead th {
  text-align: left; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3);
  padding: 0 18px 16px; border-bottom: 1px solid var(--rule2);
  white-space: nowrap;
}
.roster-table th:nth-child(1) { width: 42%; }
.roster-table th:nth-child(2) { width: 22%; }
.roster-table th:nth-child(3) { width: 18%; text-align: right; }
.roster-table th:nth-child(4) { width: 18%; text-align: right; }
.roster-table thead th:first-child { padding-left: 0; }
.roster-table thead th:last-child  { padding-right: 0; }
.roster-table tbody td {
  padding: 26px 18px; border-bottom: 1px solid var(--rule2);
  color: var(--ink2); vertical-align: middle;
  transition: color var(--t);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.roster-table tbody td:nth-child(3),
.roster-table tbody td:nth-child(4) { text-align: right; }
.roster-table tbody td:first-child { padding-left: 0; }
.roster-table tbody td:last-child  { padding-right: 0; }
.roster-table tbody tr { transition: background var(--t); }
.roster-table tbody tr:hover { background: var(--bg2); }
.roster-table tbody tr:hover td { color: var(--ink); }
.roster-table tbody tr:last-child td { border-bottom: none; }

.roster-table .creator-link {
  font-weight: 700; color: var(--ink); font-size: 1rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.roster-table .creator-link:hover { border-bottom-color: var(--ink); }
.roster-table tbody td:last-child { text-align: right; }


@media (max-width: 1000px) { .hero-graphic { display: none; } }

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    flex-direction: column; align-items: flex-start;
    background: rgba(242,235,223,0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid var(--rule2);
    padding: 84px 24px 32px; gap: 2px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 800;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 12px 14px; width: 100%; }
  .nav-link.nav-cta { margin-left: 0; margin-top: 12px; }
  .hamburger { display: flex; z-index: 901; }

  .about-grid, .clients-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 12px; }
  .clients-perks { grid-template-columns: 1fr; }

  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .roster-stats-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section  { padding: 64px 0; }
  .hero     { padding: 120px 0 56px; }
  .hero-inner, .hero-rule, .hero-footnote { padding-left: 24px; padding-right: 24px; }
  .hero-headline  { font-size: 2.6rem; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 24px 20px; }
  .about-pillars  { grid-template-columns: 1fr; }
  .footer-top     { flex-direction: column; gap: 8px; }
  /* Steps: shrink number column slightly on small screens */
  .step { grid-template-columns: 40px 1px 1fr; }
  .step-num { padding-right: 14px; }
  .step-body { padding-left: 20px; }

  .roster-stats-strip { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 1px 1fr; }
  .timeline-body { padding-left: 18px; }
}
