:root {
  --forest: #1a3a1a;
  --forest-mid: #2d5a2d;
  --forest-light: #3d7a3d;
  --bark: #5c3d1e;
  --bark-light: #7a5230;
  --sawdust: #f5edd8;
  --cream: #faf7f0;
  --earth: #8b6340;
  --accent-yellow: #f0a500;
  --accent-yellow-dark: #c8870a;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --success: #2d7a2d;
}
html { scroll-padding-top: 110px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--forest);
    padding: 0.9rem 2rem;
    z-index: 1000;
    border-bottom: 4px solid var(--accent-yellow);
    box-shadow: 0 3px 20px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--sawdust);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    color: var(--accent-yellow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--sawdust);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover { color: var(--accent-yellow); }

.has-submenu { position: relative; }
.nav-caret { display: inline-block; font-size: 0.65em; margin-left: 0.2em; transition: transform 0.2s; }
.has-submenu:hover .nav-caret, .has-submenu:focus-within .nav-caret { transform: rotate(180deg); }
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 220px;
    background: var(--forest);
    border-top: 3px solid var(--accent-yellow);
    border-radius: 0 0 6px 6px;
    list-style: none;
    padding: 0.35rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.has-submenu:hover > .nav-submenu,
.has-submenu:focus-within > .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav-submenu li { margin: 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-submenu li:last-child { border-bottom: none; }
.nav-submenu a { display: block; padding: 0.65rem 1.1rem; white-space: nowrap; text-transform: none; letter-spacing: 0.2px; font-size: 0.88rem; font-weight: 600; color: rgba(245,237,216,0.92); }
.nav-submenu a:hover { background: rgba(255,255,255,0.06); color: var(--accent-yellow); }

.header-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-phone:hover { color: #fff; }

.site-header .header-cta,
.header-cta {
    background: var(--accent-yellow);
    color: var(--forest);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.site-header .header-cta:hover,
.site-header .header-cta:focus,
.site-header .header-cta:active,
.site-header .header-cta:visited,
.header-cta:hover,
.header-cta:focus,
.header-cta:active,
.header-cta:visited {
    text-decoration: none;
    color: var(--forest);
}

.header-cta:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 3rem;
    background-color: var(--forest);
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 35, 15, 0.72);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 780px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(240,165,0,0.2);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-stump-icon {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(240,165,0,0.4));
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    color: var(--sawdust);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.hero h1 .yellow { color: var(--accent-yellow); }

.hero h2 {
    font-size: 1.25rem;
    color: rgba(245,237,216,0.8);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-subtext {
    font-size: 1rem;
    color: var(--success);
    color: #6db86d;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.phone-block {
    background: var(--accent-yellow);
    color: var(--forest);
    padding: 1rem 2rem;
    border-radius: 6px;
    margin: 1.5rem auto;
    max-width: 480px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 30px rgba(240,165,0,0.4);
}

.phone-block:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240,165,0,0.5);
}

.phone-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.phone-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--forest);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240,165,0,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--sawdust);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(245,237,216,0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--sawdust);
    background: rgba(245,237,216,0.1);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(245,237,216,0.12);
    border: 1px solid rgba(245,237,216,0.25);
    color: var(--sawdust);
    padding: 0.5rem 1.2rem;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.arrow-bounce {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    display: block;
    margin: 2rem auto 0;
    animation: bounce 2.2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(14px); }
}

/* ─── SERVICES ─── */
.services {
    padding: 6rem 2rem;
    background: var(--cream);
}

.section-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-align: center;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-mid);
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: 4px solid var(--forest);
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    border-top-color: var(--accent-yellow);
}

.service-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-card p strong {
    color: var(--forest);
    font-weight: 800;
}

/* ─── FEATURES / WHY US ─── */
.features {
    padding: 6rem 2rem;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.02) 3px,
        rgba(255,255,255,0.02) 6px
    );
}

.features-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.features-content > :last-child { display: flex; }

