/* =============================================
   SIGNAL LOOM AI — WARM PROFESSIONAL DESIGN
   Accessible, warm, engineering-forward.
   Light-mode primary: light gray-blue body, dark text.
   Dark accents (nav, footer, proof strip) use muted slate with white text.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --cream:        #fefcf7;
  --cream-dark:   #f5f0e8;
  --parchment:    #EDE7DB;

  /* ── NEW PALETTE: light gray-blue, no dark navy ── */
  /* Body / page background — very light blue-gray */
  --navy:         #EEF3F8;
  /* Dark accent sections — muted slate (nav, footer, proof strip) */
  --navy-dark:    #D8E2EC;
  /* Text on dark accent sections */
  --text-on-dark: #FFFFFF;
  --text-muted-on-dark: rgba(255,255,255,0.65);

  --bg-surface:   #fefcf7;
  --text-dim:     #5a5a72;
  --border-strong:#C8B89A;

  --gold:         #c4961d;
  --gold-b:       #D4A843;
  --gold-pale:    #F5E8D0;

  --steel:        #4e83c5;
  --steel-light:  #6B9FD4;
  --electric:     #00b4d8;
  --electric-dark:#0096b4;
  --electric-dim: rgba(0,180,216,0.1);

  --text:         #1a1a2e;
  --text-muted:   #5a5a72;
  --text-light:   #8a8aa0;

  --border:       #DDD5C5;
  --border-light: #EDE7DB;
  --white:        #FFFFFF;
  --off-white:    #fefcf7;

  --muted-green:  #2d6a4f;
  --amber:        #d97706;

  /* ── TESTIMONIALS / TRUST-BAR (were undefined — now fixed) ── */
  --bgSurface:    #fefcf7;
  --bgDeep:       #EEF3F8;
  --textDim:      #8a8aa0;
  --textMuted:    #5a5a72;
  --accentBright: #00b4d8;
  --cyan:         #00b4d8;
  --border:       #DDD5C5;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  --radius:      10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(27,26,46,0.06);
  --shadow-md:   0 4px 24px rgba(27,26,46,0.10);
  --shadow-lg:   0 8px 48px rgba(27,26,46,0.14);
  --transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);          /* light blue-gray body */
}

::selection { background: var(--gold-pale); color: var(--navy-dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--parchment); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);              /* dark text on light body — always readable */
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text); line-height: 1.7; }
a { color: var(--electric); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--electric); }

/* ── GENERIC PAGE CONTENT (single.html / Markdown pages) ── */
main article.prose {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 48px;
}
main article.prose h1,
main article.prose h2,
main article.prose h3,
main article.prose h4 { color: var(--text); }
main article.prose p { color: var(--text); }
main article.prose a { color: var(--electric); }
main article.prose strong { color: var(--text); }
main article.prose ul,
main article.prose ol { color: var(--text); }
main article.prose li { color: var(--text-muted); }
main article.prose hr { border-color: var(--border-light); margin: 32px 0; }
main article.prose blockquote {
  border-left: 3px solid var(--steel);
  padding-left: 20px;
  color: var(--text-muted);
  font-style: italic;
}

.site-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HERO — two-column layout with photo right
   ========================================== */
.hero {
  background: var(--cream);
  padding: 72px 0 72px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text { max-width: 520px; }

.hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 18px;
  padding: 5px 14px;
  background: var(--gold-pale);
  border-radius: 99px;
  border: 1px solid rgba(168,113,58,0.2);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.12;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: var(--electric);
  color: var(--white);
  font-family: 'Inter', var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--electric-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
  color: var(--white);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost-dark:hover { border-color: var(--electric); color: var(--electric); }

/* ==========================================
   PROOF STRIP — muted slate, white text
   ========================================== */
.proof-strip {
  background: var(--navy-dark);
  padding: 56px 0;
}

.proof-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-item {
  text-align: center;
  padding: 0 48px;
}

.proof-num {
  font-family: 'JetBrains Mono', var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted-on-dark);
  letter-spacing: 0.02em;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ==========================================
   PHOTO BAND — full-width image break
   ========================================== */
.section-img-band {
  width: 100%;
  background: var(--cream);
}

.section-img-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.section-img-band img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 16px;
}

.section-img-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
  font-style: italic;
}

.dark-img-band {
  background: var(--navy-dark);
}

/* ==========================================
   SECTION SPACING
   ========================================== */
.section-light {
  background: var(--off-white);
  padding: 96px 0;
}

.section-dark {
  background: var(--cream-dark);
  padding: 96px 0;
}

/* section-darkest — now light blue-gray, dark text */
.section-darkest {
  background: var(--navy);
  padding: 96px 0;
}

.section-split {
  background: var(--cream-dark);
  padding: 96px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-cta-band {
  background: var(--cream-dark);
  border-top: 1px solid var(--border-light);
  padding: 96px 0;
  text-align: center;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.eyebrow-dark {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: var(--gold-pale);
  border-radius: 99px;
  border: 1px solid rgba(168,113,58,0.2);
}

.eyebrow-light {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: rgba(78,131,197,0.10);
  border-radius: 99px;
  border: 1px solid rgba(78,131,197,0.25);
}

.section-darkest .eyebrow-light {
  color: var(--gold-b);
  background: rgba(196,150,26,0.10);
  border-color: rgba(196,150,26,0.25);
}

.section-header-center h2 { color: var(--text); margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.section-sub-light { font-size: 1rem; color: var(--text); line-height: 1.75; }

.section-dark .section-header-center h2,
.section-darkest .section-header-center h2 { color: var(--text); }

/* ==========================================
   PROBLEM / SOLUTION SPLIT
   ========================================== */
.split-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.split-block {
  border-radius: var(--radius-md);
  padding: 40px;
}

.split-problem {
  background: var(--off-white);
  border: 1px solid var(--border-strong);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.split-solution {
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.07);
}

.split-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 16px;
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-pale);
  border-radius: 99px;
}

.split-solution .split-tag {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.12);
}

