/* ============================================================
   Defender Roofing — Design System
   ============================================================ */
:root {
    --navy: #2a3c6a;
    --navy-dark: #1f2d52;
    --navy-light: #3b5085;
    --red: #bb2e3f;
    --red-dark: #99232f;
    --light-blue: #eaf6ff;
    --bg: #ffffff;
    --bg-alt: #f6f8fb;
    --text: #1a2238;
    --text-muted: #5a6478;
    --border: #e3e7ef;
    --shadow-sm: 0 2px 8px rgba(42, 60, 106, 0.08);
    --shadow-md: 0 8px 24px rgba(42, 60, 106, 0.12);
    --shadow-lg: 0 16px 48px rgba(42, 60, 106, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid white; color: white; background: transparent; }
.btn-outline:hover { background: white; color: var(--navy); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ---------- Top Utility Bar ---------- */
.utility-bar {
    background: var(--navy);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.utility-bar a { color: white; }
.utility-bar a:hover { color: var(--light-blue); }
.utility-left { display: flex; align-items: center; gap: 8px; }
.utility-left svg { width: 18px; height: 18px; fill: white; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-social { display: flex; gap: 12px; }
.utility-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
.utility-social svg { width: 18px; height: 18px; fill: white; transition: fill 0.2s; }
.utility-social a:hover svg { fill: var(--light-blue); }
.utility-phone {
    background: var(--red); color: white;
    padding: 6px 18px; border-radius: 999px;
    font-weight: 700; font-size: 0.95rem;
    transition: background 0.2s;
}
.utility-phone:hover { background: var(--red-dark); color: white; }

/* ---------- Main Header / Nav ---------- */
.site-header {
    background: white;
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0; z-index: 100;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-logo img { max-height: 76px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: var(--navy); font-weight: 600; font-size: 0.95rem;
    padding: 10px 14px; border-radius: 8px;
    position: relative;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a.active::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--red);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.7; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: white; box-shadow: var(--shadow-md);
    border-radius: 12px; padding: 8px;
    min-width: 260px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.2s;
    z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; }

/* Mobile menu */
.menu-toggle {
    display: none; background: none; border: none;
    width: 40px; height: 40px; cursor: pointer;
    padding: 0; color: var(--navy);
}
.menu-toggle svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 900px) {
    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: min(360px, 85vw); height: 100vh;
        background: white; box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch; justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 200;
    }
    .main-nav.open { right: 0; }
    .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0 0 0 16px;
        max-height: 0; overflow: hidden; transition: max-height 0.3s;
    }
    .nav-dropdown.open .nav-dropdown-menu { max-height: 500px; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav-backdrop {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        opacity: 0; visibility: hidden; transition: all 0.3s;
        z-index: 150;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 720px;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-slides {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.05);
}
.hero-slide.active {
    opacity: 1;
    animation: hero-zoom 7s ease-out forwards;
}
@keyframes hero-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(20, 30, 60, 0.5) 0%, rgba(20, 30, 60, 0.75) 100%);
}
.hero .container {
    position: relative; z-index: 2;
    padding-top: 64px; padding-bottom: 64px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.hero-content { max-width: 600px; }
.hero h1 { color: white; margin-bottom: 18px; font-size: clamp(1.9rem, 4vw, 3rem); }
.hero p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.95; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    color: var(--text);
    animation: hero-form-enter 0.7s ease-out both;
}
@keyframes hero-form-enter {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-form-card .eyebrow { color: var(--red); }
.hero-form-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.hero-form-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 1;
}
.hero-form-card .form-field input,
.hero-form-card .form-field textarea {
    background: var(--bg-alt);
    border-color: var(--border);
}
.hero-form-card .form-field input:focus,
.hero-form-card .form-field textarea:focus {
    border-color: var(--navy);
    background: white;
}
.hero-form-card button { width: 100%; justify-content: center; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { min-height: 600px; }
    .hero-form-card { padding: 24px; }
    .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}
@media (max-width: 600px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-form-card { padding: 20px; }
    .hero .container { padding-top: 40px; padding-bottom: 40px; }
}

/* Page-header for non-home pages */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(187, 46, 63, 0.15) 0%, transparent 50%);
}
.page-header .container { position: relative; }
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.breadcrumbs {
    display: flex; justify-content: center; gap: 8px;
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
    margin-top: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: white; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.bg-alt { background: var(--bg-alt); }
section.bg-navy { background: var(--navy); color: white; }
section.bg-navy h2 { color: white; }
section.bg-light-blue { background: var(--light-blue); }
section.compact { padding: 56px 0; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header.left { text-align: left; margin-left: 0; }

/* ---------- About Block ---------- */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 460px;
    color: white;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-md);
}
.service-card::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s;
}
.service-card::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(20, 30, 60, 0.2) 0%, rgba(20, 30, 60, 0.85) 100%);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scale(1.05); }
.service-card > * { position: relative; z-index: 2; }
.service-card h3 { color: white; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.92); margin-bottom: 20px; flex: 0; }
.service-card .btn {
    align-self: flex-start;
    background: white; color: var(--navy);
    padding: 10px 22px; font-size: 0.85rem;
}
.service-card .btn:hover { background: var(--red); color: white; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Quote Banner ---------- */
.quote-banner {
    background: var(--red);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: grid; grid-template-columns: 1fr auto auto; gap: 32px;
    align-items: center;
    box-shadow: var(--shadow-md);
}
.quote-banner p { margin: 0; font-size: 1.05rem; font-weight: 500; }
.quote-banner strong { font-weight: 800; }
.quote-banner .phone { font-size: 1.25rem; font-weight: 800; white-space: nowrap; color: white; }
.quote-banner .phone:hover { color: var(--light-blue); }
@media (max-width: 800px) {
    .quote-banner { grid-template-columns: 1fr; padding: 28px; text-align: center; }
}

/* ---------- Feature Cards ---------- */
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
    color: var(--navy);
}
.feature-icon svg { width: 30px; height: 30px; fill: var(--navy); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-bar {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px; flex-wrap: wrap; justify-content: center;
}
.reviews-bar .google-logo { font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.reviews-bar .stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-bar .stars-text { color: var(--text-muted); }
.reviews-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); color: white;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); line-height: 1.2; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-card .stars { color: #f5a623; margin-bottom: 8px; font-size: 0.95rem; }
.review-text { color: var(--text); font-size: 0.93rem; line-height: 1.55; }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ Accordion ---------- */
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.faq-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.6rem; font-weight: 400;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--navy); border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s, color 0.2s;
}
.faq-item[open] summary::after { content: '×'; background: var(--navy); color: white; }
.faq-item summary:hover { color: var(--red); }
.faq-item-body { padding: 0 0 22px 0; color: var(--text-muted); }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Locations Grid ---------- */
.locations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.location-tile {
    background: white;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--navy);
    text-decoration: none;
}
.location-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--red); }
.location-tile .pin {
    width: 36px; height: 36px;
    color: var(--red);
}
.location-tile .pin svg { width: 100%; height: 100%; fill: currentColor; }
.location-tile h4 { color: inherit; font-weight: 700; font-size: 1rem; margin: 0; }
@media (max-width: 900px) { .locations-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 600px) { .locations-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Map ---------- */
.map-section { padding: 0; }
.map-section iframe {
    width: 100%; height: 480px; border: 0; display: block;
}

/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); }
.contact-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-info-list svg { width: 22px; height: 22px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; color: var(--navy); }
.contact-info-list a { color: var(--text); font-weight: 500; }
.contact-info-list a:hover { color: var(--red); }

.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field input, .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg-alt);
    transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: white;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.contact-form button { width: 100%; justify-content: center; }
@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white; text-align: center;
    padding: 72px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-col h5 {
    color: white; text-transform: uppercase; letter-spacing: 0.08em;
    font-size: 0.9rem; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: white; }
.footer-logo img { max-height: 70px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    transition: background 0.2s;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 18px; height: 18px; fill: white; }
.footer-info a { display: block; margin-bottom: 6px; }
.footer-info strong { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile call button (sticky bottom on mobile) ---------- */
.mobile-call-btn {
    display: none;
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    background: var(--red); color: white;
    padding: 14px; border-radius: 999px; text-align: center;
    font-weight: 700; font-size: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 90;
}
.mobile-call-btn:hover { color: white; }
@media (max-width: 600px) { .mobile-call-btn { display: block; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease-out both; }

/* Honeypot for form spam — hide visually but keep it in the form */
.hp-field { position: absolute; left: -9999px; }
