/* GoACPros design tokens — single source of truth for light/dark theming.
   Components must reference these tokens only; no hardcoded colors in layouts. */

:root {
  /* Core palette (light) */
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-soft: #F1EADE;
  --text: #0F1F3D;
  --muted: #46556B;
  --accent: #F4A261;
  --accent-ink: #A85A17;
  --accent-text: #0F1F3D;
  --border: #CFC5B4;

  /* Focus system: outer ring = high contrast vs bg, inner ring = brand accent */
  --focus-outer: #0F1F3D;
  --focus-inner: #F4A261;

  /* Derived surfaces */
  --header-bg: rgba(250, 247, 242, 0.86);
  --shadow-color: rgba(15, 31, 61, 0.14);
  --shadow-strong: rgba(15, 31, 61, 0.28);
}

[data-theme="dark"] {
  --bg: #081326;
  --surface: #0F1F3D;
  --surface-soft: #132846;
  --text: #FAF7F2;
  --muted: #AAB6C8;
  --accent: #F4A261;
  --accent-ink: #F4A261;
  --accent-text: #0F1F3D;
  --border: rgba(250, 247, 242, 0.14);

  --focus-outer: #FAF7F2;
  --focus-inner: #F4A261;

  --header-bg: rgba(8, 19, 38, 0.88);
  --shadow-color: rgba(0, 0, 0, 0.22);
  --shadow-strong: rgba(0, 0, 0, 0.45);
}


* { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 450; transition: background .2s ease, color .2s ease; }
    a { color: inherit; text-decoration: none; }
    a:hover { color: var(--text); }
    .wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
    .topline { border-bottom: 1px solid var(--border); background: var(--surface); color: var(--muted); font-size: 13px; }
    .topline-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 10px 0; }
    .status { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
    .topline a { color: var(--text); font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
    header { position: sticky; top: 0; z-index: 10; background: var(--header-bg); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
    .nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .logo-ph { display: inline-flex; align-items: center; justify-content: center; width: 184px; height: 44px; border: 1.5px dashed var(--border); border-radius: 10px; color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .08em; white-space: nowrap; }
    nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 650; color: var(--muted); }
    nav a { display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; }
    nav a:hover { color: var(--text); }
    .nav-actions { display: flex; align-items: center; gap: 16px; }
    .header-phone { color: var(--text); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 4px; white-space: nowrap; }
    .header-phone:hover { color: var(--accent-ink); }
    .theme-toggle { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-size: 17px; }
    .menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-size: 19px; }
    .mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 10px 20px calc(16px + env(safe-area-inset-bottom, 0px) * 0); border-top: 1px solid var(--border); background: var(--bg); }
    .mobile-menu a { display: flex; align-items: center; min-height: 48px; font-size: 16px; font-weight: 650; color: var(--text); border-bottom: 1px solid var(--border); }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu .button { justify-content: center; margin-top: 10px; min-height: 52px; }
    .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; padding: 14px 20px; font-weight: 750; border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .15s ease, border-color .15s ease, background .15s ease; }
    .button:hover { transform: translateY(-1px); color: inherit; }
    .button-primary { background: var(--accent); color: var(--accent-text); }
    .button-primary:hover { color: var(--accent-text); }
    .button-secondary { background: transparent; color: var(--text); border-color: var(--border); }
    .hero { padding: 86px 0 70px; }
    .hero-grid { display: grid; grid-template-columns: 1.04fr .84fr; align-items: center; gap: 64px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 700; margin-bottom: 26px; }
    .eyebrow:before { content: ""; width: 32px; height: 2px; background: var(--accent); display: inline-block; }
    h1 { margin: 0; font-size: clamp(48px, 6vw, 86px); line-height: .98; letter-spacing: -.07em; max-width: 760px; }
    .hero-copy { color: var(--muted); font-size: 20px; line-height: 1.6; max-width: 620px; margin: 28px 0 0; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 34px; }
    .cta-group { display: flex; flex-direction: column; gap: 9px; }
    .cta-note { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.4; padding-left: 2px; }
    .proof { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 32px; color: var(--muted); font-size: 14px; font-weight: 650; }
    .proof span { display: inline-flex; align-items: center; gap: 9px; }
    .proof span:before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
    .route-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: 0 20px 80px var(--shadow-color); }
    .route-card h2 { margin: 0; font-size: 28px; letter-spacing: -.045em; }
    .route-card p { color: var(--muted); line-height: 1.55; margin: 10px 0 24px; }
    label { display: block; font-size: 13px; font-weight: 750; color: var(--muted); margin-bottom: 8px; }
    input, select { width: 100%; height: 52px; border-radius: 14px; border: 1px solid var(--border); background: var(--bg); color: var(--text); padding: 0 14px; font: inherit; }
    :is(a, button, input, select, [tabindex]):focus-visible { outline: 3px solid var(--focus-outer); outline-offset: 2px; box-shadow: 0 0 0 2px var(--focus-inner) inset; border-radius: 8px; }
    .button:focus-visible, input:focus-visible, select:focus-visible, .theme-toggle:focus-visible { border-radius: 14px; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button:hover { transform: none; } }
    .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .route-card .button { width: 100%; margin-top: 8px; height: 56px; }
    .symptoms { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .sym-btn { min-height: 52px; padding: 10px 14px; border-radius: 14px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font: inherit; font-size: 14px; font-weight: 650; text-align: left; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
    .sym-btn:hover { border-color: var(--accent); }
    .sym-btn strong { display: block; font-size: 14px; letter-spacing: -.01em; }
    .sym-desc { display: block; color: var(--muted); font-weight: 550; font-size: 12.5px; line-height: 1.4; margin-top: 3px; }
    .sym-btn[aria-pressed="true"] { border-color: var(--accent); background: var(--surface-soft); box-shadow: inset 0 0 0 1px var(--accent); }
    .guide { border: 1px solid var(--accent); background: var(--surface-soft); border-radius: 14px; padding: 14px 16px; margin-top: 14px; }
    .guide-handle { display: none; }
    .guide-backdrop { display: none; }
    @media (max-width: 768px) {
      .guide-backdrop { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 40; animation: fadeIn .2s ease; border: none; }
      .guide { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; margin-top: 0; border-radius: 22px 22px 0 0; padding: 8px 22px calc(22px + env(safe-area-inset-bottom, 0px)); max-height: 68vh; overflow-y: auto; box-shadow: 0 -12px 40px rgba(0,0,0,.28); animation: sheetUp .28s cubic-bezier(.22,.9,.32,1); }
      .guide-handle { display: flex; align-items: center; justify-content: center; width: 100%; background: none; border: none; padding: 10px 0 14px; cursor: pointer; }
      .guide-handle:before { content: ""; width: 44px; height: 5px; border-radius: 999px; background: var(--border); display: block; }
    }
    @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .guide strong { font-size: 15px; letter-spacing: -.02em; }
    .guide p { color: var(--muted) !important; font-size: 14px; line-height: 1.55; margin: 6px 0 0 !important; }
    .disclosure { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13px; line-height: 1.55; margin-top: 14px; padding: 12px 14px; background: var(--surface-soft); border-radius: 12px; }
    .disclosure:before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; }
    .afterhours { padding: 24px 0 0; }
    .after-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 40px 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
    .after-card h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.05em; }
    .after-card p { color: var(--muted); line-height: 1.6; margin: 0 0 10px; max-width: 640px; font-size: 15px; }
    .after-card .disclosure { margin: 8px 0 0; }
    .services { padding: 34px 0 90px; }
    .section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 24px; }
    .section-head h2 { margin: 0; font-size: 34px; letter-spacing: -.055em; }
    .section-head p { margin: 0; max-width: 520px; color: var(--muted); line-height: 1.55; }
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 24px; min-height: 154px; }
    .card:hover { border-color: var(--accent); }
    .card strong { display: block; font-size: 18px; letter-spacing: -.025em; margin-bottom: 10px; }
    .card p { color: var(--muted); margin: 0; line-height: 1.5; }
    .card .arrow { color: var(--accent-ink); margin-top: 18px; display: inline-block; font-weight: 900; }
    .how { padding: 86px 0; background: var(--surface); border-block: 1px solid var(--border); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
    .step { border: 1px solid var(--border); border-radius: 22px; padding: 26px; background: var(--bg); }
    .num { color: var(--accent-ink); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
    .step h3 { margin: 18px 0 10px; font-size: 20px; letter-spacing: -.035em; }
    .step p { color: var(--muted); margin: 0; line-height: 1.55; }
    .urgent { padding: 0 0 24px; }
    .urgent-card { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 28px; padding: 40px 48px; }
    .urgent-card h2 { margin: 0 0 10px; font-size: 30px; letter-spacing: -.05em; }
    .urgent-card .intro { color: var(--muted); line-height: 1.6; margin: 0 0 22px; font-size: 15px; }
    .urgent-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
    .urgent-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 650; font-size: 16px; line-height: 1.45; }
    .urgent-list li:before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 7px; }
    .prep { padding: 86px 0 0; }
    .prep-list { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--border); }
    .prep-list li { display: grid; grid-template-columns: 56px 300px 1fr; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--border); align-items: baseline; }
    .prep-num { color: var(--accent-ink); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
    .prep-list strong { font-size: 17px; letter-spacing: -.02em; }
    .prep-desc { color: var(--muted); font-size: 15px; line-height: 1.5; }
    .costs { padding: 86px 0 0; }
    .caveat { color: var(--muted); font-size: 13px; margin: 16px 0 0; }
    .decide { padding: 86px 0 0; }
    .refrig { padding: 86px 0 0; }
    .refrig-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
    .refrig-card h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.05em; line-height: 1.2; max-width: 620px; }
    .refrig-card p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 640px; }
    .coverage { padding: 86px 0; }
    .coverage-card { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 56px; }
    .coverage-card h2 { margin: 0; font-size: 30px; letter-spacing: -.05em; line-height: 1.15; }
    .coverage-card .kicker { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
    .coverage-card p { color: var(--muted); line-height: 1.65; margin: 0; }
    .chip { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; font-size: 15px; font-weight: 650; }
    .chip small { margin-left: auto; color: var(--muted); font-weight: 500; font-size: 13px; }
    .chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
    .chip-link { width: 2px; height: 24px; background: var(--accent); margin: 0 auto; }
    .trust { padding: 0 0 86px; }
    .trust-card { border: 1px solid var(--border); border-radius: 28px; padding: 48px 56px; display: grid; grid-template-columns: 320px 1fr; gap: 48px; }
    .trust-card h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.05em; line-height: 1.2; }
    .trust-card .intro { color: var(--muted); line-height: 1.65; margin: 0; font-size: 15px; }
    .trust-point { display: flex; gap: 14px; align-items: flex-start; }
    .trust-point .dot { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
    .trust-point p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
    .trust-point strong { color: var(--text); }
    .faq { padding: 0 0 90px; }
    .faq-inner { max-width: 760px; margin: 0 auto; }
    .faq-inner h2 { text-align: center; font-size: 34px; letter-spacing: -.055em; margin: 0 0 34px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-list { border-top: 1px solid var(--border); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; background: none; border: none; padding: 20px 4px; cursor: pointer; text-align: left; font: inherit; font-size: 17px; font-weight: 650; color: var(--text); letter-spacing: -.02em; }
    .faq-q .mark { color: var(--accent-ink); font-size: 20px; font-weight: 700; }
    .faq-a { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; padding: 0 4px 22px; max-width: 640px; }
    .faq-flag { display: none; }
    .faq-flag:not(:empty) { display: inline-block; margin: -12px 4px 22px; padding: 5px 10px; border: 1px dashed var(--accent-ink); border-radius: 8px; color: var(--accent-ink); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .knowledge { padding: 0 0 86px; }
    .footer-cta { padding: 90px 0; text-align: center; background: var(--surface); border-top: 1px solid var(--border); }
    .footer-cta h2 { font-size: 48px; letter-spacing: -.06em; margin: 0 0 18px; }
    .footer-cta p { color: var(--muted); margin: 0 auto 28px; max-width: 540px; line-height: 1.6; }
    footer { border-top: 1px solid var(--border); padding: 34px 0 90px; color: var(--muted); font-size: 13px; line-height: 1.65; }
    footer .foot-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 18px; }
    footer .foot-links { display: flex; flex-wrap: wrap; gap: 8px 24px; font-weight: 650; color: var(--text); font-size: 14px; }
    footer .foot-links a, footer .foot-legal a { display: inline-flex; align-items: center; min-height: 44px; }
    footer .foot-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 14px; font-size: 13px; }
    footer .foot-legal a { text-decoration: underline; text-underline-offset: 3px; }
    .mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; align-items: center; justify-content: space-between; gap: 14px; min-height: 60px; padding: 8px 16px; padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)); background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -8px 30px var(--shadow-color); }
    .mobile-call-note { color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.35; }
    .mobile-call .button { flex: 0 0 auto; min-height: 56px; padding: 12px 24px; }
    .desktop-qr { display: none; }
    .qr-large { display: flex; align-items: center; gap: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 20px 22px; margin-top: 24px; max-width: 520px; }
    .qr-large .qr-num { font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: var(--text); user-select: all; line-height: 1.1; }
    .qr-large small { display: block; color: var(--muted); font-size: 13px; font-weight: 600; margin-top: 8px; letter-spacing: -.005em; }
    .qr-large img, .qr-large .qr-ph { width: 140px; height: 140px; border-radius: 12px; background: #fff; padding: 8px; flex: 0 0 auto; }
    .qr-large .qr-ph { border: 1.5px dashed var(--border); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 12px; background: var(--bg); }
    .footer-cta .qr-large { margin: 24px auto 0; }
    .qr-panel { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; margin-top: 12px; }
    .qr-panel .qr-num { font-size: 22px; font-weight: 750; letter-spacing: -.025em; color: var(--text); user-select: all; line-height: 1.1; }
    .qr-panel small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; margin-top: 6px; }
    .qr-panel img, .qr-panel .qr-ph { width: 96px; height: 96px; border-radius: 10px; background: #fff; padding: 6px; flex: 0 0 auto; }
    .qr-panel .qr-ph { border: 1.5px dashed var(--border); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); font-size: 10px; font-weight: 700; padding: 8px; background: var(--bg); }
    @media (min-width: 1060px) {
      .desktop-qr { display: flex; }
      .mobile-call { display: none !important; }
    }
    @media (max-width: 1060px) {
      .topline-inner { justify-content: center; text-align: center; }
      .topline .hide-mobile, .nav > nav, .nav-actions .phone { display: none; }
      .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
      .nav { height: 68px; }
      .logo-ph { width: 150px; height: 40px; font-size: 11px; }
      .hero { padding: 56px 0 48px; }
      .hero-grid, .cards, .steps, .coverage-card, .trust-card, .urgent-card, .refrig-card, .after-card { grid-template-columns: 1fr !important; }
      .button { min-height: 48px; }
      .button.button-primary { min-height: 56px; }
      .urgent-card { padding: 28px 24px; gap: 24px; }
      .refrig-card, .after-card { padding: 32px 24px; }
      .costs, .decide, .refrig, .prep { padding-top: 56px; }
      .prep-list li { grid-template-columns: 1fr; gap: 4px; }
      .hero-grid { gap: 34px; }
      h1 { font-size: 54px; }
      .hero-copy { font-size: 18px; }
      .field-grid { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-head p { margin-top: 12px; }
      .coverage-card, .trust-card { padding: 32px 24px; gap: 28px; }
      .footer-cta h2 { font-size: 36px; }
      .mobile-call { display: flex; }
      body { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }
    }

/* WordPress conversion additions */
[hidden] { display: none !important; }
.site-logo { display: inline-flex; align-items: center; width: 184px; height: 44px; }
.site-logo img { display: block; width: 100%; height: auto; max-height: 44px; }
.site-logo .logo-dark { display: none; }
[data-theme="dark"] .site-logo .logo-light { display: none; }
[data-theme="dark"] .site-logo .logo-dark { display: block; }
.site-logo.footer-logo { width: 150px; height: 38px; }
.site-logo.footer-logo img { max-height: 38px; }
.mobile-menu[hidden], .guide[hidden], .guide-backdrop[hidden], .faq-panel[hidden], .call-reveal[hidden] { display: none !important; }
.call-reveal { margin-top: 12px; }
.phone-unconfigured { opacity: .72; cursor: not-allowed; }
.phone-unconfigured:hover { transform: none; }
.site-content-fallback { width: min(860px, calc(100% - 40px)); margin: 70px auto; }
.site-content-fallback article { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 32px; }
.site-content-fallback .entry-content { color: var(--muted); line-height: 1.7; }
.site-content-fallback .entry-content a { color: var(--accent-ink); text-decoration: underline; }
.site-content-fallback h1 { font-size: clamp(42px, 6vw, 72px); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { position: fixed !important; top: 8px; left: 8px; z-index: 100000; width: auto; height: auto; padding: 12px 16px; margin: 0; clip: auto; background: var(--surface); color: var(--text); border: 2px solid var(--accent); border-radius: 8px; }
body.admin-bar header { top: 32px; }
@media (max-width: 782px) { body.admin-bar header { top: 46px; } }
@media (max-width: 1060px) { .site-logo { width: 150px; height: 40px; } .site-logo img { max-height: 40px; } }
