  :root {
    --deep-lake: #1b2d3a;
    --lake-blue: #2a4a5e;
    --lake-mid: #3a6a80;
    --slate-water: #4a7a8f;
    --sand: #c9a55a;
    --sand-light: #d4b36e;
    --crimson: #8B2332;
    --crimson-light: #a53040;
    --dune-green: #5e8a6a;
    --dune-green-light: #7aaa82;
    --sea-foam: #e8f0ed;
    --lake-tint: #edf2f5;    /* section bg: alternating rows, page headers */
    --surface: #edf2f5;      /* elevated box bg: cards, toc, highlight boxes */
    --white: #ffffff;
    --text-primary: #1b2d3a;
    --text-secondary: #3d5565;
    --text-light: #627e8e;
    --text-heading: #1b2d3a; /* heading/value text — remaps to text-primary in dark */
    --border: #d5dde2;
    --border-blue: #c8d6de;
    --nav-bg-scrolled: rgba(255, 255, 255, 0.96);
    --shadow-sm: 0 1px 3px rgba(27, 45, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 45, 58, 0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 100px; }

  /* ── Skip link ── */
  .skip-link {
    position: absolute; top: -60px; left: 16px; z-index: 200;
    background: var(--dune-green); color: var(--white);
    padding: 10px 18px; border-radius: 0 0 6px 6px;
    font-size: 0.88rem; font-weight: 500; text-decoration: none;
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 0; }

  /* ── Focus indicators ── */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--dune-green);
    outline-offset: 2px;
  }
  body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  /* ══════════════════════════════════════
     SHARED: BUTTONS
     ══════════════════════════════════════ */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--sand); color: #ffffff !important;
    padding: 14px 28px; border-radius: 6px;
    text-decoration: none; font-weight: 500;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem; letter-spacing: 0.01em;
    transition: all 0.25s ease;
    border: none; cursor: pointer;
  }
  .btn:hover {
    background: var(--sand-light); color: #ffffff !important;
    transform: translateY(-2px);
  }
  .btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
  .btn:hover svg { transform: translateX(3px); }
  .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  /* Size variants */
  .btn--lg { padding: 16px 32px; font-size: 0.95rem; }
  .btn--sm { padding: 12px 24px; font-size: 0.88rem; }

  /* Color variants */
  .btn--dark { background: var(--deep-lake); }
  .btn--dark:hover { background: var(--dune-green); }

  /* ══════════════════════════════════════
     SHARED: CARDS
     ══════════════════════════════════════ */
  .card {
    background: var(--white);
    border: 1px solid var(--border-blue);
    border-radius: 10px; padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
  }
  .card::before {
    content: ''; position: absolute; left: 0; top: 14px; bottom: 14px;
    width: 3px; background: var(--crimson); border-radius: 0 3px 3px 0;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .card:hover {
    border-color: var(--slate-water);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .card:hover::before { opacity: 1; }
  .card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-heading); margin-bottom: 10px; }
  .card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }
  .card--tinted { background: var(--lake-tint); }
  .card--flex { display: flex; flex-direction: column; gap: 14px; }
  .card--flex h3 { margin-bottom: 0; }

  /* ══════════════════════════════════════
     SHARED: CARD ICON
     ══════════════════════════════════════ */
  .card-icon {
    width: 48px; height: 48px; background: var(--sea-foam);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--dune-green); flex-shrink: 0;
  }
  .card-icon svg { width: 22px; height: 22px; }

  /* ══════════════════════════════════════
     NAV
     ══════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
  }
  .nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 32px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; transition: opacity 0.3s ease;
  }
  .nav-logo img { height: 40px; width: auto; display: block; }
  .nav-logo-text {
    font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 600;
    line-height: 1; color: var(--white); letter-spacing: -0.01em;
    padding-top: 10px; transition: color 0.4s ease;
  }
  nav.scrolled .nav-logo-text { color: var(--text-heading); }
  /* Home page shows the wordmark in the hero, so suppress it in the nav. */
  body.home .nav-logo-text { display: none; }
  .nav-logo:hover { opacity: 0.85; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85);
    text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
    transition: color 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  nav.scrolled .nav-links a { color: var(--text-secondary); }
  nav.scrolled .nav-links a:hover { color: var(--text-heading); }
  .nav-links a.active { color: var(--crimson-light) !important; }
  nav.scrolled .nav-links a.active { color: var(--crimson) !important; font-weight: 600; }
  .nav-cta {
    background: var(--sand) !important; color: #ffffff !important;
    padding: 10px 22px !important; border-radius: 6px;
    font-size: 0.85rem !important; font-weight: 500 !important;
    border: 1px solid var(--sand) !important;
    transition: all 0.3s ease !important;
  }
  .nav-cta:hover { background: var(--sand-light) !important; border-color: var(--sand-light) !important; }
  .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .mobile-toggle span {
    display: block; width: 22px; height: 2px; background: var(--white);
    margin: 5px 0; transition: all 0.3s ease; border-radius: 2px;
  }
  nav.scrolled .mobile-toggle span { background: var(--text-heading); }

  /* ══════════════════════════════════════
     HERO
     ══════════════════════════════════════ */
  .hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-photo {
    position: fixed;
    inset: 0;
    z-index: 0;
    transition: opacity 0.05s linear;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
  }
  .hero-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(14, 24, 34, 0.72) 0%,
      rgba(14, 24, 34, 0.55) 30%,
      rgba(14, 24, 34, 0.35) 55%,
      rgba(14, 24, 34, 0.18) 100%
    );
    z-index: 1;
  }
  .hero-overlay-top {
    position: fixed;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(14, 24, 34, 0.4) 0%,
      transparent 30%,
      transparent 80%,
      rgba(14, 24, 34, 0.25) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 32px 100px;
    width: 100%;
  }
  .hero-wordmark {
    font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 600;
    color: rgba(255,255,255,0.95); letter-spacing: -0.01em;
    margin: 0 0 28px; text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }
  .hero-badge {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--sand-light);
    margin-bottom: 24px; position: relative; padding-left: 20px;
  }
  .hero-badge::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 10px; height: 2px; background: var(--sand-light);
  }
  .hero-content h1 {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.1; color: rgba(255,255,255,0.92); margin-bottom: 24px;
    letter-spacing: -0.02em; max-width: 650px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .hero-content p {
    font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 500px;
    margin-bottom: 40px; font-weight: 300; line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
  }
  /* ── Location bar ── */
  .location-bar {
    position: relative; z-index: 3;
    background: var(--deep-lake);
    padding: 14px 32px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .location-bar strong { color: var(--sand); font-weight: 600; }

  /* ══════════════════════════════════════
     BODY SECTIONS
     ══════════════════════════════════════ */
  /* Sections scroll over the fixed hero background */
  .hero-full ~ * {
    position: relative;
    z-index: 3;
  }
  .divider { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
  .divider hr { border: none; height: 1px; background: var(--border-blue); }

  section { padding: 80px 32px; max-width: 1100px; margin: 0 auto; background: var(--white); }
  #contact { padding-bottom: 0; }

  .section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--crimson); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-heading); margin-bottom: 48px; letter-spacing: -0.01em;
  }

  /* ── Services ── */
  .services-section {
    background: var(--lake-tint);
    padding: 80px 0;
  }
  .services-inner,
  .pricing-inner,
  .about-inner,
  .process-inner,
  .why-inner,
  .remote-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 32px;
  }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-scope {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-blue);
  }
  .services-scope-heading {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .services-scope p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; margin-bottom: 6px; }
  .services-scope p:last-child { margin-bottom: 0; }
  .services-scope-list { list-style: disc; padding-left: 1.2em; margin: 6px 0 10px; font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.75; }
  .services-scope-list li { color: var(--text-secondary); font-weight: 300; }

  /* ── Process ── */
  .process-section {
    background: var(--lake-tint);
    padding: 80px 0;
  }

  /* ── How It Works ── */
  .steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
  .steps-container::before {
    content: ''; position: absolute; top: 32px;
    left: calc(33.33% / 2); right: calc(33.33% / 2);
    height: 1px;
    background: linear-gradient(90deg, var(--border-blue), var(--slate-water), var(--border-blue));
    opacity: 0.5;
  }
  .step { text-align: center; position: relative; }
  .step-number {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border-blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-family: 'Source Serif 4', serif;
    font-size: 1.3rem; color: var(--lake-mid); position: relative; z-index: 2;
    transition: all 0.3s ease;
  }
  .step:hover .step-number {
    border-color: var(--crimson);
    background: #f5e8ea;
    color: var(--crimson);
  }
  .step h3 { font-size: 1rem; font-weight: 600; color: var(--text-heading); margin-bottom: 10px; }
  .step p { font-size: 0.9rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; max-width: 280px; margin: 0 auto; }

  /* ── Pricing ── */
  .pricing-section {
    background: var(--white);
    padding: 80px 0;
  }
  .pricing-intro {
    font-size: 1rem; color: var(--text-secondary); font-weight: 300;
    max-width: 600px; margin-bottom: 40px; line-height: 1.7;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .pricing-card {
    background: var(--white);
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .pricing-card.featured {
    border-color: var(--crimson);
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .pricing-card.featured::after {
    content: 'Most Common';
    position: absolute;
    top: -11px; left: 24px;
    background: var(--crimson);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 4px;
    text-transform: uppercase;
  }
  .pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .pricing-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-heading); margin-bottom: 6px; }
  .pricing-card .price {
    font-family: 'Source Serif 4', serif;
    font-size: 2rem; color: var(--text-heading);
    margin-bottom: 4px;
  }
  .pricing-card .price-discount {
    font-size: 0.8rem; color: var(--dune-green); font-weight: 500;
    margin-bottom: 16px;
  }
  .pricing-card .price-desc {
    font-size: 0.88rem; color: var(--text-secondary); font-weight: 300;
    line-height: 1.6; flex: 1;
  }
  .pricing-addons { margin-bottom: 36px; }
  .pricing-addons h3 { font-size: 1rem; font-weight: 600; color: var(--text-heading); margin-bottom: 16px; }
  .addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 32px;
  }
  .addon-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-blue);
    font-size: 0.88rem;
  }
  .addon-item span:first-child { color: var(--text-secondary); font-weight: 300; }
  .addon-item span:last-child {
    color: var(--text-heading);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 12px;
  }
  .pricing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-blue);
  }
  .pricing-footer p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; max-width: 480px; }
  .pricing-footer .btn { flex-shrink: 0; }

  /* ── Why Willinger Tax ── */
  .why-section {
    padding: 80px 0;
    background: var(--white);
  }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

  /* ── NATP affiliation ── */
  .natp-affiliation {
    margin-top: 36px; padding-top: 32px;
    border-top: 1px solid var(--border-blue);
    display: flex; align-items: center; gap: 16px;
  }
  .natp-affiliation span {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light);
  }
  .natp-affiliation img { height: 36px; width: auto; opacity: 0.75; }

  /* ── Why Remote ── */
  .remote-section {
    padding: 80px 0;
    background: var(--lake-tint);
  }
  .remote-intro {
    max-width: 680px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 48px;
  }
  .remote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* ── About — with headshot ── */
  .about-section {
    background: var(--white);
    padding: 80px 0;
  }
  .about-layout { display: flex; gap: 56px; align-items: flex-start; }
  .about-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--border-blue);
    box-shadow: var(--shadow-md);
  }
  .about-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%; display: block;
  }
  .about-text { flex: 1; }
  .about-text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }
  .about-detail {
    margin-top: 32px; padding-top: 32px;
    border-top: 1px solid var(--border-blue);
    display: flex; gap: 48px;
  }
  .about-detail-item { display: flex; flex-direction: column; gap: 4px; }
  .about-detail-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light);
  }
  .about-detail-value { font-size: 0.95rem; font-weight: 500; color: var(--text-heading); }

  /* ── Contact ── */
  .contact-section {
    background: var(--deep-lake); border-radius: 14px; padding: 64px;
    color: var(--white); margin-bottom: 80px; position: relative; overflow: hidden;
  }
  .contact-section::before {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(94, 138, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .contact-section::after {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(74, 122, 143, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .contact-section .section-label { color: var(--crimson-light); }
  .contact-section .section-title { color: #ffffff; margin-bottom: 10px; }
  .contact-subtitle {
    color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 300;
    margin-bottom: 32px; position: relative; z-index: 2;
  }

  /* ── Contact Options Grid ── */
  .contact-options {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-bottom: 40px; position: relative; z-index: 2;
  }
  .contact-option {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 28px 20px; text-align: center;
    text-decoration: none; color: #fff; transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    position: relative; cursor: pointer;
  }
  .contact-option:hover {
    background: rgba(139, 35, 50, 0.15); border-color: var(--crimson);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(139, 35, 50, 0.25);
  }
  .contact-option-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .contact-option:hover .contact-option-icon { background: rgba(139, 35, 50, 0.3); }
  .contact-option-icon svg { width: 22px; height: 22px; color: var(--sand); transition: color 0.3s ease; }
  .contact-option:hover .contact-option-icon svg { color: #fff; }
  .contact-option h3 { font-size: 0.95rem; font-weight: 600; margin: 0; }
  .contact-option p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.55); margin: 0; }

  /* ── Contact Form ── */
  .contact-form-wrap {
    position: relative; z-index: 2; margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
  }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-form-field { display: flex; flex-direction: column; gap: 6px; }
  .contact-form-field label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); }
  .contact-form-field label span { font-weight: 300; color: rgba(255,255,255,0.35); margin-left: 4px; }
  .contact-form-field label span[aria-hidden] { color: var(--sand); margin-left: 2px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px; padding: 11px 14px; color: rgba(255,255,255,0.9);
    -webkit-text-fill-color: rgba(255,255,255,0.9);
    font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 300;
    width: 100%; transition: border-color 0.2s ease, background 0.2s ease;
  }
  .contact-form select { cursor: pointer; color-scheme: dark; }
  .contact-form select option { background: #1b2d3a; color: #dce8f0; }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none; border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.11);
  }
  .contact-form textarea { resize: vertical; min-height: 110px; }
  .hp-field {
    position: absolute; left: -9999px; top: auto;
    width: 1px; height: 1px; overflow: hidden;
  }
  .contact-form .btn { align-self: flex-start; }
  .contact-form-status { font-size: 0.88rem; font-weight: 400; min-height: 1.4em; }
  .contact-form-status.success { color: #7ee8a2; }
  .contact-form-status.error   { color: #f08a8a; }
  .contact-form-terms { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 300; margin-top: 4px; }
  .contact-form-terms a { color: var(--dune-green-light); text-decoration: none; }
  .contact-form-terms a:hover { color: #fff; }

  /* Success banner overlay */
  .form-success-banner {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 24, 34, 0.85); backdrop-filter: blur(6px);
    z-index: 200; align-items: center; justify-content: center;
  }
  .form-success-banner.visible { display: flex; }
  .form-success-inner {
    background: var(--deep-lake); border: 1px solid var(--border-blue);
    border-radius: 14px; padding: 52px 48px; max-width: 480px; width: 90%;
    text-align: center; box-shadow: var(--shadow-md);
  }
  .form-success-icon {
    width: 56px; height: 56px; background: rgba(94,138,106,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; color: #7ee8a2;
  }
  .form-success-icon svg { width: 26px; height: 26px; }
  .form-success-inner h3 {
    font-family: 'Source Serif 4', serif; font-size: 1.5rem;
    color: #ffffff; margin-bottom: 12px;
  }
  .form-success-inner p {
    font-size: 0.95rem; color: rgba(255,255,255,0.65);
    font-weight: 300; line-height: 1.7; margin-bottom: 28px;
  }

  /* ── Tax Story expander ── */
  .tax-story-expander { margin: 4px 0; }
  .tax-story-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 6px; cursor: pointer; padding: 12px 18px; width: 100%;
    font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 500;
    color: var(--dune-green-light); transition: all 0.25s ease;
    text-align: left;
  }
  .tax-story-toggle:hover { background: rgba(255,255,255,0.1); border-color: var(--dune-green-light); }
  .tax-story-toggle-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s ease; }
  .tax-story-toggle.open .tax-story-toggle-icon { transform: rotate(180deg); }
  .tax-story-panel {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  .tax-story-panel.open { max-height: 1200px; opacity: 1; padding: 18px 0 4px; }
  .tax-story-panel-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 300;
    line-height: 1.5; margin-bottom: 16px;
  }
  .tax-story-panel .contact-form-row { margin-bottom: 14px; }
  .ts-fieldset {
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 18px 20px 14px; margin: 0;
  }
  .ts-fieldset legend { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); padding: 0 6px; }
  .ts-fieldset legend span { font-weight: 300; color: rgba(255,255,255,0.35); margin-left: 4px; }
  .ts-checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 10px; }
  .ts-checkbox-grid label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.7);
    cursor: pointer; line-height: 1.4;
  }
  .ts-checkbox-grid input[type="checkbox"] {
    flex-shrink: 0; width: 16px; height: 16px;
    accent-color: var(--dune-green); cursor: pointer;
  }

  /* ── Footer ── */
  footer {
    max-width: 1100px; margin: 0 auto;
    padding: 28px 32px 36px;
    border-top: 1px solid var(--border);
    background: var(--white);
    position: relative; z-index: 3;
  }
  .footer-brand { margin-bottom: 18px; }
  .footer-brand img { height: 44px; width: auto; display: block; }
  .footer-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap; margin-bottom: 14px;
  }
  .footer-row > p { font-size: 0.82rem; color: var(--text-secondary); font-weight: 400; margin: 0; }
  .footer-links { display: flex; align-items: center; gap: 20px; }
  .footer-links a { font-size: 0.82rem; color: var(--text-secondary); text-decoration: none; transition: color 0.15s; }
  .footer-links a:hover { color: var(--text-primary); }
  .footer-disclaimer { font-size: 0.72rem; color: var(--text-light); line-height: 1.65; opacity: 0.8; }

  /* ── Animations ── */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ══════════════════════════════════════
     MOBILE
     ══════════════════════════════════════ */
  /* Nav collapses to hamburger earlier than the general mobile layout,
     since the wordmark + links + CTA need more horizontal room. */
  @media (max-width: 1024px) {
    .nav-links {
      display: none; position: absolute; top: 72px; left: 0; right: 0;
      background: var(--white); flex-direction: column; padding: 24px 32px 32px;
      gap: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links.open a { color: var(--text-secondary) !important; }
    .nav-links.open .nav-cta {
      background: var(--deep-lake) !important; color: #ffffff !important;
      border-color: var(--deep-lake) !important;
    }
    .mobile-toggle { display: block; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  }

  @media (max-width: 768px) {
    .hero-content { padding: 120px 24px 80px; }
    .hero-content h1 { font-size: 2.4rem; max-width: 100%; }
    .hero-photo img { object-position: 70% 60%; }

    .services-section, .process-section, .about-section, .pricing-section, .why-section, .remote-section { padding: 56px 0; }
    .services-inner, .about-inner, .pricing-inner, .why-inner, .remote-inner { padding: 0 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 28px; }
    .remote-grid { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 56px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .addon-grid { grid-template-columns: 1fr; }
    .pricing-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
    .steps-container { grid-template-columns: 1fr; gap: 32px; }
    .steps-container::before { display: none; }

    .about-layout { flex-direction: column; align-items: center; gap: 32px; }
    .about-photo { width: 160px; height: 160px; }
    .about-text { text-align: left; }
    .about-detail { flex-direction: column; gap: 20px; }

    .contact-section {
      padding: 40px 24px; border-radius: 0;
      margin-left: -24px; margin-right: -24px;
    }
    .contact-options { grid-template-columns: 1fr; }
    .contact-form-row { grid-template-columns: 1fr; }
    .ts-checkbox-grid { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; gap: 12px; text-align: center; }
    .footer-links { justify-content: center; gap: 14px; flex-wrap: wrap; }
    .footer-brand { display: flex; justify-content: center; margin-bottom: 14px; }
    footer { padding: 24px 24px 32px; }
  }

  /* ══════════════════════════════════════
     DARK MODE
     ══════════════════════════════════════ */
  @media (prefers-color-scheme: dark) {
    :root {
      /* Backgrounds */
      --white: #111e28;           /* page bg */
      --lake-tint: #0d1820;       /* alternating section bg (recessed) */
      --surface: #162434;         /* elevated box bg (cards, toc, highlight, etc.) */
      --sea-foam: #0f2218;

      /* Text */
      --text-primary: #dce8f0;
      --text-secondary: #8dc4d8;
      --text-light: #7ab8d0;
      --text-heading: #dce8f0;    /* same as text-primary in dark */

      /* Borders & nav */
      --border: #1e3348;
      --border-blue: #1a2e42;
      --nav-bg-scrolled: rgba(13, 24, 32, 0.97);

      /* Crimson — brighter for dark bg legibility */
      --crimson: #c44455;
      --crimson-light: #d65a6a;

      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    /* Cards sit on --lake-tint sections; use --surface to elevate above them */
    .card { background: var(--surface); }
    .pricing-card { background: var(--surface); }
    .card--tinted { background: #1a2e3e; }

    /* Hide decorative glows */
    .contact-section::before,
    .contact-section::after { opacity: 0; }

    /* Soften NATP logo */
    .natp-affiliation img { opacity: 0.6; }

    /* Step hover — dark crimson tint */
    .step:hover .step-number { background: #2a1518; }
  }

  /* ── Manual theme overrides (Ctrl+Shift+D) ── */
  [data-theme="dark"] {
    --white: #111e28;
    --lake-tint: #0d1820;
    --surface: #162434;
    --sea-foam: #0f2218;
    --text-primary: #dce8f0;
    --text-secondary: #8dc4d8;
    --text-light: #7ab8d0;
    --text-heading: #dce8f0;
    --border: #1e3348;
    --border-blue: #1a2e42;
    --nav-bg-scrolled: rgba(13, 24, 32, 0.97);
    --crimson: #c44455;
    --crimson-light: #d65a6a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  [data-theme="dark"] .card,
  [data-theme="dark"] .pricing-card { background: var(--surface); }
  [data-theme="dark"] .card--tinted { background: #1a2e3e; }
  [data-theme="dark"] .contact-section::before,
  [data-theme="dark"] .contact-section::after { opacity: 0; }
  [data-theme="dark"] .natp-affiliation img { opacity: 0.6; }
  [data-theme="dark"] .step:hover .step-number { background: #2a1518; }

  [data-theme="light"] {
    --white: #ffffff;
    --lake-tint: #edf2f5;
    --surface: #edf2f5;
    --sea-foam: #e8f0ed;
    --text-primary: #1b2d3a;
    --text-secondary: #3d5565;
    --text-light: #627e8e;
    --text-heading: #1b2d3a;
    --border: #d5dde2;
    --border-blue: #c8d6de;
    --nav-bg-scrolled: rgba(255, 255, 255, 0.96);
    --crimson: #8B2332;
    --crimson-light: #a53040;
    --shadow-sm: 0 1px 3px rgba(27, 45, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 45, 58, 0.08);
  }

  /* ══════════════════════════════════════
     INLINE LINK UTILITIES
     ══════════════════════════════════════ */
  .text-link { color: var(--sand); text-decoration: none; font-weight: 500; }
  .text-link:hover { color: var(--sand-light); }

  .why-card-link {
    display: inline-block; margin-top: 10px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--sand); text-decoration: none; letter-spacing: 0.01em;
  }
  .why-card-link:hover { color: var(--sand-light); }

  .content a,
  .blog-post a,
  .faq-answer-inner a,
  .policy-section a,
  .fee-footer a,
  .footer-links a,
  .contact-form-terms a {
    color: var(--sand);
    text-decoration: none;
  }
  .content a:hover,
  .blog-post a:hover,
  .faq-answer-inner a:hover,
  .policy-section a:hover,
  .fee-footer a:hover,
  .footer-links a:hover,
  .contact-form-terms a:hover {
    color: var(--sand-light);
  }

  .blog-categories { margin-bottom: 32px; }
  .category-dropdown {
    background: var(--surface);
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    padding: 20px 24px;
  }
  .category-dropdown summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Source Serif 4', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    gap: 16px;
    margin: 0;
  }
  .category-dropdown summary::-webkit-details-marker { display: none; }
  .category-dropdown summary::after {
    content: '▾';
    color: var(--sand);
    transition: transform 0.2s ease;
  }
  .category-dropdown[open] summary::after { transform: rotate(180deg); }
  .category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }
  .category-meta {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 12px;
    max-width: 760px;
  }
  .blog-list { margin-top: 24px; }
  .blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
  }
  .category-chip {
    display: inline-block;
    background: rgba(196, 167, 108, 0.15);
    color: var(--sand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .blog-card h2 { margin-top: 0; margin-bottom: 12px; }
  .blog-card p { margin-bottom: 0; color: var(--text-secondary); line-height: 1.75; }

  /* ── Process section CTA text ── */
  .process-cta {
    text-align: center; margin-top: 32px;
    font-size: 0.88rem; color: var(--text-secondary); font-weight: 300;
  }

  /* ── Section modifiers ── */
  .why-section--tinted { background: var(--lake-tint); }
  .pricing-footer--spaced { margin-top: 48px; }

  /* ══════════════════════════════════════
     SUBPAGE SHARED
     ══════════════════════════════════════ */

  /* ── Page header ── */
  .page-header {
    background: var(--lake-tint);
    padding: 120px 32px 48px;
    border-bottom: 1px solid var(--border-blue);
  }
  .page-header-inner { max-width: 800px; margin: 0 auto; }
  .page-header-inner--wide { max-width: 1100px; }
  .page-header-inner--wide p { max-width: 600px; }
  .page-header h1 {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-heading); margin-bottom: 12px; letter-spacing: -0.01em;
  }
  .page-header p { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }
  .page-header .season-badge {
    display: inline-block; margin-top: 16px;
    background: var(--deep-lake); color: #fff;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 5px 14px; border-radius: 4px;
  }

  /* ── Content container ── */
  .content { max-width: 800px; margin: 0 auto; padding: 56px 32px 80px; }
  .content--wide { max-width: 1100px; padding-top: 48px; }

  /* ── TOC ── */
  .toc {
    background: var(--surface); border: 1px solid var(--border-blue);
    border-radius: 10px; padding: 22px 26px; margin-bottom: 48px;
    position: relative;
  }
  .toc h3 {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 12px;
  }
  .toc ol { list-style: none; counter-reset: toc-counter; }
  .toc ol li {
    counter-increment: toc-counter;
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1.4;
  }
  .toc ol li::before {
    content: counter(toc-counter) ".";
    position: absolute; left: 0; top: 6px;
    color: var(--text-light); font-size: 0.82rem; font-weight: 500;
  }
  .toc ol li a { font-size: 0.88rem; color: var(--text-secondary); text-decoration: none; font-weight: 400; transition: color 0.15s; }
  .toc ol li a:hover { color: var(--text-primary); }

  /* ── Float-back button ── */
  .float-back {
    position: fixed; bottom: 28px; right: 28px; z-index: 250;
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--dune-green); color: #fff; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.01em;
    padding: 10px 18px; border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease, bottom 0.3s ease;
    opacity: 0.92;
  }
  .float-back:hover { background: var(--deep-lake); transform: translateY(-2px); opacity: 1; }
  .float-back svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
  .float-back:hover svg { transform: translateX(-3px); }
  .float-back.raised { bottom: 140px; }

  /* ══════════════════════════════════════
     POLICY PAGES (Terms, Privacy)
     ══════════════════════════════════════ */
  .policy-section { margin-bottom: 48px; }
  .policy-section h2 {
    font-family: 'Source Serif 4', serif;
    font-size: 1.2rem; color: var(--text-heading);
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--crimson);
    display: inline-block; letter-spacing: -0.01em;
  }
  .policy-section p {
    font-size: 0.93rem; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 12px; font-weight: 300;
  }
  .policy-section p:last-child { margin-bottom: 0; }
  .policy-section strong { color: var(--text-primary); font-weight: 500; }
  .policy-section ul { list-style: none; margin: 12px 0 16px 0; }
  .policy-section ul li {
    font-size: 0.93rem; color: var(--text-secondary); font-weight: 300;
    padding: 5px 0 5px 20px; position: relative; line-height: 1.7;
  }
  .policy-section ul li::before {
    content: '\2014'; position: absolute; left: 0; color: var(--dune-green); font-weight: 400;
  }

  .blog-post { max-width: 820px; margin: 0 auto; }
  .blog-post p {
    font-size: 0.98rem; color: var(--text-secondary);
    line-height: 1.8; font-weight: 300; margin-bottom: 24px;
  }
  .blog-post h2 {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    color: var(--text-heading);
    margin: 36px 0 16px; line-height: 1.2;
  }
  .blog-post h3 { font-size: 1.05rem; color: var(--text-heading); margin: 28px 0 14px; }
  .blog-post ul { list-style: none; margin: 16px 0 24px; padding-left: 0; }
  .blog-post ul li {
    position: relative; padding-left: 28px; margin-bottom: 12px;
    color: var(--text-secondary); line-height: 1.75; font-weight: 300;
  }
  .blog-post ul li::before {
    content: '•'; position: absolute; left: 0; top: 0;
    color: var(--dune-green); font-size: 1rem; line-height: 1.3;
  }
  .blog-post .highlight-box { margin: 28px 0; }
  .blog-post .back-link { margin: 36px 0 0; }
  .blog-post .back-link a { color: var(--text-heading); text-decoration: none; font-weight: 500; }
  .blog-post .back-link a:hover { color: var(--dune-green); }

  .highlight-box {
    background: var(--surface); border: 1px solid var(--border-blue);
    border-left: 3px solid var(--crimson);
    border-radius: 6px; padding: 18px 22px; margin: 20px 0;
  }
  .highlight-box p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; font-weight: 300; line-height: 1.7; }
  .highlight-box strong { color: var(--text-heading); font-weight: 600; }

  .policy-footer {
    padding-top: 32px; border-top: 1px solid var(--border-blue); text-align: center;
  }
  .policy-footer p { font-size: 0.82rem; color: var(--text-light); font-weight: 300; margin-bottom: 4px; }
  .policy-footer a { color: var(--dune-green); text-decoration: none; }
  .policy-footer a:hover { color: var(--sand-light); }

  /* ══════════════════════════════════════
     FAQ
     ══════════════════════════════════════ */
  .faq-group { margin-bottom: 48px; }
  .faq-group-title {
    font-family: 'Source Serif 4', serif;
    font-size: 1.2rem; color: var(--text-heading);
    margin-bottom: 4px; padding-bottom: 10px;
    border-bottom: 2px solid var(--crimson);
    display: inline-block; letter-spacing: -0.01em;
  }
  .faq-item { border-bottom: 1px solid var(--border-blue); }
  .faq-item:first-of-type { border-top: 1px solid var(--border-blue); margin-top: 20px; }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    width: 100%; text-align: left;
    background: none; border: none; cursor: pointer;
    padding: 18px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--text-heading);
    line-height: 1.45;
    transition: color 0.15s;
  }
  .faq-question:hover { color: var(--crimson); }
  .faq-question:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; border-radius: 3px; }
  .faq-chevron {
    width: 18px; height: 18px; flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.25s ease, color 0.15s;
  }
  .faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--crimson); }
  .faq-question:hover .faq-chevron { color: var(--crimson); }
  .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.28s ease; }
  .faq-answer.open { grid-template-rows: 1fr; }
  .faq-answer-inner {
    overflow: hidden;
    font-size: 0.93rem; color: var(--text-secondary);
    line-height: 1.8; font-weight: 300;
  }
  .faq-answer-inner-pad { padding: 0 0 20px; }
  .faq-answer-inner p { margin-bottom: 10px; }
  .faq-answer-inner p:last-child { margin-bottom: 0; }
  .faq-answer-inner a { color: var(--dune-green); text-decoration: none; }
  .faq-answer-inner a:hover { color: var(--sand-light); }
  .faq-answer-inner strong { color: var(--text-primary); font-weight: 500; }
  .faq-cta {
    padding-top: 40px; border-top: 1px solid var(--border-blue); text-align: center;
    margin-top: 16px;
  }
  .faq-cta p { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; margin-bottom: 20px; }

  /* ══════════════════════════════════════
     FEE SCHEDULE
     ══════════════════════════════════════ */
  .fee-group { margin-bottom: 48px; }
  .fee-group h2 {
    font-family: 'Source Serif 4', serif;
    font-size: 1.3rem; color: var(--text-heading);
    margin-bottom: 20px; letter-spacing: -0.01em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--crimson);
    display: inline-block;
  }
  .fee-group-intro { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; margin-bottom: 20px; }
  .fee-table { width: 100%; border-collapse: collapse; }
  .fee-table thead th {
    text-align: left;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light);
    padding: 10px 16px; background: var(--surface);
    border-bottom: 1px solid var(--border-blue);
  }
  .fee-table thead th:nth-child(2),
  .fee-table thead th:nth-child(3) { text-align: right; }
  .fee-table tbody td {
    padding: 14px 16px; font-size: 0.92rem;
    border-bottom: 1px solid var(--border-blue); vertical-align: top;
  }
  .fee-table tbody td:first-child { color: var(--text-primary); font-weight: 400; }
  .fee-table tbody td:nth-child(2),
  .fee-table tbody td:nth-child(3) {
    text-align: right; font-weight: 500; color: var(--text-heading); white-space: nowrap;
  }
  .fee-table tbody td:nth-child(3) { color: var(--dune-green); }
  .fee-table .item-note { display: block; font-size: 0.8rem; color: var(--text-light); font-weight: 300; margin-top: 3px; }
  .fee-table tbody tr:hover { background: rgba(237, 242, 245, 0.5); }
  .fee-table.no-discount thead th:nth-child(2) { text-align: right; }
  .fee-table.no-discount tbody td:nth-child(2) { text-align: right; font-weight: 500; color: var(--text-heading); }
  .fee-table tbody tr.calc-selectable { cursor: pointer; user-select: none; }
  .fee-table tbody tr.calc-selectable:hover { background: rgba(12, 64, 127, 0.04); }
  .fee-table tbody tr.calc-selected { background: rgba(12, 64, 127, 0.07); }
  .fee-table tbody tr.calc-selected td:first-child { color: var(--text-heading); font-weight: 500; }
  .fee-table tbody tr.calc-addon-active { background: rgba(12, 64, 127, 0.04); }
  .fee-table thead th.col-interact { text-align: center; width: 88px; letter-spacing: 0.06em; }
  .fee-table tbody td.col-interact { text-align: center; vertical-align: middle; white-space: nowrap; }
  .select-ring {
    display: inline-block; width: 20px; height: 20px;
    border: 2px solid var(--border); border-radius: 50%;
    transition: border-color 0.15s, box-shadow 0.15s;
    vertical-align: middle; position: relative; flex-shrink: 0;
  }
  .select-ring::after {
    content: ''; display: block; width: 10px; height: 10px;
    background: transparent; border-radius: 50%;
    position: absolute; top: 3px; left: 3px; transition: background 0.15s;
  }
  tr.calc-selected .select-ring {
    border-color: var(--text-heading);
    box-shadow: 0 0 0 3px rgba(12, 64, 127, 0.12);
  }
  tr.calc-selected .select-ring::after { background: var(--text-heading); }
  .inline-counter { display: inline-flex; align-items: center; gap: 6px; }
  .inline-counter button {
    width: 26px; height: 26px;
    border: 1px solid var(--border); background: var(--white); border-radius: 5px;
    cursor: pointer; font-size: 1rem; line-height: 1;
    color: var(--text-primary);
    transition: background 0.15s, border-color 0.15s;
    display: flex; align-items: center; justify-content: center;
  }
  .inline-counter button:hover { background: var(--surface); }
  .inline-counter .qty { min-width: 20px; text-align: center; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
  .inline-counter.has-qty button { border-color: var(--text-heading); }
  .inline-counter.has-qty .qty { color: var(--text-heading); font-weight: 600; }
  .calc-strip-sentinel { height: 0; margin: 0; padding: 0; }
  .calc-strip {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    background: var(--dune-green); color: #fff;
    border-radius: 10px; padding: 14px 20px; margin-bottom: 40px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease, box-shadow 0.28s ease;
  }
  .calc-strip.visible { opacity: 1; pointer-events: auto; }
  .calc-strip.floating {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 64px); max-width: 1036px; z-index: 200;
    box-shadow: 0 8px 32px rgba(0,0,0,0.24), 0 2px 8px rgba(0,0,0,0.12);
    margin-bottom: 0;
  }
  #calc-strip-placeholder { display: none; }
  #calc-strip-placeholder.active { display: block; }
  .discount-chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .discount-chip {
    padding: 5px 12px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.12);
    color: #fff; font-size: 0.8rem; font-weight: 500;
    cursor: pointer; user-select: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
  }
  .discount-chip:hover { background: rgba(255,255,255,0.22); }
  .discount-chip.active { background: #fff; border-color: #fff; color: var(--dune-green); }
  .calc-strip .strip-total { margin-left: auto; font-size: 1.05rem; font-weight: 700; white-space: nowrap; }
  .calc-strip .strip-reset {
    border: 1px solid rgba(255,255,255,0.45); color: #fff;
    background: rgba(255,255,255,0.15); padding: 6px 12px;
    border-radius: 7px; cursor: pointer; font-size: 0.82rem;
    font-weight: 500; transition: background 0.15s;
  }
  .calc-strip .strip-reset:hover { background: rgba(255,255,255,0.28); }
  .calc-strip-note { font-size: 0.75rem; opacity: 0.75; width: 100%; margin-top: -2px; }
  .fee-notes {
    background: var(--surface); border: 1px solid var(--border-blue);
    border-radius: 10px; padding: 28px 32px; margin-bottom: 48px;
  }
  .fee-notes h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-heading); margin-bottom: 12px; }
  .fee-notes p { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; margin-bottom: 8px; }
  .fee-notes p:last-child { margin-bottom: 0; }
  .not-offered { margin-bottom: 48px; }
  .not-offered h2 {
    font-family: 'Source Serif 4', serif;
    font-size: 1.3rem; color: var(--text-heading);
    margin-bottom: 20px; letter-spacing: -0.01em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-blue);
    display: inline-block;
  }
  .not-offered-list { list-style: none; columns: 2; column-gap: 40px; }
  .not-offered-list li {
    font-size: 0.9rem; color: var(--text-secondary); font-weight: 300;
    padding: 6px 0; padding-left: 22px; position: relative; break-inside: avoid;
  }
  .not-offered-list li::before { content: '\2717'; position: absolute; left: 0; color: var(--text-light); font-weight: 500; }
  .fee-footer { padding-top: 32px; border-top: 1px solid var(--border-blue); text-align: center; }
  .fee-footer p { font-size: 0.82rem; color: var(--text-light); font-weight: 300; margin-bottom: 4px; }
  .fee-footer a { color: var(--dune-green); text-decoration: none; }
  .fee-footer a:hover { color: var(--sand-light); }

  /* ══════════════════════════════════════
     ORGANIZER
     ══════════════════════════════════════ */
  .org-group { margin-bottom: 48px; }
  .org-group-title {
    font-family: 'Source Serif 4', serif;
    font-size: 1.2rem; color: var(--text-heading);
    margin-bottom: 4px; padding-bottom: 10px;
    border-bottom: 2px solid var(--crimson);
    display: inline-block; letter-spacing: -0.01em;
  }
  .org-group-desc { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; margin-top: 12px; margin-bottom: 16px; line-height: 1.6; }
  .checklist { list-style: none; margin-top: 20px; }
  .checklist li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border-blue);
    font-size: 0.92rem; color: var(--text-secondary); font-weight: 300; line-height: 1.5;
  }
  .checklist li:first-child { border-top: 1px solid var(--border-blue); }
  .checklist input[type="checkbox"] {
    flex-shrink: 0; margin-top: 3px;
    width: 18px; height: 18px; accent-color: var(--dune-green); cursor: pointer;
  }
  .checklist label { cursor: pointer; flex: 1; }
  .checklist label strong { font-weight: 500; color: var(--text-primary); }
  .org-tip {
    background: var(--surface); border: 1px solid var(--border-blue);
    border-radius: 8px; padding: 20px 24px; margin-top: 16px;
    font-size: 0.85rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6;
  }
  .org-tip strong { font-weight: 600; color: var(--dune-green); }
  .print-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border-blue);
  }
  .print-bar p { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; }
  .print-bar .btn { flex-shrink: 0; }
  .org-cta-block {
    text-align: center; padding: 48px 32px;
    border-top: 1px solid var(--border-blue); margin-top: 48px;
  }
  .org-cta-block p { font-size: 1rem; color: var(--text-secondary); font-weight: 300; margin-bottom: 24px; }

  /* ══════════════════════════════════════
     SUBPAGE MOBILE
     ══════════════════════════════════════ */
  @media (max-width: 768px) {
    .page-header { padding: 100px 24px 36px; }
    .content { padding: 36px 24px 56px; }
    .content--wide { padding-top: 32px; }
    .toc { padding: 18px 20px; margin-bottom: 32px; }
    .highlight-box { padding: 14px 18px; margin: 16px 0; }
    .policy-section { margin-bottom: 36px; }
    .policy-section h2 { display: block; width: fit-content; max-width: 100%; }
    .checklist li { padding: 14px 0; }
    .print-bar { flex-direction: column; align-items: flex-start; }
    .fee-table { font-size: 0.85rem; }
    .fee-table thead th,
    .fee-table tbody td { padding: 10px 10px; }
    .not-offered-list { columns: 1; }
    .fee-notes { padding: 20px 24px; }
    .calc-strip { gap: 12px; }
    .calc-strip.floating {
      bottom: 0; left: 0; transform: none;
      width: 100%; border-radius: 10px 10px 0 0;
      padding: 12px 16px;
    }
    .float-back.raised { bottom: 160px; }
    .calc-strip .strip-total { font-size: 1.1rem; }
    .calc-strip .strip-reset { padding: 8px 16px; }
    .calc-strip-note { margin-top: 4px; line-height: 1.4; }
  }
  @media (max-width: 480px) {
    .float-back { bottom: 20px; right: 16px; padding: 10px 16px; font-size: 0.8rem; }
    .faq-question { font-size: 0.9rem; padding: 16px 0; }
    .nav-logo-text { display: none; }
  }
  @media (max-width: 520px) {
    .fee-table thead th:nth-child(3),
    .fee-table tbody td:nth-child(3) { display: none; }
    .fee-table thead th.col-interact { width: 64px; }
    .inline-counter { gap: 4px; }
    .inline-counter button { width: 24px; height: 24px; font-size: 0.9rem; }
    .calc-strip .strip-total { font-size: 0.95rem; }
  }

  /* ── Organizer print ── */
  @media print {
    nav, .print-bar, .org-cta-block, footer { display: none !important; }
    .page-header { padding-top: 32px; }
    .content { padding-top: 24px; }
    .checklist input[type="checkbox"] {
      -webkit-appearance: none; appearance: none;
      width: 16px; height: 16px; border: 1.5px solid #333; border-radius: 2px;
      background: #fff;
    }
  }

  /* ══════════════════════════════════════
     SUBPAGE DARK MODE
     ══════════════════════════════════════ */
  @media (prefers-color-scheme: dark) {
    /* Fee table: rgba row highlights need explicit dark overrides */
    .fee-table tbody tr:hover { background: rgba(255,255,255,0.04); }
    .fee-table tbody tr.calc-selectable:hover { background: rgba(255,255,255,0.06); }
    .fee-table tbody tr.calc-selected { background: rgba(255,255,255,0.08); }
    .fee-table tbody tr.calc-addon-active { background: rgba(255,255,255,0.04); }
    tr.calc-selected .select-ring { box-shadow: 0 0 0 3px rgba(255,255,255,0.1); }
    .inline-counter button { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
    .inline-counter button:hover { background: rgba(255,255,255,0.14); }
    .inline-counter.has-qty button { border-color: rgba(255,255,255,0.5); }
  }
