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

  :root {
    /* Light theme — same brand palette, inverted */
    --ink: #F4F2EC;          /* Bone — brand warm white, page background */
    --ink-2: #ffffff;        /* card / section background */
    --ink-3: #ECE9E0;        /* hover background */
    --rule: #DDD9CE;         /* hairlines */
    --text: #3a4050;         /* body text */
    --text-dim: #676e80;     /* secondary text */
    --white: #14151A;        /* Ink — headings & display text */
    --accent: #E8C24C;       /* Signal Gold — fills, borders, buttons */
    --accent-ink: #96780e;   /* darker gold for text on light bg */
    --accent-dim: rgba(232,200,74,0.18);
    --btn-ink: #14151A;      /* text on gold buttons */
    --mono: 'Syne Mono', monospace;
    --display: 'Playfair Display', 'Georgia', serif;
    --body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  nav.scrolled {
    background: rgba(244,242,236,0.92);
    backdrop-filter: blur(12px);
    border-color: var(--rule);
  }
  .nav-logo {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
  }
  .nav-logo span { color: var(--accent); }
  .nav-cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent);
    padding: 9px 20px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta:hover {
    background: var(--accent);
    color: var(--ink);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0 48px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--rule) 1px, transparent 1px),
      linear-gradient(90deg, var(--rule) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
  }

  .hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,200,74,0.16) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    pointer-events: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    max-width: 900px;
    position: relative;
  }

  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .hero-headline {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.08;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s forwards;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
  }
  .btn-primary {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--ink);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
  }
  .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost::after {
    content: '↓';
    font-size: 14px;
  }

  /* ─── TICKER BAR ─── */
  .ticker {
    border-top: 1px solid var(--rule);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .ticker-track {
    display: flex;
    gap: 64px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .ticker-item span { color: var(--accent); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── PROBLEM SECTION ─── */
  section { padding: 100px 48px; }

  .section-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--rule);
  }

  /* ─── STATS STRIP ─── */
  .stats-strip {
    background: var(--ink-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 64px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 0 40px;
    border-right: 1px solid var(--rule);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }
  .stat-item.visible { opacity: 1; transform: translateY(0); }
  .stat-number {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat-number span { color: var(--accent); }
  .stat-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.5;
    max-width: 160px;
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    margin-top: 56px;
  }
  .service-card {
    background: var(--ink);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s;
  }
  .service-card:hover { background: var(--ink-2); }
  .service-card:hover::before { height: 100%; }
  .service-num {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 20px;
  }
  .service-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.7;
  }

  /* ─── WHO IT'S FOR ─── */
  .who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .who-left h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .who-left h2 em {
    font-style: italic;
    color: var(--accent);
  }
  .who-left p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .check-list li {
    font-size: 15px;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-weight: 300;
  }
  .check-list li::before {
    content: '—';
    color: var(--accent);
    font-family: var(--mono);
    font-size: 12px;
    flex-shrink: 0;
  }

  /* ─── CTA ─── */
  .cta-block {
    background: var(--ink-2);
    border: 1px solid var(--rule);
    margin: 0 48px 100px;
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .cta-block::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,200,74,0.16) 0%, transparent 70%);
  }
  .cta-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .cta-headline {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .cta-email {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent);
    padding: 18px 40px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .cta-email:hover { background: var(--accent); color: var(--ink); }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--rule);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
  }
  .footer-logo span { color: var(--accent); }
  .footer-copy {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-dim);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .hero { padding: 0 24px; }
    section { padding: 72px 24px; }
    .stats-strip {
      grid-template-columns: 1fr 1fr;
      padding: 48px 24px;
      gap: 40px;
    }
    .stat-item {
      padding: 0;
      border-right: none;
      border-bottom: 1px solid var(--rule);
      padding-bottom: 32px;
    }
    .services-grid { grid-template-columns: 1fr; }
    .who-layout { grid-template-columns: 1fr; gap: 48px; }
    .cta-block {
      margin: 0 24px 72px;
      padding: 48px 32px;
      grid-template-columns: 1fr;
    }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ─── TOAST ─── */
  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink-3);
    border: 1px solid var(--accent);
    color: var(--white);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 14px 24px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

