/* =========================================================================
   Gold People Solutions — Rebuild Design System
   Source of truth for tokens: ../../.claude/web-style.md (extracted from the
   live site's own CSS — see that file for provenance of every value below)
   ========================================================================= */

:root {
  /* Brand colors — extracted from live site */
  --gold: #C9A227;
  --terracotta: #D85A30;
  --ink: #0D0D0D;
  --paper: #EFEFEF;
  --white: #FFFFFF;
  --black: #000000;
  --gray-mid: #b7b7b7;
  --gray-line: #e2e2e2;

  /* Dark-panel palette — confirmed real, heavily-used-on-the-live-site tones
     (30-49 occurrences per page), not the unused --primary/--secondary theme
     defaults excluded from .claude/web-style.md. Used for the dark
     "premium panel" section/card treatment the live site applies to its
     service-tier, coaching-package, and case-study cards. */
  --panel-dark: #1c1c1c;
  --panel-border: #2a2a2a;

  /* Nav tint-on-scroll state (toggled by js/main.js) */
  --nav-bg: var(--white);
  --nav-shadow: none;

  /* Type */
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-height: 105px;
  --max-width: 1180px;
  --radius-pill: 999px;
  --radius-card: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.center { text-align: center; }
.muted { color: #55575c; }
.small { font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--white); }
.btn-primary:hover { background: #000; }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: #b8931f; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--gray-line); font-size: 14px; padding: 10px 18px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--nav-bg);
  box-shadow: var(--nav-shadow);
  transition: background-color .25s ease, box-shadow .25s ease;
}
header.site-header.is-scrolled {
  --nav-bg: #f4f4f2; /* very subtle gray tint on scroll, per spec */
  --nav-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 83px; width: auto; object-fit: contain; }
nav.primary-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
nav.primary-nav > .nav-item { position: relative; }
nav.primary-nav a.nav-link, nav.primary-nav button.nav-link {
  font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 10px 14px; border-radius: 8px; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; font: inherit;
}
nav.primary-nav a.nav-link:hover, nav.primary-nav button.nav-link:hover { background: rgba(201,162,39,.12); color: var(--gold); }
nav.primary-nav .nav-item.current > a.nav-link { color: var(--gold); }
.caret { font-size: 10px; margin-top: 1px; }
.dropdown-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--gray-line); border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-item:hover .dropdown-panel, .nav-item:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.dropdown-panel a:hover { background: rgba(201,162,39,.12); color: var(--gold); }
.dropdown-panel .dd-desc { display: block; font-size: 12px; color: #777; margin-top: 2px; }
.nav-cta { flex-shrink: 0; }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

@media (max-width: 980px) {
  nav.primary-nav { display: none; }
  .mobile-toggle { display: block; }
  .nav-cta .btn span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 80px; background: var(--white); border-bottom: 1px solid var(--gray-line); }
.hero.hero-prominent {
  padding: 128px 0 104px;
  background: linear-gradient(180deg, #fffaf0 0%, var(--white) 70%);
}
.hero.hero-muted { padding: 64px 0 56px; background: #fbfbfa; }
.hero h1 { font-size: 48px; max-width: 820px; }
.hero.hero-prominent h1 { font-size: 58px; max-width: 900px; }
.hero.hero-muted h1 { font-size: 36px; max-width: 760px; }
.hero .sub { font-size: 19px; max-width: 640px; color: #3c3f45; }
.hero.hero-muted .sub { font-size: 17px; max-width: 600px; }
.hero .cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .hero.hero-prominent h1 { font-size: 38px; }
}

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 32px 0; border-bottom: 1px solid var(--gray-line); }
@media (max-width: 640px) { .stat-strip { grid-template-columns: 1fr; } }
.stat { min-width: 0; }
.stat .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); }
.stat .label { font-size: 14px; color: #555; }

/* ---------- Business-effort parity strip (home) ---------- */
.effort-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .effort-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .effort-grid { grid-template-columns: 1fr; } }
.effort-card {
  border: 1px solid var(--gray-line); border-radius: var(--radius-card); padding: 26px;
  display: flex; flex-direction: column; gap: 10px; background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}