.features h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--sawdust);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    width: 26px;
    height: 26px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text h3 {
    color: var(--sawdust);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-family: 'Nunito', sans-serif;
    letter-spacing: normal;
    text-transform: none;
}

.feature-text p {
    color: rgba(245,237,216,0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 4px solid var(--accent-yellow);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    transition: background 0.3s;
}

.testimonial:hover {
    background: rgba(255,255,255,0.1);
}

.stars { font-size: 1rem; margin-bottom: 0.4rem; }

.testimonial-text {
    font-style: italic;
    color: rgba(245,237,216,0.85);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-yellow);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--accent-yellow);
    border-radius: 6px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.stat-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--forest);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-card p {
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(26,58,26,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── PROCESS STRIP ─── */
.process {
    padding: 5rem 2rem;
    background: var(--sawdust);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 3rem auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--forest-mid) 0px,
        var(--forest-mid) 12px,
        transparent 12px,
        transparent 22px
    );
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    border: 4px solid var(--cream);
}

.process-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ─── CTA SECTION ─── */
.cta-section {
    background: var(--bark);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(0,0,0,0.04) 30px,
            rgba(0,0,0,0.04) 60px
        );
    margin: 0 2rem 4rem;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '🌳';
    position: absolute;
    font-size: 12rem;
    opacity: 0.06;
    top: -20px;
    left: -30px;
    transform: rotate(-15deg);
}

.cta-section::after {
    content: '🪓';
    position: absolute;
    font-size: 10rem;
    opacity: 0.06;
    bottom: -20px;
    right: -20px;
    transform: rotate(20deg);
}

.offer-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--forest);
    padding: 0.4rem 1.4rem;
    border-radius: 3px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--sawdust);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(245,237,216,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.btn-white {
    background: var(--sawdust);
    color: var(--forest);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.fine-print {
    font-size: 0.82rem;
    color: rgba(245,237,216,0.6);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--forest);
    padding: 3rem 2rem 2rem;
    border-top: 4px solid var(--accent-yellow);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.emergency-bar {
    background: rgba(240,165,0,0.15);
    border: 1px solid rgba(240,165,0,0.4);
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(245,237,216,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-yellow); }

.contact-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-item {
    color: rgba(245,237,216,0.9);
    font-size: 0.9rem;
}

.contact-item strong {
    color: var(--accent-yellow);
}

.site-footer .contact-item a,
.contact-item a {
    color: var(--sawdust);
    text-decoration: none;
    border-bottom: 1px dotted rgba(245,237,216,0.45);
    transition: color 0.2s, border-color 0.2s;
}

.site-footer .contact-item a:visited,
.contact-item a:visited {
    color: var(--sawdust);
}

.site-footer .contact-item a:hover,
.contact-item a:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    color: rgba(245,237,216,0.75);
    font-size: 0.82rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    nav ul { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--forest); flex-direction: column; gap: 0; padding: 1rem 0; border-bottom: 4px solid var(--accent-yellow); max-height: calc(100vh - 72px); overflow-y: auto; }
    nav ul#nav-menu.nav-open { display: flex; }
    nav ul#nav-menu > li { width: 100%; text-align: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-toggle { display: block; background: transparent; border: none; color: var(--sawdust); font-size: 1.8rem; cursor: pointer; padding: 0.3rem; }
    .nav-submenu { position: static; transform: none !important; opacity: 1; visibility: visible; pointer-events: auto; background: transparent; border: none; border-radius: 0; box-shadow: none; padding: 0.4rem 0 0; min-width: 0; display: flex; }
    .nav-submenu li { border-bottom: none; }
    .nav-submenu a { padding: 0.45rem 0; font-size: 0.82rem; color: rgba(245,237,216,0.8); text-align: center; }
    .has-submenu .nav-caret { display: none; }
    .header-cta { display: none; }
    .header-phone { font-size: 1.2rem; }
    .hero h1 { font-size: 4rem; }
    .features-content { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
}
.nav-toggle { display: none; }

/* Page layout with sidebar */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 7rem 2rem 3rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.page-main h1 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--forest); letter-spacing: 2px; margin-bottom: 1rem; }
.page-main h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--forest); letter-spacing: 1px; margin: 2rem 0 1rem; }
.page-main p { margin-bottom: 1rem; color: var(--text-mid); }
.page-main a:not([class*="btn-"]) { color: var(--forest-mid); text-decoration: underline; }