/* ─── NAV LINKS + MOBILE MENU (added) ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--accent); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  color: var(--white);
  font-family: var(--mono);
  font-size: 16px;
  padding: 8px 14px;
  cursor: pointer;
}

/* ─── INTERIOR PAGE HERO (added) ─── */
.page-hero {
  padding: 180px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-hero .hero-grid-lines { opacity: 0.2; }
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.page-hero h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 800px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.7;
  position: relative;
}

/* ─── SERVICE DETAIL BLOCKS (added) ─── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 1200px;
  margin: 0 auto;
}
.service-detail {
  background: var(--ink-2);
  padding: 44px 40px;
  transition: background 0.25s;
}
.service-detail:hover { background: var(--ink-3); }
.service-detail-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 18px;
}
.service-detail-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-detail-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-detail ul { list-style: none; }
.service-detail li {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0 7px 24px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.service-detail li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 11px;
}

/* ─── PROCESS STRIP (added) ─── */
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step { position: relative; }
.process-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── COMPANY / MISSION CARDS (added) ─── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.mv-card {
  border: 1px solid var(--rule);
  background: var(--ink-2);
  padding: 48px 40px;
  position: relative;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.mv-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.mv-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ─── VALUES — INVERTED DARK SECTION (added) ─── */
.values-section {
  background: #14151A;
  color: #c8cdd8;
}
.values-section .section-label { color: #e8c84a; }
.values-section .section-label::after { background: #2a2f3f; }
.values-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #f0f2f7;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 700px;
}
.values-heading em { font-style: italic; color: #e8c84a; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #2a2b33;
  border: 1px solid #2a2b33;
}
.value-card {
  background: #1B1C22;
  padding: 40px 36px;
}
.value-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #e8c84a;
  margin-bottom: 14px;
}
.value-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: #f0f2f7;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14.5px;
  color: #aab0bf;
  line-height: 1.7;
}

/* ─── STORY / ABOUT LAYOUT (added) ─── */
.story-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.story-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}
.story-body p {
  font-size: 16.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 640px;
}
.story-body p strong { color: var(--white); font-weight: 500; }

/* ─── CONTACT PAGE (added) ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-direct {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.contact-direct a {
  color: var(--accent);
  text-decoration: none;
}
.contact-direct a:hover { text-decoration: underline; }
.contact-form-shell {
  border: 1px solid var(--rule);
  background: var(--ink-2);
  padding: 40px;
  position: relative;
}
.contact-form-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}

/* ─── EXTRA RESPONSIVE (added) ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(13,15,20,0.12);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--rule); }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-toggle { display: block; }
  nav { background: rgba(244,242,236,0.92); backdrop-filter: blur(12px); }
  .page-hero { padding: 140px 24px 64px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; gap: 32px; }
  .story-title { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-shell { padding: 28px 20px; }
}
@media (max-width: 520px) {
  .stats-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .btn-primary { width: 100%; text-align: center; }
}

/* ═══ LIGHT THEME FIXUPS ═══
   Gold as TEXT uses --accent-ink for contrast; gold as FILL stays --accent. */
.hero-eyebrow, .page-hero-eyebrow, .section-label,
.mv-label, .service-num, .service-detail-num, .process-num,
.cta-eyebrow, .value-num { color: var(--accent-ink); }
.hero-eyebrow::before, .page-hero-eyebrow::before { background: var(--accent-ink); }
.nav-logo span, .footer-logo span { color: var(--accent-ink); }
.hero-headline em, .page-hero h1 em, .contact-info h2 em { color: var(--accent-ink); }
.stat-number span { color: var(--accent-ink); }
.ticker-item span { color: var(--accent-ink); }
.check-list li::before, .service-detail li::before { color: var(--accent-ink); }
.mv-card::before, .contact-form-shell::before { background: var(--accent); }
.value-num { color: #e8c84a; } /* dark section keeps bright gold */

/* Buttons: gold fill + ink text everywhere */
.btn-primary { color: var(--btn-ink); box-shadow: 0 8px 20px rgba(232,200,74,0.35); }
.nav-cta {
  background: var(--accent);
  color: var(--btn-ink);
  border-color: var(--accent);
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent); color: var(--btn-ink); opacity: 0.85; }
.cta-email {
  background: var(--accent);
  color: var(--btn-ink);
  border-color: var(--accent);
  font-weight: 600;
}
.cta-email:hover { background: var(--accent); color: var(--btn-ink); opacity: 0.85; }
.contact-direct a { color: var(--accent-ink); }

