 /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: hsl(141, 63%, 22%);
      --primary-hover: hsl(141, 63%, 18%);
      --primary-fg: hsl(0, 0%, 100%);
      --background: hsl(0, 0%, 100%);
      --foreground: hsl(210, 11%, 15%);
      --secondary: hsl(140, 8%, 94%);
      --muted-fg: hsl(210, 5%, 45%);
      --card: hsl(0, 0%, 100%);
      --border: hsl(210, 11%, 87%);
      --charcoal: hsl(210, 11%, 15%);
      --charcoal-75: hsla(210, 11%, 15%, 0.75);
      --charcoal-70: hsla(210, 11%, 15%, 0.70);
      --radius: 0.5rem;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', sans-serif; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; font-family: 'Oswald', sans-serif; }

    /* ===== LAYOUT ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
    .container-lg { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: hsla(210, 11%, 15%, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid hsla(141, 63%, 22%, 0.2);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 94px; padding: 0 1rem;
    }
    .nav-brand {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem; font-weight: 700;
      color: #fff; text-transform: uppercase; letter-spacing: 0.1em;
    }
    .nav-brand span { color: var(--primary); }
    .nav-links { display: flex; align-items: center; gap: 1.5rem; }
    .nav-links a {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.8); transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--primary); }
    .btn-nav {
      background: var(--primary); color: #fff;
      font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.5rem 1.25rem; border-radius: var(--radius);
      transition: background 0.2s;
    }
    .btn-nav:hover { background: var(--primary-hover); }
    .hamburger {
      display: none; background: none; border: none;
      color: #fff; cursor: pointer; padding: 0.25rem;
    }
    .mobile-menu {
      display: none; flex-direction: column;
      background: var(--charcoal);
      border-top: 1px solid hsla(141, 63%, 22%, 0.2);
      padding-bottom: 1rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block; padding: 0.75rem 1.5rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.8); transition: color 0.2s;
    }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
    .mobile-menu .btn-wrapper { padding: 0.5rem 1.5rem; }
    .mobile-menu .btn-quote {
      display: block; width: 100%;
      background: var(--primary); color: #fff;
      text-align: center; padding: 0.75rem;
      border-radius: var(--radius);
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
      transition: background 0.2s;
    }
    .mobile-menu .btn-quote:hover { background: var(--primary-hover); }

    /* ===== MAIN CONTENT ===== */
    main { padding-top: 64px; min-height: calc(100vh - 64px); }
    .page { display: none; }
    .page.active { display: block; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--primary); color: #fff;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.75rem 2rem; border-radius: var(--radius);
      font-size: 1rem; transition: background 0.2s; border: none;
    }
    .btn-primary:hover { background: var(--primary-hover); }
    .btn-primary-lg {
      padding: 1rem 2.5rem; font-size: 1.125rem;
    }
    .btn-outline {
      display: inline-block;
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.75rem 2rem; border-radius: var(--radius);
      font-size: 1rem; transition: background 0.2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); }
    .btn-outline-green {
      display: inline-block;
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.75rem 2rem; border-radius: var(--radius);
      font-size: 1rem; transition: all 0.2s;
    }
    .btn-outline-green:hover { background: var(--primary); color: #fff; }
    .btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 90vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; text-align: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: var(--charcoal-70);
    }
    .hero-content { position: relative; z-index: 10; padding: 0 1rem; }
    .hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 6vw, 4.5rem);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: #fff; line-height: 1.1;
    }
    .hero-title .accent { color: var(--primary); }
    .hero-subtitle {
      margin-top: 1.5rem; font-size: 1.125rem;
      color: rgba(255,255,255,0.8); max-width: 600px; margin-left: auto; margin-right: auto;
    }
    .hero-actions {
      margin-top: 2rem; display: flex; flex-wrap: wrap;
      gap: 1rem; justify-content: center;
    }
    .page-hero {
      position: relative; padding: 8rem 1rem;
      overflow: hidden; text-align: center;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: var(--charcoal-75);
    }
    .page-hero-content { position: relative; z-index: 10; }
    .page-hero-plain {
      background: var(--charcoal); padding: 8rem 1rem; text-align: center;
    }
    .page-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: #fff;
    }
    .page-hero-plain h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: #fff;
    }
    .page-hero h1 .accent, .page-hero-plain h1 .accent { color: var(--primary); }
    .page-hero p, .page-hero-plain p {
      margin-top: 1rem; color: rgba(255,255,255,0.7);
      max-width: 600px; margin-left: auto; margin-right: auto;
    }

    /* ===== SECTIONS ===== */
    .section { padding: 5rem 0; }
    .section-secondary { background: var(--secondary); }
    .section-charcoal { background: var(--charcoal); }
    .section-center { text-align: center; }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--foreground); margin-bottom: 1.5rem;
    }
    .section-title .accent { color: var(--primary); }
    .section-title-white { color: #fff; }
    .section-title-white .accent { color: var(--primary); }
    .section-subtitle { color: var(--muted-fg); max-width: 700px; }
    .section-subtitle-center { margin-left: auto; margin-right: auto; text-align: center; }

    /* ===== TRUST STRIP ===== */
    .trust-strip {
      background: var(--primary); padding: 1rem 0;
    }
    .trust-strip-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 1rem;
      display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.5rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: #fff;
    }
    .trust-item svg { width: 18px; height: 18px; }

    /* ===== GRID ===== */
    .grid-2 { display: grid; gap: 2rem; }
    .grid-3 { display: grid; gap: 1.5rem; }
    .grid-4 { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) {
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 768px) {
      .grid-2 { grid-template-columns: repeat(2, 1fr); }
      .grid-4 { grid-template-columns: repeat(4, 1fr); }
    }
    @media (min-width: 1024px) {
      .grid-2 { gap: 3rem; }
    }

    /* ===== CARDS ===== */
    .card {
      background: var(--card); border-radius: var(--radius);
      overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .card img { width: 100%; height: 224px; object-fit: cover; }
    .card-body { padding: 1.5rem; }
    .card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground); margin-bottom: 0.75rem;
    }
    .card-text { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
    .checklist { list-style: none; margin-bottom: 1.25rem; }
    .checklist li {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.25rem;
    }
    .checklist li svg { color: var(--primary); flex-shrink: 0; width: 14px; height: 14px; }
    .card-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }

    /* ===== VALUE CARDS ===== */
    .value-card {
      background: var(--card); padding: 1.5rem;
      border-radius: var(--radius); text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .value-card svg { color: var(--primary); margin: 0 auto 1rem; display: block; width: 36px; height: 36px; }
    .value-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground); margin-bottom: 0.5rem;
    }
    .value-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

    /* ===== STEP CARDS ===== */
    .step-card {
      background: var(--card); padding: 1.5rem;
      border-radius: var(--radius); text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .step-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem; font-weight: 700;
      color: var(--primary); margin-bottom: 0.75rem;
    }
    .step-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground); margin-bottom: 0.5rem;
    }
    .step-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

    /* ===== INFO CARDS (icon + text) ===== */
    .info-card {
      display: flex; align-items: center; gap: 1rem;
      background: var(--secondary); padding: 1rem;
      border-radius: var(--radius); transition: background 0.2s;
    }
    .info-card:hover { background: hsla(141, 63%, 22%, 0.1); }
    .info-card svg { color: var(--primary); flex-shrink: 0; width: 24px; height: 24px; }
    .info-card .label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--foreground);
    }
    .info-card .value { font-size: 0.875rem; color: var(--muted-fg); }

    /* ===== TWO-COL LAYOUT ===== */
    .two-col { display: grid; gap: 3rem; align-items: center; }
    @media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
    .two-col img { width: 100%; border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
    .col-text .section-title { margin-bottom: 1.5rem; }
    .col-text p { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }

    /* ===== FEATURE GRID (icons) ===== */
    .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
    .feature-item {
      display: flex; align-items: center; gap: 0.75rem;
      background: var(--secondary); padding: 0.75rem;
      border-radius: var(--radius);
    }
    .feature-item svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
    .feature-item span {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground);
    }

    /* ===== SPEC TABLE ===== */
    .spec-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
    .spec-table thead tr { background: var(--charcoal); }
    .spec-table thead th {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #fff; text-align: left; padding: 0.75rem 1rem;
    }
    .spec-table tbody td { padding: 0.75rem 1rem; }
    .spec-table tbody tr:nth-child(odd) { background: var(--secondary); }
    .spec-table tbody tr:nth-child(even) { background: var(--card); }
    .spec-table .td-main { font-weight: 600; color: var(--foreground); }
    .spec-table .td-muted { color: var(--muted-fg); }
    .table-scroll { overflow-x: auto; }

    /* ===== TREATMENT STANDARDS BOX ===== */
    .standards-box {
      margin-top: 2.5rem; background: var(--secondary);
      border-radius: var(--radius); padding: 1.5rem;
    }
    .standards-box h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.125rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground); margin-bottom: 0.75rem;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      position: relative; padding: 6rem 0; text-align: center;
      background: var(--charcoal); overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; inset: 0;
      background: hsla(141, 63%, 22%, 0.1);
    }
    .cta-banner-content { position: relative; z-index: 1; padding: 0 1rem; }
    .cta-banner h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: #fff; margin-bottom: 1.5rem;
    }
    .cta-banner h2 .accent { color: var(--primary); }
    .cta-banner p {
      color: rgba(255,255,255,0.7); max-width: 500px;
      margin: 0 auto 2rem;
    }

    /* ===== PROCESS LIST ===== */
    .process-text { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1rem; }
    .process-list { list-style: decimal; padding-left: 1.25rem; }
    .process-list li { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; line-height: 1.6; }
    .process-strong { color: #fff; font-weight: 600; }

    /* ===== CONTACT ===== */
    .contact-grid { display: grid; gap: 3rem; }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

    /* ===== FORM ===== */
    .form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.25rem; }
    .form-group label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 0.5rem 0.75rem; border: 1px solid var(--border);
      border-radius: var(--radius); background: var(--background);
      color: var(--foreground); font-size: 0.875rem;
      font-family: 'Source Sans 3', sans-serif;
      outline: none; transition: box-shadow 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      box-shadow: 0 0 0 2px var(--primary);
    }
    .form-group textarea { resize: none; }
    .form-submit {
      background: var(--primary); color: #fff;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.75rem; border-radius: var(--radius);
      font-size: 0.875rem; transition: background 0.2s;
    }
    .form-submit:hover { background: var(--primary-hover); }
    .form-success {
      background: var(--secondary); border-radius: var(--radius);
      padding: 2rem; text-align: center;
    }
    .form-success .tick { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.75rem; }
    .form-success h3 {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; font-size: 1.25rem;
      color: var(--foreground); margin-bottom: 0.5rem;
    }
    .form-success p { color: var(--muted-fg); }

    /* ===== MAP ===== */
    .map-section { height: 320px; }
    .map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

    /* ===== PRICING INFO CARDS ===== */
    .pricing-cards { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .pricing-cards { grid-template-columns: repeat(3, 1fr); } }
    .pricing-card {
      background: var(--card); border-radius: var(--radius);
      padding: 1.5rem; text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .pricing-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground); margin-bottom: 0.5rem;
    }
    .pricing-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--charcoal); color: rgba(255,255,255,0.8);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 3rem 2rem 1.5rem;
      display: grid; gap: 2rem;
    }
    @media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }
    .footer-brand {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem; font-weight: 700;
      color: #fff; text-transform: uppercase;
      letter-spacing: 0.1em; margin-bottom: 1rem;
    }
    .footer-brand span { color: var(--primary); }
    footer p { font-size: 0.875rem; line-height: 1.6; }
    .footer-heading {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--primary); margin-bottom: 1rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      font-size: 0.875rem; color: rgba(255,255,255,0.8);
      transition: color 0.2s; cursor: pointer;
    }
    .footer-links a:hover { color: var(--primary); }
    .footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-contact a {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.875rem; color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }
    .footer-contact a:hover { color: var(--primary); }
    .footer-contact .address-line {
      display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem;
    }
    .footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 2.5rem; padding-top: 1.5rem;
      text-align: center; font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 100;
      background: rgba(0,0,0,0.6);
      display: flex; align-items: center; justify-content: center;
      padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.2s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--background); border-radius: var(--radius);
      padding: 1.5rem; max-width: 520px; width: 100%;
      max-height: 90vh; overflow-y: auto;
      transform: translateY(20px); transition: transform 0.2s;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-header { margin-bottom: 1rem; }
    .modal-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--foreground);
    }
    .modal-subtitle { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.25rem; }
    .modal-close {
      position: absolute; top: 1rem; right: 1rem;
      background: none; font-size: 1.5rem; color: var(--muted-fg);
      line-height: 1; padding: 0.25rem 0.5rem;
      border-radius: var(--radius); transition: color 0.2s;
    }
    .modal-close:hover { color: var(--foreground); }
    .modal { position: relative; }

    /* ===== MISC ===== */
    .max-4xl { max-width: 900px; margin-left: auto; margin-right: auto; }
    .max-3xl { max-width: 760px; margin-left: auto; margin-right: auto; }
    .prose p { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mt-8 { margin-top: 2rem; }
    .mt-6 { margin-top: 1.5rem; }
    .text-link-primary {
      font-family: 'Oswald', sans-serif;
      font-size: 0.875rem; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--primary);
    }
    .text-link-primary:hover { text-decoration: underline; }
    .flex-gap { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
    .spec-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
    .spec-row svg { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
    .spec-row .label { color: var(--foreground); font-weight: 600; }
    .spec-row .val { color: var(--muted-fg); }

    /* ===== RESPONSIVE NAV ===== */
    @media (max-width: 1023px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }
    @media (min-width: 1024px) {
      .hamburger { display: none; }
      .mobile-menu { display: none !important; }
    }

    /* ===== RESPONSIVE FORM ROW ===== */
    @media (max-width: 480px) {
      .form-row { grid-template-columns: 1fr; }
    }