.effort-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.effort-card .icon { font-size: 26px; }
.effort-card h3 { font-size: 18px; margin-bottom: 2px; }
.effort-card p { font-size: 14px; color: #555; flex: 1; }
.effort-card .go { font-size: 13px; font-weight: 700; color: var(--gold); }

/* ---------- Generic cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--gray-line); border-radius: var(--radius-card); padding: 26px;
  background: var(--white); display: flex; flex-direction: column; gap: 12px; height: 100%;
}
.card .tag { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--terracotta); font-weight: 700; margin-bottom: 4px; }
.card h3 { font-size: 19px; }
.card .meta { font-size: 13px; color: #777; }
.card .cta-link { margin-top: auto; font-weight: 700; color: var(--gold); font-size: 14px; }
.card-thumb { margin: -26px -26px 4px; width: calc(100% + 52px); height: 160px; object-fit: cover; border-radius: var(--radius-card) var(--radius-card) 0 0; }

/* Info card: a card used purely to hold a labeled list rather than a
   clickable offer summary. */
.info-card ul { list-style: disc; margin: 0; padding-left: 20px; }
.info-card li { font-size: 15px; color: #333; margin-bottom: 10px; line-height: 1.5; }
.info-card li:last-child { margin-bottom: 0; }
.info-card .tag { margin-bottom: 0; }

/* Credentials & Track Record (About page) — an open, two-column list
   layout instead of two cramped bordered boxes, with generous line-height
   and a gold marker so it reads cleanly at any column width. */
.credential-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 700px) { .credential-grid { grid-template-columns: 1fr; gap: 32px; } }
.credential-col h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: 18px; }
.clean-list { list-style: none; margin: 0; padding: 0; }
.clean-list li {
  font-size: 16px; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--gray-line);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.clean-list li:first-child { padding-top: 0; }