/* Sidebar */
.page-sidebar { position: sticky; top: 120px; align-self: start; }
.sidebar-card { background: #fff; border-radius: 8px; padding: 1.5rem; border-top: 4px solid var(--accent-yellow); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.sidebar-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--forest); margin-bottom: 0.5rem; }
.btn-phone { display:block; background: var(--forest); color: var(--sawdust); font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; text-align:center; padding: 0.8rem; border-radius: 4px; margin: 1rem 0 0.5rem; text-decoration:none; letter-spacing: 1px; }
.sidebar-card .btn-primary { display:block; text-align:center; }
.trust-row {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 1rem 0 0;
    padding: 0;
}
.trust-row li {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    background: var(--forest);
    color: var(--sawdust);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    padding: 0.45rem 0.35rem;
    border-radius: 3px;
    line-height: 1.25;
    overflow-wrap: break-word;
}

/* ZIP/city grid */
.zip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; margin: 1rem 0 2rem; }
.zip-grid a { background: #fff; padding: 0.6rem; text-align:center; border-radius: 4px; border: 1px solid rgba(0,0,0,0.08); text-decoration: none; color: var(--forest-mid); font-weight: 700; }
.zip-grid a:hover { background: var(--accent-yellow); color: var(--forest); }

/* Wizard */
.fq-shell { max-width: 720px; margin: 7rem auto 4rem; padding: 0 1.5rem; }
.fq-progress { display:flex; align-items:center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.fq-step { width: 40px; height: 40px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue',sans-serif; font-size: 1.2rem; background: #ddd; color: #888; }
.fq-step--active { background: var(--accent-yellow); color: var(--forest); }
.fq-step--done { background: var(--forest-mid); color: var(--sawdust); }
.fq-bar { flex: 0 1 60px; height: 3px; background: #ddd; }
.fq-bar--done { background: var(--forest-mid); }
.fq-card { background: #fff; border-radius: 12px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-top: 4px solid var(--accent-yellow); }
.fq-card h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--forest); letter-spacing: 2px; margin-bottom: 0.5rem; text-align:center; }
.fq-card .subtitle { text-align:center; color: var(--text-mid); margin-bottom: 2rem; }
.fq-field { margin-bottom: 1.2rem; }
.fq-field label { display:block; font-weight: 700; color: var(--forest); margin-bottom: 0.3rem; font-size: 0.92rem; }
.fq-field input, .fq-field textarea, .fq-field select { width:100%; padding: 0.8rem 1rem; border: 2px solid rgba(0,0,0,0.1); border-radius: 6px; font-size: 1rem; font-family: inherit; }
.fq-field input:focus, .fq-field textarea:focus, .fq-field select:focus { outline: none; border-color: var(--accent-yellow); }
.fq-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fq-services { display:grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin-bottom: 0.5rem; }
.fq-service { cursor:pointer; border: 2px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 1.1rem 0.9rem 1rem; text-align:center; transition: border-color 0.15s, background 0.15s, transform 0.15s; background: #fff; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; min-height: 0; }
.fq-service:hover { border-color: var(--accent-yellow); transform: translateY(-1px); }
.fq-service.active { border-color: var(--accent-yellow); background: rgba(240,165,0,0.09); box-shadow: 0 2px 10px rgba(240,165,0,0.18); }
.fq-service-icon { width: 48px; height: 48px; object-fit: contain; display: block; }
.fq-service h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--forest); letter-spacing: 1px; margin: 0; }
.fq-service-blurb { font-size: 0.78rem; line-height: 1.4; color: var(--text-mid); margin: 0; }
.fq-detail { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-left: 4px solid var(--accent-yellow); border-radius: 0 8px 8px 0; padding: 1rem 1.1rem 1.1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.fq-detail + .fq-detail { margin-top: 0.7rem; }
.fq-detail-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px dashed rgba(0,0,0,0.08); }
.fq-detail-icon { width: 28px; height: 28px; object-fit: contain; flex: none; }
.fq-detail label { font-size: 0.85rem; font-weight: 700; }
.fq-nav { display:flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.fq-nav .btn-primary { flex: 2; white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
@media (max-width: 420px) { .fq-nav .btn-primary { font-size: 0.82rem; letter-spacing: 0.5px; } }
.fq-nav .btn-back { flex: 1; background: transparent; color: var(--text-mid); border: 2px solid rgba(0,0,0,0.15); padding: 0.9rem; border-radius: 4px; cursor:pointer; font-weight: 700; }
.fq-banner { background: rgba(240,165,0,0.12); border: 1px solid var(--accent-yellow); color: var(--bark); padding: 1rem; border-radius: 6px; margin-bottom: 1.5rem; font-size: 0.92rem; }
.fq-done { text-align:center; padding: 3rem 2rem; }
.fq-done .check { font-size: 4rem; color: var(--success); margin-bottom: 1rem; }

/* Admin */
.admin-wrap { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.admin-stat { background:#fff; padding: 1.2rem; border-radius: 6px; border-left: 4px solid var(--accent-yellow); }
.admin-stat .num { font-family:'Bebas Neue',sans-serif; font-size: 2.2rem; color: var(--forest); }
.admin-stat .label { color: var(--text-mid); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-filters { background:#fff; padding: 1rem; border-radius: 6px; margin-bottom: 1rem; display:flex; gap:0.8rem; flex-wrap:wrap; }
.admin-filters input, .admin-filters select { padding: 0.5rem; border: 1px solid rgba(0,0,0,0.15); border-radius: 4px; }
.admin-table { width:100%; background:#fff; border-collapse: collapse; border-radius: 6px; overflow:hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.admin-table th { background: var(--forest); color: var(--sawdust); padding: 0.8rem; text-align:left; font-size: 0.85rem; text-transform:uppercase; letter-spacing:1px; }
.admin-table td { padding: 0.8rem; border-top: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; }
.admin-table tr:hover td { background: rgba(240,165,0,0.06); cursor:pointer; }
.admin-badge { display:inline-block; padding: 0.2rem 0.6rem; border-radius: 3px; font-size: 0.72rem; font-weight:800; text-transform:uppercase; letter-spacing:0.5px; }
.admin-badge--new { background: #e3f2fd; color: #1565c0; }
.admin-badge--partial { background: #fff3e0; color: #e65100; }
.admin-badge--contacted { background: #fff9c4; color: #827717; }
.admin-badge--closed { background: #c8e6c9; color: #1b5e20; }
.admin-badge--ooa { background: #ffcdd2; color: #b71c1c; }

@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Service card icon */
.service-card img { width: 80px; height: 80px; object-fit: contain; display: block; margin: 0 auto 1rem; }

/* Testimonial light variant (for city/ZIP pages) */
.testimonial--light { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-left: 4px solid var(--accent-yellow); color: var(--text-dark); }
.testimonial--light .testimonial-text { color: var(--text-dark); font-style: normal; }
.testimonial--light .testimonial-author { color: var(--bark); }
.testimonial--light .stars { color: var(--accent-yellow); }

/* Focus-visible for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [role="button"]:focus-visible {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* fq-row responsive collapse */
@media (max-width: 520px) { .fq-row { grid-template-columns: 1fr; } }

/* Mobile sticky bottom bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--forest); border-top: 3px solid var(--accent-yellow); padding: 0.6rem; gap: 0.5rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.mobile-cta-bar a { flex: 1; padding: 0.9rem 0.5rem; border-radius: 4px; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; text-decoration: none; }
.mobile-cta-bar .mc-call { background: var(--sawdust); color: var(--forest); }
.mobile-cta-bar .mc-quote { background: var(--accent-yellow); color: var(--forest); }
@media (max-width: 768px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 72px; } }

/* Service tile selected-state checkmark */
.fq-service.active { position: relative; }
.fq-service.active::before { content: '✓'; position: absolute; top: 6px; right: 8px; background: var(--accent-yellow); color: var(--forest); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; }

/* Error field styling */
.fq-error { color: #c62828; font-size: 0.85rem; margin-top: 0.3rem; }
.fq-field.fq-field--err input, .fq-field.fq-field--err select, .fq-field.fq-field--err textarea { border-color: #c62828; }

/* Wizard website-booking promo */
.fq-promo { display: flex; align-items: center; gap: 0.75rem; background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark, #d88e00) 100%); border-radius: 8px; padding: 0.75rem 1rem; margin: 0 0 1.2rem; box-shadow: 0 3px 10px rgba(240,165,0,0.25); }
.fq-promo-tag { flex: none; background: var(--forest); color: var(--accent-yellow); font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; padding: 0.3rem 0.7rem; border-radius: 4px; }
.fq-promo-text { color: var(--forest); font-weight: 700; font-size: 0.88rem; line-height: 1.3; }

/* Wizard trust strip */
.fq-trust-strip { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem; }
.fq-trust-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 999px; padding: 0.35rem 0.75rem; font-size: 0.78rem; font-weight: 700; color: var(--forest); letter-spacing: 0.3px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); white-space: nowrap; }
.fq-trust-badge strong { color: var(--forest); font-weight: 800; }
.fq-trust-badge small { color: var(--text-mid); font-weight: 600; font-size: 0.72rem; }
.fq-trust-ico { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-yellow); color: var(--forest); font-size: 0.7rem; line-height: 1; flex: none; }
@media (max-width: 440px) {
  .fq-trust-strip { gap: 0.35rem; }
  .fq-trust-badge { font-size: 0.72rem; padding: 0.3rem 0.6rem; }
  .fq-trust-badge small { display: none; }
}

/* Wizard loading spinner */
.fq-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: fq-spin 0.7s linear infinite; vertical-align: middle; margin-right: 0.5rem; }
@keyframes fq-spin { to { transform: rotate(360deg); } }
.fq-loading-inline { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.8rem; color: var(--text-mid); font-size: 0.9rem; }
.fq-loading-inline .fq-spinner { border-color: rgba(0,0,0,0.15); border-top-color: var(--accent-yellow); }

/* Size rubric hint */
.fq-hint { color: var(--text-mid); font-size: 0.8rem; margin-top: 0.3rem; }

/* Admin empty state */
.admin-empty { text-align: center; padding: 3rem; color: var(--text-mid); background: #fff; border-radius: 6px; }
.admin-empty h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--forest); margin-bottom: 0.5rem; }

/* Visually hidden */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Nicer content lists on inner pages */
.page-main .content-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.page-main .content-list li { position: relative; padding: 0.55rem 0 0.55rem 1.6rem; border-bottom: 1px solid rgba(0,0,0,0.06); color: var(--text-mid); line-height: 1.7; }
.page-main .content-list li:last-child { border-bottom: none; }
.page-main .content-list li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 0.55rem; height: 0.55rem; background: var(--accent-yellow); border-radius: 50%; }
.page-main ol.content-list { counter-reset: tsblist; }
.page-main ol.content-list li::before { content: counter(tsblist); counter-increment: tsblist; background: var(--forest); color: var(--accent-yellow); font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; width: 1.2rem; height: 1.2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; top: 0.75rem; left: 0; }
.page-main ol.content-list li { padding-left: 1.9rem; }
.page-main .content-list strong { color: var(--forest); font-weight: 800; }
.page-main .content-list a { color: var(--forest-mid); text-decoration: underline; }
.page-main h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--forest); letter-spacing: 0.5px; margin: 1.5rem 0 0.5rem; }

/* zip-grid sub-label */
.zip-grid a { display: flex; flex-direction: column; gap: 0.1rem; line-height: 1.2; }
.zip-grid-sub { font-size: 0.72rem; color: var(--text-mid); font-weight: 500; }
.zip-grid a:hover .zip-grid-sub { color: var(--forest); }

/* Service page hero + CTA box */
.service-page .service-hero { background: #fff; border-radius: 12px; border-top: 4px solid var(--accent-yellow); padding: 2rem 1.6rem; margin-bottom: 2rem; text-align: center; box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.service-page .service-hero-icon { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 1rem; display: block; }
.service-page .service-hero h1 { font-family: 'Bebas Neue', sans-serif; color: var(--forest); font-size: 2.8rem; letter-spacing: 1.5px; margin-bottom: 0.6rem; }
.service-page .service-hero .lead { color: var(--text-mid); margin-bottom: 1.4rem; }
.service-hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark { display: inline-block; border: 2px solid var(--forest); color: var(--forest); background: transparent; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.btn-outline-dark:hover { background: var(--forest); color: var(--sawdust); }
.service-cta-box { background: var(--forest); color: var(--sawdust); border-radius: 10px; padding: 2rem 1.5rem; text-align: center; margin-top: 2.5rem; }
.service-cta-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; margin-bottom: 0.4rem; color: var(--sawdust); }
.service-cta-box p { color: rgba(245,237,216,0.8); margin-bottom: 1.2rem; }
.service-cta-box .btn-outline-dark { border-color: var(--sawdust); color: var(--sawdust); }
.service-cta-box .btn-outline-dark:hover { background: var(--sawdust); color: var(--forest); }

/* Warranty page highlights */
.warranty-highlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
.warranty-highlight-item { background: var(--forest); color: var(--sawdust); border-top: 4px solid var(--accent-yellow); border-radius: 8px; padding: 1.2rem 0.8rem; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.warranty-highlight-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; letter-spacing: 1px; color: var(--accent-yellow); line-height: 1; }
.warranty-highlight-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 0.35rem; color: rgba(245,237,216,0.9); }
@media (max-width: 600px) { .warranty-highlight { grid-template-columns: 1fr; } }

/* About page values grid */
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1rem 0 2rem; }
.about-value { background: #fff; border-left: 4px solid var(--accent-yellow); border-radius: 0 6px 6px 0; padding: 1.1rem 1.2rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.about-value h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--forest); letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.about-value p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.6; margin: 0; }
@media (max-width: 600px) { .about-values { grid-template-columns: 1fr; } }

/* Reviews vertical carousel (2-column marquee) */
.reviews-carousel {
    position: relative;
    height: 100%;
    min-height: 520px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 640px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.reviews-column { position: relative; overflow: hidden; }
.reviews-track { display: flex; flex-direction: column; gap: 0.8rem; }
.reviews-column--up .reviews-track { animation: reviews-scroll-up 55s linear infinite; }
.reviews-column--down .reviews-track { animation: reviews-scroll-down 55s linear infinite; }
.reviews-carousel:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes reviews-scroll-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.review-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-left: 4px solid var(--accent-yellow); border-radius: 0 6px 6px 0; padding: 0.95rem 1.05rem; flex-shrink: 0; }
.review-card .stars { color: var(--accent-yellow); font-size: 0.95rem; margin-bottom: 0.3rem; letter-spacing: 2px; }
.review-card .review-text { color: rgba(245,237,216,0.9); font-style: italic; line-height: 1.55; font-size: 0.86rem; margin-bottom: 0.45rem; }
.review-card .review-author { color: var(--accent-yellow); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.5px; }
@media (prefers-reduced-motion: reduce) {
    .reviews-column--up .reviews-track,
    .reviews-column--down .reviews-track { animation: none; }
}

/* Wizard step 2 sections, tiles, detail cards */
.fq-section { margin-top: 1.4rem; }
.fq-section:first-of-type { margin-top: 0.25rem; }
.fq-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--forest); margin: 0 0 0.7rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--accent-yellow); display: inline-block; }
.fq-section--details .fq-section-title { border-bottom-color: var(--forest-mid); }
.fq-field--inline { margin-bottom: 0; min-height: 1px; }
.fq-details-list { display: flex; flex-direction: column; gap: 0.75rem; }
.fq-detail-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--forest); letter-spacing: 1px; margin: 0; }
.fq-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .fq-detail-grid { grid-template-columns: 1fr; } }
.fq-detail-field { display: flex; flex-direction: column; gap: 0.3rem; }
.fq-detail-field label { font-size: 0.8rem; font-weight: 700; color: var(--forest); letter-spacing: 0.3px; text-transform: uppercase; }
.fq-detail-field input,
.fq-detail-field select { width: 100%; padding: 0.7rem 0.9rem; font-size: 0.95rem; border: 2px solid rgba(0,0,0,0.12); border-radius: 6px; background: #fff; font-family: inherit; color: var(--text-dark); transition: border-color 0.15s, box-shadow 0.15s; }
.fq-detail-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231a3a1a' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 10px 7px;
    cursor: pointer;
}
.fq-detail-field input:focus,
.fq-detail-field select:focus { outline: none; border-color: var(--accent-yellow); box-shadow: 0 0 0 3px rgba(240,165,0,0.25); }
.fq-detail-hint { margin: 0.6rem 0 0; font-size: 0.78rem; color: var(--text-mid); font-style: italic; }
.fq-card-head { margin-bottom: 1rem; }

/* Also style base .fq-field select consistently */
.fq-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231a3a1a' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 10px 7px;
    cursor: pointer;
}
.fq-field input:focus, .fq-field textarea:focus, .fq-field select:focus { box-shadow: 0 0 0 3px rgba(240,165,0,0.25); }

/* A2P consent disclosure */
.fq-consent { background: rgba(240,165,0,0.08); border: 1px solid rgba(240,165,0,0.35); border-radius: 6px; padding: 0.9rem 1rem; font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; margin-top: 1rem; }
.fq-consent a { color: var(--forest-mid); font-weight: 700; }

/* Quote modal */
.fq-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.fq-modal.open { display: block; }
.fq-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 30, 20, 0.72); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.fq-modal-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: calc(100% - 2rem); max-width: 640px; max-height: calc(100vh - 2rem); overflow-y: auto; background: var(--cream); border-radius: 12px; padding: 2.5rem 1.5rem 2rem; box-shadow: 0 30px 80px rgba(0,0,0,0.45); border-top: 5px solid var(--accent-yellow); animation: fq-pop 0.25s ease; }
@keyframes fq-pop { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.fq-modal-close { position: absolute; top: 0.5rem; right: 0.8rem; background: transparent; border: none; font-size: 2rem; line-height: 1; color: var(--text-mid); cursor: pointer; padding: 0.3rem 0.6rem; font-weight: 300; }
.fq-modal-close:hover { color: var(--forest); }
.fq-modal .fq-card { padding: 0.5rem 0.1rem 0; box-shadow: none; border-top: none; background: transparent; border-radius: 0; }
.fq-modal .fq-card h1 { font-size: 2rem; }
.fq-modal .fq-card-head { margin-bottom: 1.2rem; }
.fq-modal .fq-section { margin-top: 1.5rem; }
body.fq-modal-open { overflow: hidden; }

/* Standalone /free-quote page continues to use .fq-shell */

