/* ============================================
   JJ Auto House — Stylesheet
   ============================================ */

:root {
    --navy: #0b1d3a;
    --navy-deep: #06122a;
    --navy-soft: #14305c;
    --accent: #e63946;
    --accent-dark: #b81d2a;
    --gold: #f5b400;
    --grey-100: #f5f7fa;
    --grey-200: #e6eaf1;
    --grey-400: #9aa4b2;
    --grey-700: #3f4956;
    --text: #1a2230;
    --white: #ffffff;
    --radius: 10px;
    --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 8px 24px rgba(11, 29, 58, 0.12);
    --shadow-lg: 0 16px 48px rgba(11, 29, 58, 0.18);
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Top bar ---------- */
.topbar {
    background: var(--navy-deep);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gold); }
.topbar .meta { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar .meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}
.logo {
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    background: var(--accent);
    color: var(--white);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    font-size: 16px;
}
.logo small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    color: var(--grey-700);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
}
.nav a:hover { color: var(--accent); }
.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    text-align: center;
    line-height: 1.2;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}
.btn-block { width: 100%; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--navy);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    background:
      linear-gradient(135deg, rgba(6,18,42,0.85) 0%, rgba(11,29,58,0.7) 100%),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23222b3d'/><stop offset='1' stop-color='%23111727'/></linearGradient></defs><rect fill='url(%23g)' width='1600' height='900'/><g opacity='0.06' fill='%23ffffff'><circle cx='200' cy='200' r='2'/><circle cx='400' cy='600' r='2'/><circle cx='800' cy='300' r='2'/><circle cx='1200' cy='500' r='2'/><circle cx='1500' cy='800' r='2'/></g></svg>") center/cover;
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(245, 180, 0, 0.15);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 180, 0, 0.3);
}
.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 32px;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}
.hero-trust .check {
    background: var(--gold);
    color: var(--navy-deep);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form */
.hero-form {
    background: var(--white);
    color: var(--text);
    padding: 32px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--accent);
}
.hero-form h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--navy);
}
.hero-form .sub {
    color: var(--grey-700);
    font-size: 14px;
    margin-bottom: 20px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--grey-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-disclaimer {
    font-size: 12px;
    color: var(--grey-400);
    margin-top: 12px;
    text-align: center;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.alt { background: var(--grey-100); }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-head h2 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-head p {
    color: var(--grey-700);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    color: var(--grey-700);
    font-size: 15px;
    margin-bottom: 16px;
    flex-grow: 1;
}
.service-card .learn {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Why us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-points { display: grid; gap: 24px; }
.why-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}
.why-point .num {
    background: var(--accent);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
}
.why-point h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 700;
}
.why-point p { color: var(--grey-700); }

.why-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.why-visual::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.12;
}
.why-visual h3 {
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
}
.why-visual .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 30px;
    position: relative;
}
.why-visual .stat-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.why-visual .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Pink slip banner */
.pink-banner {
    background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.pink-banner h2 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 800;
}
.pink-banner p {
    font-size: 18px;
    margin-bottom: 26px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.pink-banner .price {
    display: inline-block;
    background: var(--white);
    color: #c9184a;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 26px;
}
.pink-banner .btn-primary {
    background: var(--navy-deep);
}
.pink-banner .btn-primary:hover { background: var(--navy); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 18px; letter-spacing: 2px; }
.testimonial p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial .who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.who-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.who-source { color: var(--grey-400); font-size: 12px; }

/* Brands */
.brands {
    padding: 50px 0;
    background: var(--grey-100);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}
.brands h3 {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-400);
    margin-bottom: 28px;
    font-weight: 700;
}
.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}
.brand {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--grey-700);
    font-size: 14px;
    border: 1px solid var(--grey-200);
    letter-spacing: 0.5px;
}

/* CTA strip */
.cta-strip {
    background: var(--navy-deep);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}
