/* site.css — NAFC marketing pages (index.html, engine.html)
   Purpose: consistent, technical, professional styling without colliding with the Test Engine UI stylesheet (styles.css).
*/

:root{
  --nafc-green:#77933c;
  --nafc-green-dark:#446122;
  --nafc-green-deep:#2f4a18;
  --nafc-ink:#1f1f1f;
  --nafc-muted:#5a5f57;
  --nafc-bg:#f0f3ef;
  --nafc-panel:#f7f9f7;
  --nafc-card:#ffffff;
  --nafc-border:#c2cec0;
  --nafc-yellow:#f4bf20;
  --nafc-warn:#b84f00;
  --nafc-warn-bg:#fff3e6;
  --nafc-shadow:0 12px 30px rgba(0,0,0,.10);
  --nafc-radius:12px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  color:var(--nafc-ink);
  background:linear-gradient(180deg, var(--nafc-bg) 0%, #ffffff 55%, var(--nafc-bg) 100%);
  font-family:"Segoe UI", Tahoma, Verdana, sans-serif;
}

a{ color:inherit; }

/* ===== Home / general marketing styles ===== */
.wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 22px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      border-bottom: 1px solid var(--nafc-border);
      backdrop-filter: blur(8px);
    }

    .topbar-row {
      min-height: 76px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 250px;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--nafc-border);
    }

    .brand h1 {
      margin: 0;
      color: var(--nafc-green);
      font-size: 22px;
      letter-spacing: 0.2px;
    }

    .brand p {
      margin: 3px 0 0;
      color: var(--nafc-green-dark);
      font-size: 12px;
    }

    .nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }


    .nav a{
      border: 1px solid rgba(255,255,255,0.0);
      border-radius: 999px;
      padding: 8px 12px;
      text-decoration: none;
      color: var(--nafc-green-dark);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .nav a:hover {
      border-color: var(--nafc-green);
    }

    .actions {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      min-width: 210px;
    }

    .btn {
      border: 1px solid var(--nafc-green);
      border-radius: 10px;
      background: var(--nafc-green);
      color: #fff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      padding: 10px 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .btn.secondary {
      background: #fff;
      color: var(--nafc-green-dark);
      border-color: var(--nafc-border);
    }

    .btn.yellow {
      background: var(--nafc-yellow);
      color: #2b2b2b;
      border-color: #c99a10;
    }

    .hero {
      min-height: 78vh;
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(14, 25, 13, 0.72), rgba(14, 25, 13, 0.42) 48%, rgba(14, 25, 13, 0.25) 100%),
        url("images/fixture.PNG") center/cover no-repeat;
      border-bottom: 6px solid var(--nafc-green);
    }

    .hero-panel {
      width: min(520px, 100%);
      background: rgba(15, 23, 14, 0.56);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 14px;
      padding: 24px;
      color: #f5f7f4;
      box-shadow: var(--nafc-shadow);
      margin: 34px 0;
      transform: translateX(-150px);
    }

    .hero-panel h2 {
      margin: 0 0 10px;
      font-size: 46px;
      line-height: 1.08;
    }

    .hero-panel p {
      margin: 0;
      font-size: 21px;
      line-height: 1.5;
      color: #e8ede5;
    }

    .section {
      padding: 34px 0;
    }

    .about h3,
    .services h3,
    .fixtures h3,
    .faq h3,
    .contact h3 {
      margin: 0 0 16px;
      text-align: center;
      color: var(--nafc-green);
      font-size: 42px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .about-card {
      background: var(--nafc-panel);
      border-radius: var(--nafc-radius);
      border: 1px solid #d5ddd3;
      padding: 20px;
      color: #333c33;
      font-size: 21px;
      line-height: 1.6;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .service {
      background: #dfe3de;
      border-radius: var(--nafc-radius);
      padding: 0 16px 16px;
      border: 1px solid #d0d8ce;
      text-align: center;
    }

    .service-icon {
      width: 72px;
      height: 72px;
      margin: -14px auto 14px;
      border-radius: 16px;
      background: var(--nafc-green);
      color: #fff;
      font-weight: 800;
      letter-spacing: 0.5px;
      display: grid;
      place-items: center;
      border: 4px solid var(--nafc-bg);
      font-size: 18px;
    }

    .service h4 {
      margin: 0 0 8px;
      color: #2e3530;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .service p {
      margin: 0;
      color: #3a423b;
      font-size: 18px;
      line-height: 1.45;
    }

    .fixtures-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .fixture {
      background: var(--nafc-card);
      border: 1px solid var(--nafc-border);
      border-radius: var(--nafc-radius);
      padding: 12px;
      box-shadow: var(--nafc-shadow);
    }

    .fixture img {
      width: 100%;
      height: 320px;
      object-fit: contain;
      object-position: center;
      background: #f3f6f2;
      border: 1px solid #d8e0d5;
      border-radius: 10px;
      display: block;
    }

    .fixture p {
      margin: 10px 2px 0;
      font-size: 13px;
      color: #2f3b2d;
      line-height: 1.5;
    }

    .cta {
      background: var(--nafc-green);
      color: #fff;
      text-align: center;
      padding: 38px 0;
      margin-top: 12px;
    }

    .cta h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 42px;
    }

    .cta p {
      margin: 0 0 18px;
      font-size: 20px;
    }

    .faq-wrap {
      max-width: 860px;
      margin: 0 auto;
    }

    details.faq-item {
      border-top: 1px solid #4abf67;
      padding: 16px 0;
    }

    details.faq-item:last-child {
      border-bottom: 1px solid #4abf67;
    }

    details.faq-item summary {
      list-style: none;
      cursor: pointer;
      font-size: 18px;
      color: var(--nafc-green);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      letter-spacing: 0.6px;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-sign {
      color: #d2a420;
      font-size: 32px;
      line-height: 1;
      min-width: 18px;
      text-align: right;
    }

    details.faq-item .answer {
      margin-top: 12px;
      color: #384137;
      font-size: 18px;
      line-height: 1.6;
    }

    .faq .answer a,
    .contact-legal a,
    .contact p a {
      color: var(--nafc-green);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 8px;
    }

    .contact-grid input,
    .contact-grid textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #7f867e;
      background: #fff;
      font: inherit;
      font-size: 14px;
      border-radius: 16px;
    }

    .contact-grid textarea {
      grid-column: 1 / -1;
      min-height: 110px;
      resize: vertical;
    }

    .contact-row {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .contact-meta {
      margin-top: 12px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: start;
    }

    .contact-legal {
      font-size: 13px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-legal a {
      color: var(--nafc-green-dark);
    }

    .contact-legal input[type="email"] {
      width: 100%;
      max-width: 360px;
      padding: 10px 12px;
      border: 1px solid #7f867e;
      border-radius: 8px;
      font: inherit;
      font-size: 14px;
      background: #fff;
    }

    .contact-turnstile {
      padding-top: 2px;
    }

    .footer {
      margin-top: 20px;
      background: var(--nafc-green);
      color: #f3f8f2;
      padding: 26px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 22px;
    }

    .footer h4 {
      margin: 0 0 12px;
      color: #ffd045;
      font-size: 20px;
      letter-spacing: 0.6px;
      font-weight: 500;
    }

    .footer p,
    .footer li,
    .footer a {
      color: #f0f7ee;
      font-size: 16px;
      text-decoration: none;
      line-height: 1.45;
      margin: 0;
    }

    .footer ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    @media (max-width: 980px) {
      .topbar-row {
        grid-template-columns: 1fr;
        padding: 10px 0;
      }

      .nav,
      .actions {
        justify-content: flex-start;
      }

      .actions {
        min-width: auto;
      }

      .hero {
        min-height: auto;
      }

      .hero-panel {
        transform: none;
      }

      .hero-panel h2 {
        font-size: 34px;
      }

      .about-grid,
      .service-grid,
      .fixtures-grid,
      .contact-meta,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        gap: 16px;
      }
    }

/* ===== Engine marketing page styles (nte-*) ===== */
/* Top bar / header */
    .nte-topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--nafc-border);
    }

    .nte-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 20px;
    }

    .nte-header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
    }

    .nte-brand {
      display: flex;
      gap: 12px;
      align-items: center;
      min-width: 260px;
    }

    .nte-logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 8px;
      background: #fff;
    }

    .nte-brand .logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--nafc-border);
    }

    .nte-title {
      line-height: 1.1;
    }

    .nte-title h1 {
      margin: 0;
      color: var(--nafc-green);
      font-size: 22px;
      letter-spacing: 0.2px;
    }

    .nte-title .sub {
      margin: 3px 0 0 0;
      color: var(--nafc-green-dark);
      font-size: 12.5px;
    }

    .nte-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }


    .nte-nav a{
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 999px;
      padding: 8px 12px;
      text-decoration: none;
      color: var(--nafc-green-dark);
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 0.2px;
      background: rgba(255,255,255,0.75);
    }

    .nte-nav a:hover {
      border-color: var(--nafc-green);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .nte-actions {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      align-items: center;
      min-width: 240px;
    }

    .nte-btn {
      border: 1px solid var(--nafc-green);
      background: var(--nafc-green);
      color: #fff;
      padding: 10px 14px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      font-size: 13px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nte-btn.secondary {
      background: #fff;
      color: var(--nafc-green-dark);
      border-color: var(--nafc-border);
      font-weight: 600;
    }

    .nte-btn:hover {
      box-shadow: var(--nafc-shadow);
    }

    /* Hero */
    .nte-hero {
      padding: 28px 0 10px;
    }

    .nte-hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
      align-items: stretch;
    }

    .nte-card {
      background: var(--nafc-card);
      border: 1px solid var(--nafc-border);
      border-radius: var(--nafc-radius);
      box-shadow: var(--nafc-shadow);
    }

    .nte-hero-card {
      padding: 22px;
    }

    .nte-kicker {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: #f0f3f0;
      border: 1px solid var(--nafc-border);
      color: var(--nafc-green-dark);
      padding: 16px 16px;
      border-radius: 999px;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .nte2 {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: #f0f3f0;
      border: 1px solid var(--nafc-border);
      color: var(--nafc-green-dark);
      padding: 10px 10px;
      border-radius: 10px;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .nte-hero h2 {
      margin: 0 0 10px 0;
      font-size: 30px;
      color: var(--nafc-green-dark);
      letter-spacing: 0.2px;
    }

    .nte-hero p {
      margin: 0 0 14px 0;
      font-size: 15px;
      line-height: 1.5;
      color: #2a2a2a;
      max-width: 72ch;
    }

    .nte-bullets {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 14px;
      margin-top: 14px;
    }

    .nte-bullet {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 12px;
      border: 1px solid var(--nafc-border);
      border-radius: 12px;
      background: #fff;
    }

    .nte-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      margin-top: 4px;
      background: var(--nafc-green);
      flex: 0 0 10px;
    }

    .nte-bullet b {
      color: var(--nafc-green-dark);
    }

    .nte-bullet span {
      font-size: 13px;
      color: #333;
    }

    .nte-hero-side {
      padding: 16px;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 12px;
    }

    .nte-metrics {
      display: grid;
      gap: 10px;
    }

    .nte-metric {
      border: 1px solid var(--nafc-border);
      border-radius: 12px;
      background: #fff;
      padding: 12px;
    }

    .nte-metric .label {
      font-size: 12px;
      color: #555;
      margin-bottom: 4px;
    }

    .nte-metric .value {
      font-weight: 800;
      color: var(--nafc-green-dark);
      font-size: 16px;
      letter-spacing: 0.2px;
    }

    .nte-metric .note {
      font-size: 12px;
      color: #666;
      margin-top: 6px;
      line-height: 1.35;
    }

    /* Sections */
    .nte-section {
      padding: 18px 0;
    }

    .nte-section h3 {
      margin: 0 0 12px 0;
      color: var(--nafc-green-dark);
      font-size: 20px;
    }

    .nte-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .nte-pad {
      padding: 18px;
    }

    .nte-list {
      margin: 10px 0 0 18px;
      padding: 0;
      line-height: 1.6;
      font-size: 14px;
    }

    /* Feature tiles */
    .nte-tiles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .nte-tile {
      padding: 14px;
      border: 1px solid var(--nafc-border);
      border-radius: 14px;
      background: #fff;
    }

    .nte-tile h4 {
      margin: 0 0 6px 0;
      color: var(--nafc-green-dark);
      font-size: 15px;
    }

    .nte-tile p {
      margin: 0;
      font-size: 13px;
      color: #333;
      line-height: 1.45;
    }

    /* Accordions */
    details.nte-acc {
      border: 1px solid var(--nafc-border);
      border-radius: 14px;
      background: #fff;
      /* overflow: hidden;*/
    }

    details.nte-acc+details.nte-acc {
      margin-top: 10px;
    }

    details.nte-acc summary {
      padding: 12px 14px;
      cursor: pointer;
      font-weight: 700;
      color: var(--nafc-green-dark);
      list-style: none;
    }

    details.nte-acc summary::-webkit-details-marker {
      display: none;
    }

    details.nte-acc .nte-acc-body {
      padding: 0 14px 14px 14px;
      color: #333;
      font-size: 13.5px;
      line-height: 1.55;
    }

    /* Screenshots */
    .nte-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .nte-shot {
      border: 1px solid var(--nafc-border);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
    }

    .nte-shot img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .nte-shot .cap {
      padding: 10px 12px;
      font-size: 13px;
      color: #333;
    }

    /* Fixture compare */
    .nte-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .nte-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid var(--nafc-border);
      background: #fff;
      color: var(--nafc-green-dark);
      margin-bottom: 10px;
    }

    .nte-tag.old {
      border-color: #e6c9c9;
    }

    .nte-tag.new {
      border-color: #cde3c2;
    }

    .nte-chip {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 11px;
      background: #f0f3f0;
      border: 1px solid var(--nafc-border);
      margin-left: 6px;
      color: #444;
      font-weight: 700;
    }

    /* Modal */
    .nte-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 1000;
    }

    .nte-modal.open {
      display: flex;
    }

    .nte-modal-inner {
      max-width: 1100px;
      width: 100%;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--nafc-shadow);
      border: 1px solid var(--nafc-border);
    }

    .nte-modal-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      border-bottom: 1px solid var(--nafc-border);
      background: #f7f9f7;
    }

    .nte-modal-bar b {
      color: var(--nafc-green-dark);
    }

    .nte-modal-bar button {
      border: 1px solid var(--nafc-border);
      background: #fff;
      padding: 8px 12px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 700;
      color: var(--nafc-green-dark);
    }

    .nte-modal-img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      background: #111;
      display: block;
    }

    /* Footer */
    .nte-footer {
      padding: 24px 0 40px;
      color: #555;
      font-size: 12.5px;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .nte-hero-grid {
        grid-template-columns: 1fr;
      }

      .nte-actions {
        min-width: auto;
      }

      .nte-tiles {
        grid-template-columns: 1fr;
      }

      .nte-gallery {
        grid-template-columns: 1fr;
      }

      .nte-grid-2 {
        grid-template-columns: 1fr;
      }

      .nte-compare {
        grid-template-columns: 1fr;
      }

      .nte-bullets {
        grid-template-columns: 1fr;
      }

      .nte-header {
        grid-template-columns: 1fr;
      }

      .nte-nav {
        justify-content: flex-start;
      }

      .nte-actions {
        justify-content: flex-start;
      }
    }

    /* Where our systems are used */
    /* ===== Use cases section (aligned with site width) ===== */
