/* ================================================
   GRANITE PEAK ROOFING — styles.css
   ================================================ */

:root {
    --white:          #FFFFFF;
    --off-white:      #FAFAF9;
    --charcoal:       #1C1C1C;
    --charcoal-soft:  #2D2D2D;
    --charcoal-mid:   #444444;
    --granite:        #6B7280;
    --granite-light:  #9CA3AF;
    --granite-bg:     #F3F4F6;
    --granite-border: #E5E7EB;
    --forest:         #2D5A27;
    --forest-dark:    #1E3D1A;
    --forest-hover:   #245021;
    --forest-bg:      #EEF5EC;
    --black:          #0D0D0D;

    --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --r:         8px;
    --r-lg:      12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:    0 4px 14px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.06);
    --max:       1160px;
    --nav-h:     68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); color: var(--charcoal); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ---- Layout ---- */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: var(--r);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.18s;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1;
}

.btn-green {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}
.btn-green:hover {
    background: var(--forest-hover);
    border-color: var(--forest-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(45,90,39,0.28);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-1px);
}

.btn-lg  { font-size: 1rem;    padding: 15px 30px; }
.btn-sm  { font-size: 0.85rem; padding: 9px 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section typography ---- */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 12px;
}
.section-label-light { color: rgba(255,255,255,0.5); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--granite);
    line-height: 1.75;
}
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.6); }


/* ================================================
   HEADER
   ================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--granite-border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
#site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-mark { width: 40px; height: 30px; flex-shrink: 0; }
.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}
.logo-sub {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--granite);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-mid);
    padding: 7px 13px;
    border-radius: var(--r);
    transition: color 0.14s, background 0.14s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--granite-bg); }

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.14s;
}
.nav-phone:hover { color: var(--forest); }
.nav-phone i { color: var(--forest); font-size: 0.78rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.24s ease, opacity 0.24s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--granite-border);
    padding: 6px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 13px 4px;
    border-bottom: 1px solid var(--granite-border);
    text-decoration: none;
    transition: color 0.14s;
}
.mobile-link:hover { color: var(--forest); }
.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest);
    padding: 18px 4px 4px;
    text-decoration: none;
}


/* ================================================
   HERO
   ================================================ */
#hero {
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100svh - var(--nav-h));
    background:
        linear-gradient(
            145deg,
            #0e1509 0%,
            #141a10 30%,
            #1a1a1a 65%,
            #111111 100%
        ),
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 48px,
            rgba(255,255,255,0.012) 48px,
            rgba(255,255,255,0.012) 49px
        );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 88px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,90,39,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { max-width: 840px; position: relative; }

.hero-badge {
    display: inline-block;
    background: rgba(45,90,39,0.2);
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(45,90,39,0.35);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 30px;
}

#hero h1 {
    font-size: clamp(2.1rem, 5.8vw, 3.9rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.22);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

.d-break { display: block; }


/* ================================================
   TRUST BAR
   ================================================ */
#trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--granite-border);
    padding: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid var(--granite-border);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
    font-size: 1.3rem;
    color: var(--forest);
    flex-shrink: 0;
    width: 22px;
}

.trust-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-item strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}
.trust-item span {
    font-size: 0.78rem;
    color: var(--granite);
}


/* ================================================
   SERVICES
   ================================================ */
#services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--granite-border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
    border-color: #b3d0af;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.service-icon-wrap {
    width: 42px;
    height: 42px;
    background: var(--forest-bg);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.service-icon-wrap i {
    font-size: 1rem;
    color: var(--forest);
}

.service-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--granite);
    line-height: 1.65;
}


/* ================================================
   WHY GRANITE PEAK
   ================================================ */
#why-us {
    padding: 100px 0;
    background: var(--charcoal);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: background 0.2s, border-color 0.2s;
}
.why-card:hover {
    background: rgba(255,255,255,0.075);
    border-color: rgba(45,90,39,0.4);
}

.why-number {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(80,160,70,0.7);
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.72;
}


/* ================================================
   PROCESS
   ================================================ */
#process {
    padding: 100px 0;
    background: var(--white);
}

.process-list {
    max-width: 740px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--granite-border);
}
.process-step:last-child { border-bottom: none; }

.step-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.step-body p {
    font-size: 0.88rem;
    color: var(--granite);
    line-height: 1.72;
}


/* ================================================
   SPLIT SECTIONS (Rot + New Construction)
   ================================================ */
#rot-repair {
    padding: 100px 0;
    background: var(--granite-bg);
}

#new-construction {
    padding: 100px 0;
    background: var(--white);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split-content .section-label { display: block; }

.split-content h2 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.split-content p {
    font-size: 0.95rem;
    color: var(--granite);
    line-height: 1.78;
    margin-bottom: 14px;
}
.split-content p:last-of-type { margin-bottom: 0; }

.feature-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal-mid);
    line-height: 1.55;
}
.feature-list li i {
    color: var(--forest);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.feature-list-light li       { color: rgba(255,255,255,0.82); }
.feature-list-light li i     { color: rgba(255,255,255,0.5); }

/* Stat block */
.stat-block {
    background: var(--white);
    border: 1px solid var(--granite-border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.stat-item { padding: 22px 0; }
.stat-item:first-child { padding-top: 0; }
.stat-item:last-child  { padding-bottom: 0; }

.stat-num {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--forest);
    letter-spacing: -0.03em;
    margin-bottom: 5px;
    line-height: 1;
}
.stat-desc {
    font-size: 0.85rem;
    color: var(--granite);
    line-height: 1.55;
}

.stat-divider {
    height: 1px;
    background: var(--granite-border);
}

/* Green panel */
.green-panel {
    background: var(--forest);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}
.green-panel h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.green-panel > p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.72;
    margin-bottom: 24px;
}


/* ================================================
   SERVICE AREA
   ================================================ */
#service-area {
    padding: 100px 0;
    background: var(--off-white);
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.town-col h3 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--granite);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--granite-border);
}