.cta-strip h2 {
    font-size: 38px;
    margin-bottom: 14px;
    font-weight: 800;
}
.cta-strip p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.85;
}
.cta-strip .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background: #04091a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    font-size: 14.5px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--gold); }
.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer .logo small { color: rgba(255,255,255,0.5); }
.footer .blurb { line-height: 1.65; margin-bottom: 16px; max-width: 320px; }
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: start;
}
.footer-contact strong { color: var(--white); display: block; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Floating call button (mobile) */
.fab-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    z-index: 99;
    font-size: 26px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(230, 57, 70, 0.7), 0 0 0 8px rgba(230, 57, 70, 0.2); }
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: 70px 0 60px;
    position: relative;
}
.page-head::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}
.page-head h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.page-head p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
}
.breadcrumbs {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--gold); }

/* Content blocks */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}
.content-main h2 {
    font-size: 30px;
    color: var(--navy);
    margin: 36px 0 16px;
    font-weight: 800;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 26px 0 12px;
    font-weight: 700;
}
.content-main p {
    font-size: 16.5px;
    color: var(--grey-700);
    margin-bottom: 16px;
    line-height: 1.75;
}
.content-main ul {
    margin: 0 0 20px 0;
    padding-left: 22px;
}
.content-main ul li {
    margin-bottom: 10px;
    color: var(--grey-700);
    font-size: 16px;
}
.content-main ul li::marker { color: var(--accent); }

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}
.sidebar-card h3 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 20px;
}
.sidebar-card .sub {
    color: var(--grey-700);
    font-size: 14px;
    margin-bottom: 20px;
}
.sidebar-card .price-tag {
    background: var(--grey-100);
    padding: 14px;
    border-radius: 8px;
    margin: 16px 0 20px;
    text-align: center;
}
.sidebar-card .price-tag .label {
    display: block;
    font-size: 12px;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sidebar-card .price-tag .amount {
    display: block;
    font-size: 30px;
    color: var(--navy);
    font-weight: 800;
    margin-top: 4px;
}

.faq { margin-top: 30px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--accent);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
    padding: 0 22px 20px;
    color: var(--grey-700);
    line-height: 1.7;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 14px;
}
.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}
.contact-info-card .sub {
    opacity: 0.85;
    margin-bottom: 30px;
    font-size: 15px;
}
.contact-info-list { display: grid; gap: 22px; }
.contact-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
}
.contact-info-item .ico {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.contact-info-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 15px;
}
.contact-info-item span,
.contact-info-item a {
    color: rgba(255,255,255,0.85);
    font-size: 14.5px;
    line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 6px;
}
.contact-form-card .sub {
    color: var(--grey-700);
    margin-bottom: 24px;
    font-size: 15px;
}

.map-wrap {
    margin-top: 60px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--grey-200);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Thank you page */
.ty-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.ty-card {
    max-width: 580px;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--accent);
}
.ty-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    color: #047857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}
.ty-card h1 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 14px;
}
.ty-card p { color: var(--grey-700); margin-bottom: 24px; font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 38px; }
    .hero { padding: 50px 0 70px; }
    .why-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .sidebar-card { position: static; }
    .section-head h2 { font-size: 32px; }
    section { padding: 60px 0; }
    .page-head h1 { font-size: 34px; }
}

@media (max-width: 700px) {
    .nav, .header-cta .btn-secondary { display: none; }
    .mobile-toggle { display: block; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    .nav.open a {
        padding: 14px 0;
        border-bottom: 1px solid var(--grey-200);
        width: 100%;
    }
    .topbar .meta { gap: 14px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .fab-call { display: inline-flex; }
    .hero h1 { font-size: 30px; }
    .hero p.lead { font-size: 16px; }
    .section-head h2 { font-size: 26px; }
    .cta-strip h2 { font-size: 28px; }
    .pink-banner h2 { font-size: 28px; }
    .contact-info-card, .contact-form-card, .hero-form { padding: 26px; }
}
