:root {
    /* Logo palette — G & K Chimney Inspectors */
    --teal: #90C9C1;
    --teal-dark: #6bab9f;
    --teal-light: #b5ddd8;
    --peach: #F28D77;
    --peach-dark: #e06d55;
    --peach-light: #f5a894;
    --cream: #FBE8DF;
    --mint: #E6F2F1;
    --logo-gradient: linear-gradient(135deg, #F28D77 0%, #90C9C1 100%);
    --text: #1e3d38;
    --text-muted: #5a7a76;
    --text-light: #7a9a96;
    --bg-page: #E6F2F1;
    --bg-section: #FBE8DF;
    --bg-card: #ffffff;
    --bg-card-alt: #f5faf9;
    --bg-deep: #2a4f4a;
    --bg-deep-mid: #3d6b63;
    --text-inverse: #ffffff;
    /* Legacy aliases */
    --ink: var(--text);
    --ink2: var(--bg-section);
    --ink3: var(--bg-card);
    --ink4: var(--bg-card-alt);
    --smoke: var(--text-muted);
    --mist: var(--text-light);
    --white: var(--text);
    --olive: var(--teal);
    --olive-light: var(--teal-light);
    --olive-dark: var(--teal-dark);
    --beige: var(--peach);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--bg-page);
    color: var(--text);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
HEADER — Light bar (screenshot-style)
═══════════════════════════════════════════════ */
:root {
    --hero-cream: #FBE8DF;
    --hero-cream-grid: #E6F2F1;
    --hero-ink: #1e3d38;
    --hero-muted: #5a7a76;
    --hero-card: #ffffff;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 232, 223, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(144, 201, 193, 0.4);
    transition: box-shadow 0.3s, background 0.3s;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(30, 61, 56, 0.08);
    background: rgba(251, 232, 223, 0.98);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hero-ink);
}

.header-brand-sub {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--hero-muted);
    letter-spacing: 0.06em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--hero-muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.header-nav a:hover {
    color: var(--peach-dark);
    background: rgba(242, 141, 119, 0.12);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-btn {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}

.header-btn-outline {
    color: var(--hero-ink);
    background: var(--hero-card);
    border: 2px solid var(--hero-ink);
}

.header-btn-outline:hover {
    background: var(--hero-cream);
}

.header-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: var(--peach);
    border: 2px solid var(--peach-dark);
}

.header-btn-call i {
    color: #fff;
    font-size: 13px;
}

.header-btn-call:hover {
    transform: translateY(-1px);
    background: var(--peach-dark);
    box-shadow: 0 6px 20px rgba(242, 141, 119, 0.35);
}

.header-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 2px solid var(--hero-ink);
    border-radius: 4px;
    background: var(--hero-card);
    cursor: pointer;
}

.header-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--hero-ink);
    transition: transform 0.25s, opacity 0.25s;
}

.site-header.menu-open .header-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .header-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .header-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-mobile-panel {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--cream);
    border-bottom: 1px solid rgba(144, 201, 193, 0.35);
}

.header-mobile-panel a {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--hero-muted);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.header-mobile-panel a:hover {
    color: var(--peach);
}

.header-mobile-call {
    margin-top: 8px;
    font-weight: 600 !important;
    color: var(--hero-ink) !important;
    border: none !important;
}

.site-header.menu-open .header-mobile-panel {
    display: flex;
}