.town-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.town-list li {
    font-size: 0.93rem;
    color: var(--charcoal-mid);
    padding: 2px 0;
}

.area-cta-box {
    background: var(--forest);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    text-align: center;
}
.area-cta-box i {
    font-size: 2rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
    display: block;
}
.area-cta-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.area-cta-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}
.area-cta-box .btn-green {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
}
.area-cta-box .btn-green:hover {
    background: rgba(255,255,255,0.24);
    border-color: rgba(255,255,255,0.5);
    box-shadow: none;
}


/* ================================================
   ESTIMATE FORM
   ================================================ */
#estimate {
    padding: 100px 0;
    background: var(--charcoal);
}

.form-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.estimate-form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 52px 52px 44px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal-mid);
    letter-spacing: 0.01em;
}

.req { color: var(--forest); }

.optional {
    font-weight: 400;
    color: var(--granite-light);
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--granite-border);
    border-radius: var(--r);
    padding: 11px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(45,90,39,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--granite-light); }
.form-group textarea { resize: vertical; min-height: 96px; }

.form-group input.error,
.form-group select.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }

/* File upload */
.file-drop { position: relative; }
.file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.file-drop-ui {
    border: 1.5px dashed var(--granite-border);
    border-radius: var(--r);
    padding: 28px 20px;
    text-align: center;
    background: var(--off-white);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
}
.file-drop:hover .file-drop-ui,
.file-drop.drag-over .file-drop-ui {
    border-color: var(--forest);
    background: var(--forest-bg);
}
.file-drop-ui i {
    font-size: 1.8rem;
    color: var(--granite-light);
    display: block;
    margin-bottom: 8px;
    transition: color 0.18s;
}
.file-drop:hover .file-drop-ui i,
.file-drop.drag-over .file-drop-ui i { color: var(--forest); }
.file-drop-ui span { font-size: 0.875rem; color: var(--granite); }
.file-drop-ui strong { color: var(--forest); }
.file-drop-ui small { display: block; margin-top: 6px; font-size: 0.72rem; color: var(--granite-light); }
.file-names { font-size: 0.8rem; color: var(--forest); margin-top: 6px; min-height: 0; }

/* Submit */
.form-footer { margin-top: 24px; }
.btn-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--granite);
    margin-top: 12px;
    line-height: 1.5;
}

/* Success */
.form-success {
    display: none;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 72px 52px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.form-success i { font-size: 3.5rem; color: var(--forest); display: block; margin-bottom: 20px; }
.form-success h3 { font-size: 1.7rem; font-weight: 800; color: var(--charcoal); margin-bottom: 12px; letter-spacing: -0.02em; }
.form-success p  { font-size: 1rem; color: var(--granite); line-height: 1.75; }
.form-success a  { color: var(--forest); font-weight: 600; text-decoration: underline; }


/* ================================================
   FOOTER
   ================================================ */
#footer {
    background: var(--black);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand .footer-logo span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.72;
    margin-bottom: 24px;
    max-width: 290px;
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.14s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact a i { color: rgba(80,150,70,0.7); font-size: 0.78rem; width: 14px; }

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 0.855rem;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.14s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-towns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}
.footer-towns li { font-size: 0.815rem; color: rgba(255,255,255,0.38); }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }


/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--granite-border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars {
    color: #b45309;
    font-size: 0.95rem;
    letter-spacing: 3px;
}

.review-text {
    font-size: 0.93rem;
    color: var(--charcoal-mid);
    line-height: 1.78;
    flex: 1;
}

.review-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--granite-border);
}

.review-initials {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--forest-bg);
    border: 1px solid #b3d0af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--forest);
    letter-spacing: 0.05em;
}

.review-attr strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.review-attr span {
    font-size: 0.775rem;
    color: var(--granite);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.animate-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================
   RESPONSIVE — 1024px
   ================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .footer-brand  { grid-column: 1 / -1; }
}

/* ================================================
   RESPONSIVE — 768px
   ================================================ */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta  { display: none; }
    .hamburger { display: flex; }

    /* Trust bar: 2-col */
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--granite-border); }
    .trust-item:nth-child(odd)  { border-right: 1px solid var(--granite-border); }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Split sections: single column */
    .split-section { grid-template-columns: 1fr; gap: 40px; }

    /* Green panel on top in new construction */
    #new-construction .split-visual { order: -1; }

    /* Area grid: 2-col */
    .area-grid { grid-template-columns: 1fr 1fr; }
    .area-grid .town-col:last-child { grid-column: 1 / -1; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .estimate-form { padding: 32px 24px; }
    .form-success  { padding: 52px 28px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .section-header { margin-bottom: 48px; }
    .d-break { display: none; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ================================================
   RESPONSIVE — 480px
   ================================================ */
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr; }
    .area-grid     { grid-template-columns: 1fr; }
    .area-grid .town-col:last-child { grid-column: auto; }

    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; }
    .trust-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--granite-border); }
    .trust-item:last-child { border-bottom: none; }

    .nav-container { padding: 0 20px; }
    .container { padding: 0 20px; }

    #hero { padding: 72px 20px; }
    .hero-badge { font-size: 0.65rem; }
}