.split-block h2 { font-size: 1.5rem; margin-bottom: 16px; line-height: 1.25; }
.split-block p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }

.split-problem h2 { color: var(--text); }
.split-problem p  { color: var(--text-muted); }
.split-solution h2 { color: var(--text-on-dark); }
.split-solution p  { color: var(--text-muted-on-dark); }

.split-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.split-list li { font-size: 0.875rem; padding-left: 18px; position: relative; line-height: 1.55; }
.split-problem .split-list li { color: var(--text-muted); }
.split-solution .split-list li { color: var(--text-muted-on-dark); }

.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.split-problem .split-list li::before { background: var(--electric); }
.split-solution .split-list li::before { background: var(--gold-b); }

/* ==========================================
   SERVICES
   ========================================== */
.services-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  border-color: var(--electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--electric);
}

.svc-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 10px;
}

.svc-card h3 { color: var(--text); font-size: 1.2rem; margin-bottom: 6px; }
.svc-price { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--electric); margin-bottom: 14px; }
.svc-card p.desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; flex-grow: 1; }

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.svc-list li { font-size: 0.8rem; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.5; }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--electric); }

.section-cta { text-align: center; font-size: 0.95rem; color: var(--text-muted); }
.section-cta a { color: var(--electric); font-weight: 500; }

/* ==========================================
   PRODUCTS
   ========================================== */
.products-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.product-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  min-width: 200px;
}

.product-pill:hover { background: var(--cream); border-color: var(--electric); transform: translateY(-1px); }
.pill-name { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--text); }
.pill-type { font-size: 12px; color: var(--text-muted); }

/* ==========================================
   HOW IT WORKS
   ========================================== */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.step-item { text-align: center; padding: 40px 24px; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--electric);
  margin: 0 auto 20px;
}

.step-item h4 { font-family: 'Playfair Display', var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.step-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ==========================================
   SELECTED WORK
   ========================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s ease;
}

.work-card:hover { border-color: rgba(168,113,58,0.4); background: #C8D6E5; }
.work-label { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--electric); margin-bottom: 12px; }
.work-card h3 { color: var(--text-on-dark); font-size: 1.15rem; margin-bottom: 12px; }
.work-card p { font-size: 0.875rem; color: var(--text-muted-on-dark); line-height: 1.75; margin-bottom: 20px; }
.work-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.work-stats span { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted-on-dark); background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.12); }

/* ==========================================
   CTA
   ========================================== */
.cta-inner { max-width: 580px; margin: 0 auto; padding: 0 32px; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 16px; }
.cta-inner > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.cta-footnote { margin-top: 20px; font-size: 0.85rem; color: var(--text-light); }
.cta-footnote a { color: var(--electric); }

/* ==========================================
   FOOTER
   ========================================== */
footer { background: var(--navy-dark); padding: 48px 0; }

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--text-on-dark); }
.footer-brand span { color: var(--electric); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted-on-dark); transition: var(--transition); }
.footer-links a:hover { color: var(--electric); }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-attribution strong { font-size: 14px; color: var(--text); }
.testimonial-attribution span { font-size: 12px; color: var(--text-muted); }
.testimonial-outcome {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.outcome-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accentBright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.outcome-metric {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background: var(--bgDeep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.trust-label {
  font-size: 12px;
  color: var(--textMuted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
}

/* ==========================================
   SITE NAV — light body, dark text on light nav
   ========================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);        /* white nav bar */
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(27,26,46,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.nav-wordmark span { color: var(--gold-b); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.nav-link:hover { color: var(--text); background: var(--cream); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-cta .btn-primary {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.nav-cta .btn-primary:hover {
  background: var(--gold-b);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.nav-toggle:hover { background: var(--cream); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.22s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
  gap: 2px;
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s ease;
}

.nav-mobile-link:hover { color: var(--text); }

.nav-mobile-cta { margin-top: 16px; }

.nav-mobile-cta .btn-accent-sm {
  display: block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; gap: 16px; height: 60px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .site-nav { flex-direction: column; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { display: none; }
  .hero-text { max-width: 100%; }
  .services-3col { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .work-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .site-wrapper { padding: 0 20px; }
  .split-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .proof-grid { flex-direction: column; gap: 28px; }
  .proof-divider { width: 48px; height: 1px; }
  .proof-item { padding: 0; }
  .steps-3 { grid-template-columns: 1fr; max-width: 400px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .site-wrapper { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .proof-inner, .split-inner { padding: 0 16px; }
  .section-img-band img { height: 220px; }
  .services-3col, .work-grid { padding: 0 16px; }
  .products-flex, .steps-3, .section-cta { padding: 0 16px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .nav-wordmark { font-size: 1.1rem; }
}
/* ── DARK MODE OVERRIDES ───────────────────────────────────── */
[data-theme="dark"] .nav-cta .btn-primary {
  color: #1a1a2e;
  background: var(--gold-b);
}
[data-theme="dark"] .nav-cta .btn-primary:hover {
  background: var(--gold);
  color: #1a1a2e;
}