/* ═══════════════════════════════════════════════
HERO — Cream grid + browser frame (screenshot-style)
═══════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    padding: 100px 24px 64px;
    background-color: var(--hero-cream);
    background-image:
        linear-gradient(var(--hero-cream-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--hero-cream-grid) 1px, transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-shell {
    width: 100%;
    max-width: 1100px;
}

.hero-browser {
    background: var(--teal-dark);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(30, 61, 56, 0.12),
        0 0 0 1px rgba(144, 201, 193, 0.35);
}

.hero-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-deep);
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.hero-dot:nth-child(1) {
    background: var(--peach);
}

.hero-dot:nth-child(2) {
    background: var(--teal);
}

.hero-browser-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 52px 52px;
    background: var(--hero-card);
    min-height: 420px;
}

.hero-content {
    text-align: left;
}

.hero-tagline {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--hero-muted);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Crimson Pro', 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    line-height: 1.08;
    color: var(--hero-ink);
    margin-bottom: 22px;
}

.hero-title-accent {
    color: var(--peach);
    font-style: normal;
}

.hero-sub {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--hero-muted);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn-primary {
    color: #fff;
    background: var(--peach);
    border: 2px solid var(--peach-dark);
}

.hero-btn-primary i {
    color: #fff;
    font-size: 14px;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--peach-dark);
    box-shadow: 0 8px 24px rgba(242, 141, 119, 0.35);
}

.hero-btn-secondary {
    color: var(--hero-ink);
    background: var(--hero-card);
    border: 2px solid var(--hero-ink);
}

.hero-btn-secondary:hover {
    background: var(--hero-cream);
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 0;
    margin: 0;
}

.hero-trust li {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--hero-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i {
    color: var(--teal);
    font-size: 11px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    vertical-align: middle;
}

.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: var(--logo-gradient);
    padding: 10px 16px;
    border-radius: 4px;
}

@media (max-width: 960px) {

    .header-nav,
    .header-actions {
        display: none;
    }

    .header-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-browser-body {
        grid-template-columns: 1fr;
        padding: 40px 28px 36px;
        gap: 36px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row,
    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 12px 16px;
    }

    .header-brand-sub {
        display: none;
    }

    .header-logo {
        height: 44px;
    }

    #hero {
        padding: 88px 16px 40px;
    }

    .hero-browser-body {
        padding: 32px 20px 28px;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════
BENEFITS SECTION — How We Benefit You
═══════════════════════════════════════════════ */
#benefits {
    padding: 120px 48px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

#benefits::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 201, 193, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.benefits-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 80px;
}

.benefits-heading span {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1100px;
}

.benefit-item {
    background: var(--bg-card);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    box-shadow: 0 2px 12px rgba(30, 61, 56, 0.06);
}

.benefit-item:hover {
    background: var(--mint);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-gradient);
    transition: width 0.4s;
}

.benefit-item:hover::after {
    width: 100%;
    background: var(--logo-gradient);
}

.benefit-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: rgba(144, 201, 193, 0.35);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    pointer-events: none;
}

.benefit-icon-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--teal);
    border: 1px solid rgba(144, 201, 193, 0.5);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.benefit-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--teal-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.benefit-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--smoke);
}

/* ═══════════════════════════════════════════════
SERVICES — Scroll Parallax Panels
═══════════════════════════════════════════════ */
#services-parallax {
    position: relative;
}

.parallax-panel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.p-layer-bg {
    position: absolute;
    inset: -30%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.p-layer-num {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    right: -20px;
    bottom: 80px;
    pointer-events: none;
    will-change: transform;
}

.p-layer-content {
    position: relative;
    z-index: 10;
    margin-left: 10%;
    max-width: 600px;
}

.p-service-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.p-service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    color: var(--peach);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.p-service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.p-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.p-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 4px 12px;
    text-transform: uppercase;
}

.p-btn {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--logo-gradient);
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s;
}

.p-btn:hover {
    background: linear-gradient(135deg, #f5a894 0%, #b5ddd8 100%);
}

/* Panel backgrounds — logo teal & coral on deep green */
.panel-bg-1 {
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-deep-mid) 50%, #2a4f4a 100%);
}

.panel-bg-2 {
    background: radial-gradient(ellipse at center, rgba(144, 201, 193, 0.35) 0%, var(--bg-deep) 70%);
}