.clean-list li:last-child { border-bottom: none; padding-bottom: 0; }
.clean-list li::before { content: "—"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Dark panel treatment (confirmed real on the live site —
   services/coaching/case-studies use #1c1c1c cards on a #2a2a2a→#0d0d0d
   section background, not the flat white cards used elsewhere) ---------- */
.section-dark {
  background: linear-gradient(180deg, var(--panel-border) 0%, var(--ink) 100%);
  color: var(--paper);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark .muted { color: #cfcfcf; }
.card-dark {
  background: var(--panel-dark);
  border-color: var(--panel-border);
  color: var(--paper);
}
.card-dark h3 { color: var(--white); }
.card-dark p, .card-dark .meta { color: #b7b7b7; }
.card-dark .tag { color: var(--gold); }
.card-dark .cta-link { color: var(--gold); }
.card-dark:hover { border-color: var(--gold); }

/* Flat-dark variant: same dark text rules as .section-dark, but a flat
   #0d0d0d fill instead of the gradient — the live site alternates both
   across a single page (confirmed on /about). */
.section-flat-dark { background: var(--ink); color: var(--paper); }
.section-dark .eyebrow, .section-flat-dark .eyebrow { color: var(--gold); }
.section-dark h1, .section-flat-dark h1,
.section-dark h2, .section-flat-dark h2,
.section-dark h3, .section-flat-dark h3 { color: var(--white); }
.section-dark p, .section-flat-dark p,
.section-dark .muted, .section-flat-dark .muted { color: #cfcfcf; }
.section-dark .sub, .section-flat-dark .sub { color: #d8d8d8; }
.section-flat-dark .clean-list li { border-bottom-color: #2a2a2a; color: var(--paper); }
.section-flat-dark .clean-list li strong { color: var(--white); }

/* Flat panel-dark variant (#1c1c1c) — confirmed on the live /services page's
   "How An Engagement Works" section, distinct from the #0d0d0d ink flat/gradient
   sections it sits between. */
.section-flat-panel { background: var(--panel-dark); color: var(--paper); }
.section-flat-panel .eyebrow { color: var(--gold); }
.section-flat-panel h1, .section-flat-panel h2, .section-flat-panel h3 { color: var(--white); }
.section-flat-panel p, .section-flat-panel .muted { color: #cfcfcf; }
.section-flat-panel .sub { color: #d8d8d8; }
.section-flat-panel .clean-list li { border-bottom-color: #2a2a2a; color: var(--paper); }
.section-flat-panel .clean-list li strong { color: var(--white); }

.site-footer.dark-footer { background: var(--ink); border-top-color: #2a2a2a; }
.site-footer.dark-footer .footer-grid a, .site-footer.dark-footer h5 { color: #cfcfcf; }
.site-footer.dark-footer .footer-grid a:hover { color: var(--gold); }
.site-footer.dark-footer .footer-bottom { border-top-color: #2a2a2a; color: #999; }
.site-footer.dark-footer .muted { color: #b7b7b7; }

/* Specificity fix: .hero.hero-muted / .hero.hero-prominent are two-class
   selectors that otherwise beat the single-class .section-dark/.section-flat-dark
   rules above regardless of source order, leaving a dark-themed hero
   section rendering with its original light background. */
.hero.section-dark { background: linear-gradient(180deg, var(--panel-border) 0%, var(--ink) 100%); border-bottom-color: #2a2a2a; }
.hero.section-flat-dark { background: var(--ink); border-bottom-color: #2a2a2a; }

/* About-page detail components, measured directly off the live page */
.gold-rule { width: 60px; height: 3px; background: var(--gold); border: none; margin: 14px 0 22px; }
.headline-accent { color: var(--gold); }
.photo-gold-frame { border: 2px solid var(--gold); padding: 6px; }
.stat-card { background: var(--panel-dark); border: 1px solid var(--panel-border); border-radius: 20px; padding: 30px; }
.stat-card > .eyebrow { color: var(--terracotta); }
.stat-row { display: flex; align-items: baseline; gap: 16px; padding: 12px 0; }
.stat-row .num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); flex-shrink: 0; min-width: 56px; }
.stat-row .label { font-size: 16px; color: var(--paper); }
.card-credential { padding: 30px; border-radius: 20px; }
.card-tick { display: block; width: 24px; height: 2px; background: var(--gold); margin-bottom: 14px; }
.card-credential p { margin: 0; font-size: 18px; line-height: 1.5; color: var(--paper); }

/* BRIDGE Process — stacked, full-width bordered steps, matching the live
   "What Working Together Looks Like" section (terracotta border/heading,
   not the 3-column card-grid used elsewhere). */
.bridge-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.bridge-step { border: 1px solid var(--terracotta); border-radius: 4px; padding: 26px 30px; background: transparent; }
.bridge-step h3 { color: var(--terracotta); font-size: 19px; margin-bottom: 10px; }
.bridge-step p { color: var(--paper); margin: 0; max-width: 900px; }

.pull-quote-section { padding: 56px 0; text-align: center; }
.pull-quote { max-width: 760px; margin: 0 auto; font-size: 22px; font-style: italic; font-weight: 500; line-height: 1.5; color: var(--ink); }
.pull-quote-attribution { display: block; margin-top: 16px; font-size: 14px; font-style: normal; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .04em; }
.press-logo { width: 64px; height: 64px; object-fit: contain; object-position: left center; align-self: flex-start; margin-bottom: 14px; }

/* ---------- Two-col layout ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Pain-point list ("Does this sound familiar?") ---------- */
.pain-list { display: grid; gap: 20px; margin-top: 28px; }
.pain-item { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; }
.pain-item h3 { font-size: 18px; margin-bottom: 6px; }
.pain-item p { color: #4a4d52; font-size: 15.5px; }

/* ---------- Process steps (BRIDGE) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { background: #fbfbfa; border: 1px solid var(--gray-line); border-radius: var(--radius-card); padding: 22px; }
.process-step .letters { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.process-step h4 { font-size: 16px; margin: 8px 0 6px; }
.process-step p { font-size: 14px; color: #555; margin: 0; }
.section-dark .process-step { background: var(--panel-dark); border-color: var(--panel-border); }
.section-dark .process-step h4 { color: var(--white); }
.section-dark .process-step p { color: #b7b7b7; }

/* ---------- Comparison table (services overview) ----------
   Matches the live /services page's own "Your Path Forward" table
   verbatim (extracted from its self-contained custom-code CSS block):
   coral header, alternating dark rows, gold-accented rowspan group cells,
   rounded outer corners. */
.compare-table { width: 100%; max-width: 960px; margin: 24px auto 0; border-collapse: separate; border-spacing: 0; font-size: 17px; line-height: 1.5; }
.compare-table th { background: var(--terracotta); color: var(--white); font-weight: 700; text-align: left; padding: 18px 22px; }
.compare-table th:first-child { border-top-left-radius: 12px; }
.compare-table th:last-child { border-top-right-radius: 12px; }
.compare-table td { color: var(--paper); padding: 18px 22px; vertical-align: top; }
.compare-table tbody tr:nth-child(odd) td { background: #191919; }
.compare-table tbody tr:nth-child(even) td { background: #212121; }
.compare-table td.group {
  background: #161616 !important;
  color: var(--white);
  font-weight: 700;
  border-left: 3px solid var(--gold);
}
.compare-table tbody tr:last-child td:first-child { border-bottom-left-radius: 12px; }
.compare-table tbody tr:last-child td:last-child { border-bottom-right-radius: 12px; }
@media (max-width: 640px) { .compare-table { font-size: 14px; } .compare-table td, .compare-table th { padding: 12px 12px; } }

/* ---------- BRIDGE spotlight (case studies) ---------- */
.bridge-step-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.process-step.bridge-focus { border-color: var(--gold); border-width: 2px; background: #fff; box-shadow: 0 8px 26px rgba(201,162,39,.28); position: relative; transform: translateY(-2px); }
.process-step.bridge-focus::after {
  content: "This Case Study"; position: absolute; top: -11px; right: 16px;
  background: var(--gold); color: #1a1a1a; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
}
.process-step.bridge-muted { opacity: .42; filter: grayscale(55%); transition: opacity .2s ease; }
.process-step.bridge-muted:hover { opacity: .75; }
.lesson-callout { border-left: 4px solid var(--gold); background: #fff; padding: 22px 26px; margin-top: 28px; border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.lesson-callout .eyebrow { color: var(--terracotta); }
.lesson-callout p { margin: 8px 0 0; font-size: 16px; max-width: 760px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial { background: var(--ink); color: var(--paper); border-radius: var(--radius-card); padding: 30px; }
.testimonial p.quote { font-size: 18px; font-style: italic; margin-bottom: 16px; }
.testimonial .who { font-size: 14px; color: var(--gold); font-weight: 700; }

/* ---------- Final CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; padding: 64px 0; }
.cta-band h2 { color: var(--white); }
.cta-band .cta-row { justify-content: center; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.form-field select, .form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-line); border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink);
}
.form-field select:focus, .form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: 13px; color: #777; margin-top: -8px; margin-bottom: 18px; }
.dev-note {
  background: #fff7e0; border: 1px dashed var(--gold); border-radius: 10px; padding: 14px 16px;
  font-size: 13px; color: #6b5716; margin-bottom: 24px;
}

/* ---------- Calendar placeholder ---------- */
.calendar-placeholder {
  border: 1px solid var(--gray-line); border-radius: var(--radius-card); overflow: hidden;
  background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.calendar-placeholder .cal-head { background: var(--ink); color: var(--paper); padding: 16px 20px; font-weight: 700; font-family: var(--font-display); display: flex; justify-content: space-between; align-items: center; }
.calendar-placeholder .cal-body { padding: 20px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 16px; }
.cal-cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 13px; color: #999; background: #fafafa; }
.cal-cell.avail { background: rgba(201,162,39,.15); color: var(--ink); font-weight: 700; cursor: not-allowed; }
.cal-slots { display: flex; gap: 10px; flex-wrap: wrap; }
.cal-slot { border: 1px solid var(--gray-line); border-radius: 8px; padding: 8px 14px; font-size: 13px; color: #999; cursor: not-allowed; }
.cal-disabled-note { text-align: center; font-size: 12px; color: #b08b1f; margin-top: 14px; font-weight: 700; }

/* ---------- Footer ---------- */
footer.site-footer { background: #fafaf9; border-top: 1px solid var(--gray-line); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #777; margin-bottom: 12px; }
.footer-grid a { display: block; font-size: 14px; padding: 4px 0; color: #333; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--gray-line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #888; }

/* ---------- Rebuild-proposal banner ---------- */
.proposal-banner {
  background: var(--gold); color: var(--ink); text-align: center; font-size: 13px; font-weight: 700;
  padding: 8px 16px;
}
.proposal-banner strong { text-decoration: underline; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.pill-tag { display: inline-block; background: rgba(201,162,39,.15); color: #8a6d1c; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