/* Cards get soft elevation on light bg */
.service-card, .service-detail, .mv-card, .contact-form-shell {
  box-shadow: 0 1px 3px rgba(13,15,20,0.05);
}

/* Toast on light */
.toast {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(13,15,20,0.15);
}

/* Noise overlay lighter */
body::before { opacity: 0.25; }

/* ─── CUSTOM CONTACT FORM (replaces FreeContactForm) ─── */
.rsg-form .form-field { margin-bottom: 22px; }
.rsg-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.rsg-form input, .rsg-form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--rule);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rsg-form input:focus, .rsg-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232,200,74,0.4);
}
.rsg-form textarea { resize: vertical; min-height: 130px; }
.rsg-form .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.rsg-form button {
  width: 100%;
  background: var(--accent);
  color: var(--btn-ink);
  border: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.rsg-form button:hover { opacity: 0.85; }
.form-status {
  display: none;
  font-size: 14.5px;
  line-height: 1.6;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid;
}
.form-status.ok {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--white);
}
.form-status.err {
  border-color: #c05b4d;
  background: rgba(192,91,77,0.08);
  color: #8c3a2f;
}


/* ─── LOGO LOCKUP (added) ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo .logo-rsg {
  font-family: var(--body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}
.nav-logo .logo-cap {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--accent-ink);
  margin-top: 4px;
  line-height: 1;
}
.footer-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-lockup svg { width: 22px; height: 22px; }
@media (max-width: 400px) {
  .nav-logo .logo-cap { display: none; }
}

/* ─── FORM SELECT + 2-COL ROW (added) ─── */
.rsg-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) { .rsg-form .form-row { grid-template-columns: 1fr; } }
.rsg-form select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--rule);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2396780e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rsg-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232,194,76,0.4);
}

/* ─── LOGO REFINEMENT (v2) ─── */
.nav-logo svg { width: 26px; height: 26px; }
.nav-logo { gap: 10px; }
.nav-logo .logo-rsg { font-size: 18px; letter-spacing: 0.04em; }
.footer-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── LOGO SCALE + HERO SPACING FIX (v3) ─── */
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo .logo-rsg { font-size: 23px; letter-spacing: 0.03em; }
.footer-lockup svg { width: 26px; height: 26px; }

/* Hero: less dead air above the headline */
.hero-content { padding-top: 96px; }
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-content {
    padding-top: 132px;
    padding-bottom: 56px;
    justify-content: flex-start;
  }
  .nav-logo svg { width: 32px; height: 32px; }
  .nav-logo .logo-rsg { font-size: 21px; }
  .page-hero { padding-top: 124px; }
}

/* ─── POLISH PASS (v4) ─── */
/* Interior page hero: kill the dead air on desktop too */
.page-hero { padding: 132px 48px 64px; }
@media (max-width: 900px) { .page-hero { padding: 110px 24px 48px; } }

/* Visible keyboard focus on bone background */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .hero-eyebrow, .hero-headline, .hero-sub, .hero-actions { animation: none; opacity: 1; }
  .stat-item { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─── LEGAL PAGES ─── */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.legal-body h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 14px;
}
.legal-body p, .legal-body li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent-ink); }

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }
@media (max-width: 900px) {
  footer { flex-direction: column; gap: 14px; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ─── APOLLO FORM SLOT — no decoration, Apollo controls its own look ─── */
.contact-form-slot { min-height: 480px; }
#apollo-forms { width: 100%; }

/* ─── HERO TOP GAP FIX (v5) ─── */
@media (min-width: 901px) {
  .hero-content {
    justify-content: flex-start;
    padding-top: 148px;
  }
}