.panel-bg-3 {
    background: linear-gradient(225deg, var(--bg-deep-mid) 0%, var(--bg-deep) 50%, #1e3d38 100%);
}

.panel-bg-4 {
    background: radial-gradient(ellipse at 30% 50%, rgba(242, 141, 119, 0.25) 0%, var(--bg-deep) 70%);
}

.panel-bg-5 {
    background: linear-gradient(315deg, #1e3d38 0%, var(--bg-deep-mid) 50%, var(--bg-deep) 100%);
}

.panel-wipe {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--logo-gradient);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════
STATS SECTION
═══════════════════════════════════════════════ */
#stats {
    padding: 100px 48px;
    background: var(--mint);
    position: relative;
    border-top: 1px solid rgba(144, 201, 193, 0.35);
    border-bottom: 1px solid rgba(144, 201, 193, 0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    padding: 48px 32px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(144, 201, 193, 0.35);
    position: relative;
    transition: background 0.3s;
}

.stat-item:hover {
    background: var(--cream);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: var(--teal);
    line-height: 1;
    display: block;
}

.stat-suffix {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--peach);
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--smoke);
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

/* ═══════════════════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════════════════ */
#why-us {
    padding: 120px 48px;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

#why-us::after {
    content: 'WHY US';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 200px;
    color: rgba(144, 201, 193, 0.2);
    right: -30px;
    bottom: 40px;
    pointer-events: none;
    white-space: nowrap;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
}

.why-us-left {}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 28px;
}

.section-heading span {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.7;
    color: var(--smoke);
}

.why-us-reasons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reason-item {
    padding: 28px 32px;
    background: var(--bg-card);
    border-left: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
    box-shadow: 0 2px 10px rgba(30, 61, 56, 0.05);
}

.reason-item:hover {
    border-left-color: var(--peach);
    background: var(--cream);
    padding-left: 36px;
}

.reason-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.reason-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--smoke);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════
SERVICE AREAS — 30 Cities
═══════════════════════════════════════════════ */
#service-areas {
    padding: 100px 48px;
    background: var(--bg-section);
    position: relative;
}

.areas-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.areas-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    color: var(--text);
}

.areas-heading span {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.areas-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--smoke);
    max-width: 320px;
    text-align: right;
}

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

.area-item {
    background: var(--bg-card);
    padding: 20px 22px;
    border: 1px solid rgba(144, 201, 193, 0.3);
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 141, 119, 0.08), rgba(144, 201, 193, 0.12));
    opacity: 0;
    transition: opacity 0.3s;
}

.area-item:hover::before {
    opacity: 1;
}

.area-item:hover {
    border-color: var(--peach);
}

.area-city {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: var(--text);
    text-transform: uppercase;
    display: block;
}

.area-state {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--teal);
    letter-spacing: 0.2em;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
SERVICES — Split Progress Bar (Detailed)
═══════════════════════════════════════════════ */
#services-detail {
    padding: 120px 0;
    background: var(--mint);
    position: relative;
}

.services-detail-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--teal);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.services-detail-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 0.95;
    color: var(--text);
    text-align: center;
    margin-bottom: 100px;
}

.spine-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.spine-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(144, 201, 193, 0.4);
}

.spine-fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 2px;
    height: 0%;
    background: var(--logo-gradient);
    transition: height 0.1s linear;
    z-index: 2;
}

.service-row {
    display: flex;
    position: relative;
    padding: 40px 48px;
    min-height: 300px;
    align-items: center;
}

.service-row.left {
    flex-direction: row;
    justify-content: flex-start;
}

.service-row.right {
    flex-direction: row;
    justify-content: flex-end;
}

.service-block {
    width: 42%;
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid rgba(144, 201, 193, 0.35);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 4px 16px rgba(30, 61, 56, 0.06);
}

.service-block-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 80px;
    color: rgba(144, 201, 193, 0.3);
    position: absolute;
    top: 10px;
    right: 16px;
    line-height: 1;
}

.service-block-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.service-block-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-block-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-block-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--teal-dark);
    border: 1px solid rgba(144, 201, 193, 0.5);
    padding: 3px 10px;
    text-transform: uppercase;
}

.service-block-cta {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--logo-gradient);
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s;
}

.service-block-cta:hover {
    background: linear-gradient(135deg, #f5a894 0%, #b5ddd8 100%);
}

.spine-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--logo-gradient);
    box-shadow: 0 0 16px rgba(144, 201, 193, 0.6);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s;
}

.spine-node.visible {
    opacity: 1;
}

/* Connector lines — using CSS instead of SVG for simplicity */
.connector-right {
    position: absolute;
    left: 42%;
    top: 50%;
    width: calc(8% + 7px);
    height: 1px;
    border-top: 1px dashed rgba(144, 201, 193, 0.5);
    transform: translateY(-50%);
    animation: drawLine 1s ease forwards;
    transform-origin: left center;
}