.usecases {
  background: #f5f7f5;
  padding: 48px 0 10px 0;
}

.usecases .container {
  max-width: 1100px;
  margin: 0 auto;
}

.usecases h3 {
  text-align: center;
  color: var(--nafc-green);
  font-size: 40px;
  margin-bottom: 26px;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.usecase {
  background: #ffffff;
  border: 1px solid #dde3dd;
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.usecase h4 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #2e3d2e;
}

.usecase p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #334133;
}

@media (max-width: 900px) {
  .usecases-grid {
    grid-template-columns: 1fr;
  }
}



/* High-end credibility strip (home hero) */
.cred-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.cred-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: #f3f7f1;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
}




.btn:hover{ box-shadow: var(--nafc-shadow); filter: brightness(1.02); }
.btn.secondary:hover{ filter:none; border-color: var(--nafc-green); }
/* ===== Forced Dark Mode (user toggle) ===== */
  html[data-theme="dark"]{
    --nafc-ink:#e9efe6;
    --nafc-muted:#b8c0b6;
    --nafc-bg:#0e130f;
    --nafc-panel:#111712;
    --nafc-card:#121a14;
    --nafc-border:#2b3a2c;
    --nafc-shadow:0 12px 30px rgba(0,0,0,.35);
  }

  html[data-theme="dark"] body{
    background: linear-gradient(180deg, var(--nafc-bg) 0%, #0b0f0b 55%, var(--nafc-bg) 100%);
    color: var(--nafc-ink);
  }

  /* Your CSS currently hard-codes white-ish sticky headers */
  html[data-theme="dark"] .topbar,
  html[data-theme="dark"] .nte-topbar{
    background: rgba(15, 20, 15, 0.86);
    border-bottom-color: var(--nafc-border);
  }

  /* Anything that is “white card” in light mode should become dark card */
  html[data-theme="dark"] .brand-logo{ background: #0f1510; border-color: var(--nafc-border); }
  html[data-theme="dark"] .about-card{ color: var(--nafc-ink); border-color: var(--nafc-border); } /* was dark text on light panel :contentReference[oaicite:2]{index=2} */
  html[data-theme="dark"] .service{ background: #111712; border-color: var(--nafc-border); }      /* was #dfe3de :contentReference[oaicite:3]{index=3} */
  html[data-theme="dark"] .service h4, html[data-theme="dark"] .service p{ color: var(--nafc-ink); }                      /* were hard-coded dark :contentReference[oaicite:4]{index=4} */

  html[data-theme="dark"] .fixture{ background: var(--nafc-card); border-color: var(--nafc-border); }
  html[data-theme="dark"] .fixture img{ background: #0f1510; border-color: var(--nafc-border); }  /* was #f3f6f2 :contentReference[oaicite:5]{index=5} */
  html[data-theme="dark"] .fixture p{ color: var(--nafc-ink); }                                   /* was dark :contentReference[oaicite:6]{index=6} */

  /* Form fields are hard-coded white in your contact section :contentReference[oaicite:7]{index=7} */
  html[data-theme="dark"] .contact-grid input,
  html[data-theme="dark"] .contact-grid textarea,
  html[data-theme="dark"] .contact-legal input[type="email"]{
    background: #0f1510;
    color: var(--nafc-ink);
    border-color: #3a4b3b;
  }
