  :root{
    --navy:#1B2A4A; --navy-deep:#131f38; --cream:#FBF6EE; --amber:#E8A33D; --terracotta:#C9553D;
    --sand:#DCD3C3; --sand-dim:rgba(220,211,195,0.55); --charcoal:#2E2E2E; --ink-soft:#4a5163;
    --radius-card:20px; --radius-pill:999px;
    --shadow-soft:0 14px 40px rgba(19,31,56,0.10); --shadow-strong:0 20px 50px rgba(19,31,56,0.18);
  }
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; font-size:118%; }
  body{ overflow-x:hidden; width:100%; }
  body{ margin:0; font-family:'Figtree', sans-serif; background:var(--cream); color:var(--charcoal); -webkit-font-smoothing:antialiased; }
  a{ text-decoration:none; color:inherit; }
  img{ display:block; max-width:100%; }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{ outline:2px solid var(--amber); outline-offset:3px; border-radius:2px; }
  .wrap{ max-width:1200px; margin:0 auto; padding:0 1.75rem; }
  h1,h2,h3{ font-family:'Fraunces', serif; margin:0; }
  .eyebrow{ font-weight:700; font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--terracotta); margin:0 0 0.85rem; display:block; }
  section{ padding:5rem 0; }
  @media (max-width:720px){ section{ padding:3.25rem 0; } }
  .btn{
    display:inline-flex; align-items:center; gap:0.5rem; font-weight:600; font-size:0.92rem;
    padding:0.85rem 1.6rem; border-radius:var(--radius-pill); border:none; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .btn-primary{ background:var(--terracotta); color:var(--cream); width:100%; justify-content:center; }
  .btn-primary:hover{ background:#b3492f; transform:translateY(-1px); }
  .fade-up{ opacity:0; transform:translateY(18px); }
  .fade-up.is-visible{ opacity:1; transform:translateY(0); transition:opacity 0.7s ease, transform 0.7s ease; }
  @media (prefers-reduced-motion: reduce){ .fade-up{ opacity:1; transform:none; transition:none; } }

  /* ================= NAVBAR ================= */
  .nav-wrap{ position:fixed; top:0; left:0; width:100%; z-index:1000; margin-top: -10px; display:flex; justify-content:center; padding-top:1.25rem; pointer-events:none; }
  .navbar{
    pointer-events:auto; width:80%; max-width:1180px; display:flex; align-items:center; justify-content:space-between;
    gap:1.5rem; padding:0.75rem 1.25rem 0.75rem 1rem;
    background:rgba(27,42,74,0.72); backdrop-filter:blur(14px) saturate(140%); -webkit-backdrop-filter:blur(14px) saturate(140%);
    border:1px solid rgba(232,163,61,0.18); border-radius:var(--radius-pill); box-shadow:0 8px 30px rgba(19,31,56,0.18);
    transition:width 0.45s cubic-bezier(.22,1,.36,1), max-width 0.45s cubic-bezier(.22,1,.36,1),
               border-radius 0.45s cubic-bezier(.22,1,.36,1), background 0.45s ease, padding 0.45s ease;
  }
  .navbar.is-scrolled{
    width:100%; max-width:100%; border-radius:0; padding:0.7rem 2.5rem;margin-top: -20px;
    background:rgba(19,31,56,0.92); border-color:transparent; border-bottom:1px solid rgba(232,163,61,0.14);
  }
  .nav-logo{ display:flex; align-items:center; gap:0.6rem; flex-shrink:0; }
  .nav-logo .glyph{
    width:34px; height:34px; border-radius:50%; background:var(--amber); color:var(--navy-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-weight:700; font-size:1rem; flex-shrink:0;
  }
  /* Alternate logo: swap .glyph + .name for a real image asset, then uncomment
     the <img> in the HTML and this rule.
  .nav-logo-img{ height:34px; width:auto; display:block; }
  */
  .nav-logo .name{ font-family:'Fraunces', serif; font-weight:600; font-size:1.02rem; color:var(--cream); white-space:nowrap; max-width:38vw; overflow:hidden; text-overflow:ellipsis; }
  .nav-links{ display:flex; align-items:center; gap:2rem; list-style:none; margin:0; padding:0; }
  .nav-links a{ position:relative; color:var(--sand); font-size:0.93rem; font-weight:500; padding:0.3rem 0.05rem; transition:color 0.2s ease; }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0%; height:2px; background:var(--amber); transition:width 0.25s ease; }
  .nav-links a:hover{ color:var(--cream); }
  .nav-links a:hover::after{ width:100%; }
  .nav-links a.active{ color:var(--cream); }
  .nav-links a.active::after{ width:100%; background:var(--terracotta); }
  .nav-cta{
    display:inline-flex; align-items:center; gap:0.45rem; background:var(--terracotta); color:var(--cream);
    font-weight:600; font-size:0.88rem; padding:0.6rem 1.25rem; border-radius:var(--radius-pill); border:none;
    cursor:pointer; white-space:nowrap; flex-shrink:0; transition:background 0.2s ease, transform 0.15s ease;
  }
  .nav-cta:hover{ background:#b3492f; transform:translateY(-1px); }
  .nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:0.4rem; color:var(--cream); min-width:44px; min-height:44px; align-items:center; justify-content:center; }
  .nav-toggle svg{ width:22px; height:22px; }
  @media (max-width:820px){
    .navbar{ width:92%; padding:0.65rem 0.65rem 0.65rem 0.9rem; }
    .navbar.is-scrolled{ padding:0.6rem 1.1rem; }
    .nav-links{
      position:fixed; top:0; right:0; height:100vh; width:min(78vw,320px); background:var(--navy-deep);
      flex-direction:column; align-items:flex-start; justify-content:center; gap:1.75rem; padding:2rem;
      transform:translateX(100%); transition:transform .35s ease;
    }
    .nav-links.is-open{ transform:translateX(0); }
    .nav-links a{ font-size:1.1rem; }
    .nav-cta{ display:none; }
    .nav-links .mobile-cta{ display:inline-flex; margin-top:0.5rem; }
    .nav-toggle{ display:inline-flex; }
  }
  @media (max-width:400px){
    .navbar{ width:94%; padding:0.6rem 0.55rem 0.6rem 0.75rem; }
    .navbar.is-scrolled{ padding:0.55rem 0.9rem; }
    .nav-logo .glyph{ width:30px; height:30px; font-size:0.9rem; }
    .nav-logo .name{ font-size:0.92rem; max-width:32vw; }
  }

  /* ================= PAGE HEADER ================= */
  .page-header{
    position:relative; padding:10.5rem 0 4rem;
    background:radial-gradient(1000px 460px at 85% -10%, rgba(232,163,61,0.16), transparent 60%),
               linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color:var(--cream); overflow:hidden; text-align:center;
  }
  .page-header::before{
    content:""; position:absolute; inset:0;
    background-image:radial-gradient(rgba(251,246,238,0.05) 1px, transparent 1px);
    background-size:22px 22px; opacity:0.5;
  }
  .page-header .wrap{ position:relative; z-index:1; max-width:640px; margin:0 auto; }
  .page-header .eyebrow{ color:var(--amber); }
  .page-header h1{ font-size:clamp(2rem, 4.4vw, 3rem); font-weight:600; line-height:1.14; margin-bottom:1rem; }
  .page-header p{ color:var(--sand); font-size:1.05rem; line-height:1.75; }

  /* ================= QUICK CONTACT CARDS ================= */
  .quick-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:1.25rem; margin-top:-3.5rem; position:relative; z-index:2; }
  @media (max-width:920px){ .quick-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .quick-grid{ grid-template-columns:1fr; } }
  .quick-card{
    background:#fff; border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:1.75rem 1.5rem;
    text-align:center; transition:transform 0.25s ease, box-shadow 0.25s ease;
  }
  .quick-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-strong); }
  .quick-card .icon{
    width:48px; height:48px; border-radius:50%; background:rgba(232,163,61,0.14); color:var(--terracotta);
    display:flex; align-items:center; justify-content:center; margin:0 auto 1rem;
  }
  .quick-card .icon svg{ width:22px; height:22px; }
  .quick-card h3{ font-size:1rem; font-weight:600; color:var(--navy); margin-bottom:0.4rem; }
  .quick-card p, .quick-card a.value{ font-size:0.9rem; color:var(--ink-soft); margin:0; }
  .quick-card a.value:hover{ color:var(--terracotta); }

  /* ================= FORM + INFO SPLIT ================= */
  .contact-split{ display:grid; grid-template-columns:1.2fr 1fr; gap:3rem; align-items:start; }
  @media (max-width:960px){ .contact-split{ grid-template-columns:1fr; } }

  .contact-form-card{
    background:#fff; border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:2.75rem;
  }
  @media (max-width:600px){ .contact-form-card{ padding:1.75rem; } }
  .contact-form-card h2{ font-size:1.5rem; font-weight:600; color:var(--navy); margin-bottom:0.5rem; }
  .contact-form-card .sub{ color:var(--ink-soft); font-size:0.95rem; margin-bottom:2rem; }

  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-bottom:1.25rem; }
  @media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
  .field{ display:flex; flex-direction:column; gap:0.5rem; margin-bottom:1.25rem; }
  .field label{ font-size:0.85rem; font-weight:600; color:var(--navy); }
  .field input, .field select, .field textarea{
    font-family:'Figtree', sans-serif; font-size:0.95rem; padding:0.8rem 1rem;
    border:1.5px solid rgba(27,42,74,0.15); border-radius:12px; background:var(--cream);
    color:var(--charcoal); transition:border-color 0.2s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--amber); outline:none; }
  .field textarea{ resize:vertical; min-height:120px; font-family:'Figtree', sans-serif; }

  .form-status{
    margin-top:1rem; font-size:0.9rem; padding:0.85rem 1rem; border-radius:10px; display:none;
  }
  .form-status.show{ display:block; }
  .form-status.success{ background:rgba(46,145,90,0.1); color:#1f6b41; }

  /* Info column */
  .info-col{ display:flex; flex-direction:column; gap:1.5rem; }
  /* Sticky info column: only once the two-column layout is active
     (tablet landscape, laptop, desktop) — align-items:start on
     .contact-split lets it stop naturally at the end of its content,
     so it only ever "sticks" when the form column is taller. */
  @media (min-width:961px){
    .info-col{ position:sticky; top:6.5rem; align-self:start; }
  }
  .info-card{
    background:var(--navy); color:var(--cream); border-radius:var(--radius-card); padding:2rem;
    box-shadow:var(--shadow-soft);
  }
  .info-card h3{ font-size:1.1rem; font-weight:600; margin-bottom:1.25rem; color:var(--cream); }
  .info-line{ display:flex; gap:0.85rem; align-items:flex-start; margin-bottom:1.1rem; }
  .info-line:last-child{ margin-bottom:0; }
  .info-line .ic{
    width:34px; height:34px; border-radius:50%; background:rgba(232,163,61,0.16); color:var(--amber);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .info-line .ic svg{ width:16px; height:16px; }
  .info-line .text{ font-size:0.92rem; color:var(--sand); line-height:1.55; }
  .info-line .text a:hover{ color:var(--amber); }

  /* Office hours card (white shell, reused pattern) */
  .hours-card{ background:#fff; border:1.5px solid rgba(27,42,74,0.1); border-radius:var(--radius-card); padding:1.75rem 2rem; box-shadow:var(--shadow-soft); }
  .hours-card h3{ font-size:1rem; font-weight:600; color:var(--navy); margin-bottom:1.1rem; }
  .hours-line{ display:flex; align-items:center; justify-content:space-between; gap:1rem; font-size:0.9rem; color:var(--ink-soft); padding:0.55rem 0; border-bottom:1px solid rgba(27,42,74,0.08); }
  .hours-line:last-of-type{ border-bottom:none; }
  .hours-line span:first-child{ color:var(--navy); font-weight:600; }

  /* Response-time reassurance card */
  .response-card{ background:rgba(232,163,61,0.12); border:1.5px dashed rgba(232,163,61,0.4); border-radius:var(--radius-card); padding:1.5rem 1.75rem; display:flex; gap:1rem; align-items:flex-start; }
  .response-card .ic{
    width:38px; height:38px; border-radius:50%; background:var(--amber); color:var(--navy-deep);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .response-card .ic svg{ width:18px; height:18px; }
  .response-card b{ display:block; color:var(--navy); font-size:0.92rem; margin-bottom:0.3rem; }
  .response-card p{ margin:0; font-size:0.85rem; color:var(--ink-soft); line-height:1.55; }

  .social-card{ background:#fff; border-radius:var(--radius-card); padding:1.75rem 2rem; box-shadow:var(--shadow-soft); }
  .social-card h3{ font-size:1rem; font-weight:600; color:var(--navy); margin-bottom:1rem; }
  .social-row{ display:flex; gap:0.65rem; }
  .social-row a{
    width:40px; height:40px; border-radius:50%; border:1.5px solid rgba(27,42,74,0.15);
    display:flex; align-items:center; justify-content:center; color:var(--navy);
    transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .social-row a:hover{ border-color:var(--terracotta); color:#fff; background:var(--terracotta); }
  .social-row svg{ width:17px; height:17px; }

  /* ================= MAP ================= */
  .map-section{ background:#fff; padding-top:0; }
  .map-frame{ border-radius:var(--radius-card); overflow:hidden; box-shadow:var(--shadow-soft); height:420px; }
  @media (max-width:600px){ .map-frame{ height:300px; } }
  .map-frame iframe{ width:100%; height:100%; border:0; display:block; }

  /* ================= WHATSAPP CTA ================= */
  .whatsapp-strip{ background:linear-gradient(120deg, var(--terracotta), #a8442e); color:var(--cream); border-radius:28px; padding:3rem; text-align:center; }
  .whatsapp-strip h2{ color:var(--cream); font-size:clamp(1.4rem,3vw,2rem); margin-bottom:0.75rem; }
  .whatsapp-strip p{ color:rgba(251,246,238,0.9); margin-bottom:1.5rem; }
  .whatsapp-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
  .btn-on-cream{ background:var(--cream); color:var(--navy); }
  .btn-on-cream:hover{ background:#fff; transform:translateY(-1px); }

  /* ================= FOOTER ================= */
  .site-footer{ position:relative; background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color:var(--cream); overflow:hidden; padding:5rem 1.5rem 0; }
  .watermark{
    position:absolute; left:50%; bottom:-2.2rem; transform:translateX(-50%); width:100%; text-align:center;
    font-family:'Fraunces', serif; font-weight:600; font-size:clamp(2.6rem, 11vw, 9rem); letter-spacing:-0.01em;
    white-space:nowrap; color:transparent; -webkit-text-stroke:1px rgba(232,163,61,0.16); pointer-events:none; user-select:none; z-index:0;
  }
  .footer-inner{ position:relative; z-index:1; max-width:1240px; margin:0 auto; }
  .footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.15fr; gap:3rem; padding-bottom:3.5rem; border-bottom:1px solid rgba(220,211,195,0.15); }
  @media (max-width:880px){ .footer-grid{ grid-template-columns:1fr 1fr; row-gap:2.75rem; } }
  @media (max-width:540px){ .footer-grid{ grid-template-columns:1fr; } }
  .col-brand{ padding-right:1rem; }
  .brand-mark{ display:flex; align-items:center; gap:0.65rem; margin-bottom:1.1rem; }
  .brand-mark .glyph{
    width:38px; height:38px; border-radius:50%; background:var(--amber); color:var(--navy-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-weight:700; font-size:1.1rem; flex-shrink:0;
  }
  .brand-mark .name{ font-family:'Fraunces', serif; font-weight:600; font-size:1.15rem; color:var(--cream); }
  .col-brand p.tagline{ font-size:0.95rem; line-height:1.65; color:var(--sand); max-width:30ch; margin:0 0 1.6rem; }
  .footer-social{ display:flex; gap:0.65rem; }
  .footer-social a{
    width:36px; height:36px; border-radius:50%; border:1px solid rgba(220,211,195,0.3);
    display:flex; align-items:center; justify-content:center; color:var(--sand);
    transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .footer-social a:hover{ border-color:var(--amber); color:var(--navy-deep); background:var(--amber); }
  .footer-social svg{ width:16px; height:16px; }
  .col-links h3{ font-family:'Fraunces', serif; font-weight:600; font-size:0.85rem; letter-spacing:0.09em; text-transform:uppercase; color:var(--amber); margin:0 0 1.25rem; }
  .col-links ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:0.75rem; }
  .col-links a{ font-size:0.95rem; color:var(--sand); position:relative; transition:color 0.2s ease; }
  .col-links a:hover{ color:var(--cream); }
  .col-links a::before{
    content:""; position:absolute; left:-14px; top:50%; width:5px; height:5px; border-radius:50%;
    background:var(--terracotta); transform:translateY(-50%) scale(0); transition:transform 0.2s ease;
  }
  .col-links a:hover::before{ transform:translateY(-50%) scale(1); }
  .col-contact address{ font-style:normal; font-size:0.95rem; line-height:1.7; color:var(--sand); margin:0 0 1.4rem; }
  .col-contact address a:hover{ color:var(--amber); }
  .footer-donate-btn{
    display:inline-flex; align-items:center; gap:0.5rem; background:var(--terracotta); color:var(--cream);
    font-weight:600; font-size:0.9rem; padding:0.7rem 1.3rem; border-radius:var(--radius-pill); border:none; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .footer-donate-btn:hover{ background:#b3492f; transform:translateY(-1px); }
  .footer-bottom{
    position:relative; z-index:1; max-width:1240px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:1rem; padding:1.6rem 0 4.5rem; font-size:0.82rem; color:var(--sand-dim);
  }
  .footer-bottom .legal{ display:flex; gap:1.5rem; flex-wrap:wrap; }
  .footer-bottom .legal a:hover{ color:var(--amber); }
  .charity-reg strong{ color:var(--sand); font-weight:600; }

  /* ================= TESTIMONIALS + REVIEW FORM ================= */
  .tf-section{ background:#fff; }
  .section-head{ max-width:640px; margin:0 0 2.75rem; }
  .section-head h2{ font-size:clamp(1.6rem,3vw,2.1rem); font-weight:600; color:var(--navy); line-height:1.2; }
  .tf-split{ display:grid; grid-template-columns:1.05fr 1fr; gap:3rem; align-items:start; }
  @media (max-width:960px){ .tf-split{ grid-template-columns:1fr; } }

  .tf-testi-col{ display:flex; flex-direction:column; gap:1.25rem; }
  .quote-card{ background:var(--cream); border:1.5px solid rgba(27,42,74,0.08); border-radius:var(--radius-card); padding:1.85rem 2rem; }
  .quote-card .stars{ color:var(--amber); font-size:0.95rem; letter-spacing:0.12em; margin-bottom:0.75rem; }
  .quote-card .quote-text{ font-size:0.98rem; color:var(--charcoal); line-height:1.7; font-style:italic; margin:0 0 1.25rem; }
  .quote-who{ display:flex; align-items:center; gap:0.75rem; }
  .quote-who .avatar{
    width:42px; height:42px; border-radius:50%; background:var(--navy); color:var(--cream);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-weight:700;
    font-size:0.9rem; flex-shrink:0;
  }
  .quote-who b{ display:block; font-size:0.9rem; color:var(--navy); }
  .quote-who span{ font-size:0.8rem; color:var(--ink-soft); }

  @media (min-width:961px){ .tf-form-col{ position:sticky; top:6.5rem; align-self:start; } }
  .review-form-card{ background:var(--navy); color:var(--cream); border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:2.75rem; }
  @media (max-width:600px){ .review-form-card{ padding:1.75rem; } }
  .review-form-card h3{ font-size:1.35rem; font-weight:600; color:var(--cream); margin-bottom:0.5rem; }
  .review-form-card .sub{ color:var(--sand); font-size:0.92rem; margin-bottom:1.75rem; line-height:1.6; }
  .review-form-card .field label{ color:var(--cream); }
  .review-form-card .field input, .review-form-card .field select, .review-form-card .field textarea{
    background:rgba(251,246,238,0.06); border:1.5px solid rgba(251,246,238,0.18); color:var(--cream);
  }
  .review-form-card .field input::placeholder, .review-form-card .field textarea::placeholder{ color:rgba(220,211,195,0.5); }
  .review-form-card .field select option{ color:var(--charcoal); }
  .review-form-card .field input:focus, .review-form-card .field select:focus, .review-form-card .field textarea:focus{ border-color:var(--amber); }
  .review-form-card .form-status.success{ background:rgba(232,163,61,0.16); color:var(--amber); }

  .star-select{ display:flex; gap:0.4rem; }
  .star-select button{
    background:none; border:none; cursor:pointer; font-size:1.6rem; line-height:1; color:rgba(251,246,238,0.28);
    padding:0.1rem; transition:color 0.15s ease, transform 0.15s ease;
  }
  .star-select button:hover{ transform:scale(1.12); }
  .star-select button.active{ color:var(--amber); }

  /* ================= FAQ + QUESTION FORM ================= */
  .faq-section{ background:var(--cream); }
  .faq-split{ display:grid; grid-template-columns:1.05fr 1fr; gap:3rem; align-items:start; }
  @media (max-width:960px){ .faq-split{ grid-template-columns:1fr; } }

  .faq-col{ display:flex; flex-direction:column; gap:0.9rem; }
  .faq-item{ background:#fff; border:1.5px solid rgba(27,42,74,0.09); border-radius:16px; padding:0; overflow:hidden; }
  .faq-item summary{
    list-style:none; cursor:pointer; padding:1.25rem 1.5rem; display:flex; align-items:center; justify-content:space-between;
    gap:1rem; font-family:'Fraunces', serif; font-weight:600; font-size:1.02rem; color:var(--navy);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item .faq-toggle{
    width:28px; height:28px; border-radius:50%; background:rgba(201,85,61,0.1); color:var(--terracotta);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform 0.25s ease, background 0.25s ease;
    font-size:1.1rem; font-weight:400;
  }
  .faq-item[open] .faq-toggle{ transform:rotate(45deg); background:var(--terracotta); color:var(--cream); }
  .faq-item p{ margin:0; padding:0 1.5rem 1.35rem; font-size:0.92rem; color:var(--ink-soft); line-height:1.7; }

  @media (min-width:961px){ .faq-form-col{ position:sticky; top:6.5rem; align-self:start; } }
  .qa-form-card{ background:#fff; border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:2.75rem; }
  @media (max-width:600px){ .qa-form-card{ padding:1.75rem; } }
  .qa-form-card h3{ font-size:1.35rem; font-weight:600; color:var(--navy); margin-bottom:0.5rem; }
  .qa-form-card .sub{ color:var(--ink-soft); font-size:0.92rem; margin-bottom:1.75rem; line-height:1.6; }