.connector-left {
    position: absolute;
    right: 42%;
    top: 50%;
    width: calc(8% + 7px);
    height: 1px;
    border-top: 1px dashed rgba(144, 201, 193, 0.5);
    transform: translateY(-50%);
    animation: drawLine 1s ease forwards;
    transform-origin: right center;
}

/* ═══════════════════════════════════════════════
CONTACT US
═══════════════════════════════════════════════ */
#contact {
    padding: 120px 48px;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(242, 141, 119, 0.12), transparent 60%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.contact-info {}

.contact-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 24px;
}

.contact-heading span {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(144, 201, 193, 0.35);
    border-left: 3px solid var(--peach);
}

.contact-detail-icon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--teal-dark);
    border: 1px solid rgba(144, 201, 193, 0.5);
    padding: 4px 7px;
    flex-shrink: 0;
    margin-top: 4px;
    align-self: flex-start;
    text-transform: uppercase;
}

.contact-detail-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--peach-dark);
    font-weight: 600;
}

.contact-form-wrap {}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(144, 201, 193, 0.35);
    padding: 44px;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--teal);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--mint);
    border: 1px solid rgba(144, 201, 193, 0.4);
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    padding: 14px 18px;
    margin-bottom: 24px;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 2px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--teal);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-select option {
    background: var(--bg-card);
}

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

.form-submit {
    width: 100%;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--logo-gradient);
    border: none;
    padding: 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
    margin-top: 8px;
}

.form-submit:hover {
    background: linear-gradient(135deg, #f5a894 0%, #b5ddd8 100%);
}

/* ═══════════════════════════════════════════════
FAQ
═══════════════════════════════════════════════ */
#faq {
    padding: 120px 48px;
    background: var(--cream);
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.faq-left {}

.faq-right {}

.faq-item {
    border-bottom: 1px solid rgba(144, 201, 193, 0.35);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    list-style: none;
}

.faq-question:hover {
    color: var(--peach-dark);
}

.faq-icon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 20px;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--smoke);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

/* ═══════════════════════════════════════════════
HORIZONTAL SCROLLING FOOTER
═══════════════════════════════════════════════ */
#footer {
    position: relative;
    background: var(--teal-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.footer-scroll-track-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.footer-scroll-track-wrap::-webkit-scrollbar {
    display: none;
}

.footer-scroll-track-wrap.grabbing {
    cursor: grabbing;
}

.footer-track {
    display: flex;
    align-items: center;
    height: 180px;
    padding: 0 60px;
    gap: 0;
    width: max-content;
    min-width: 100%;
}

.footer-seg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
    flex-shrink: 0;
}

.footer-seg:first-child {
    padding-left: 0;
}

.footer-logo-mark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--text-inverse);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.footer-blurb {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 220px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
}

.footer-contact-item span {
    color: var(--cream);
    display: block;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--cream);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nl-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--cream);
    text-transform: uppercase;
}

.footer-nl-input-row {
    display: flex;
    gap: 0;
}

.footer-nl-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: none;
    color: var(--text-inverse);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    padding: 10px 14px;
    outline: none;
    width: 180px;
}

.footer-nl-btn {
    background: var(--logo-gradient);
    border: none;
    color: var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
}

.footer-nl-btn:hover {
    background: linear-gradient(135deg, #f5a894 0%, #b5ddd8 100%);
}

.footer-copyright {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.footer-scroll-hint {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    pointer-events: none;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Gradient masks */
.footer-fade-left,
.footer-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 5;
}

.footer-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--teal-dark), transparent);
}

.footer-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--teal-dark), transparent);
}

/* ═══════════════════════════════════════════════
MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row {
        flex-direction: column !important;
        padding: 24px;
    }

    .service-block {
        width: 100%;
    }

    .connector-right,
    .connector-left {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    #benefits,
    #why-us,
    #service-areas,
    #contact,
    #faq,
    #services-detail {
        padding-left: 24px;
        padding-right: 24px;
    }

    .areas-sub {
        text-align: left;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}