/* A-Z Roofing & Construction — hero-matched: black, steel, warm gold, wood grain */
:root {
    --black: #0a0a0a;
    --charcoal: #121212;
    --charcoal-soft: #1a1a1a;
    --charcoal-card: #161616;
    --gold: #c9a84c;
    --gold-bright: #dbb85a;
    --gold-dark: #9a7b2e;
    --steel: #a8adb5;
    --steel-bright: #e3e7eb;
    --steel-dark: #6b7280;
    --white: #ffffff;
    --white-soft: #ececec;
    --text-dark: #111111;
    --text-muted-dark: #4a4a4a;
    --silver: #c8ccd2;
    --text-muted: #9ca3af;
    --border: rgba(201, 168, 76, 0.32);
    --border-steel: rgba(227, 231, 235, 0.22);
    --border-light: rgba(17, 17, 17, 0.1);
    --wood-grain: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.015) 0,
        rgba(255, 255, 255, 0.015) 1px,
        transparent 1px,
        transparent 28px
    );

    --font-display: 'Roboto Slab', Georgia, serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --metal-gradient: linear-gradient(135deg, var(--steel-bright), var(--steel-dark), var(--steel-bright));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--white);
    background: var(--black);
    font-size: 16px;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 5rem 0; position: relative; }
.section-dark-texture {
    background-color: var(--charcoal);
    background-image: var(--wood-grain);
}
.section-light {
    background: var(--white-soft);
    color: var(--text-dark);
}
.section-light .section-title { color: var(--text-dark); }
.section-light .title-underline { background: var(--gold); }
.section-light a:not(.btn):not(.service-link) { color: var(--gold-dark); }
.section-light a:not(.btn):not(.service-link):hover { color: var(--gold); }
.section-light .btn-secondary {
    color: var(--text-dark);
    border-color: rgba(17, 17, 17, 0.28);
}
.section-light .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
a { color: var(--gold-bright); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--white); }

/* Header */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 0 var(--steel-dark);
    border-bottom: 1px solid var(--border-steel);
}
.header-content {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.65rem 0; gap: 1rem;
}
.logo {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--white); text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.6vw, 1.35rem); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.logo-title .logo-accent { color: var(--gold-bright); }
.logo-sub {
    display: block;
    font-size: 0.62rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--steel);
    font-family: var(--font-body);
}
.nav-list { display: flex; list-style: none; gap: 1.1rem; }
.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.header-cta { white-space: nowrap; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }

.mobile-menu-toggle, .mobile-menu-close {
    display: none; flex-direction: column;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.hamburger { width: 24px; height: 3px; background: var(--gold); margin: 3px 0; }
.mobile-menu-close { font-size: 2rem; color: var(--gold); line-height: 1; }

/* Hero — full client artwork with centered overlay text */
.hero--art {
    position: relative;
    padding-top: 3.75rem;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    width: 100%;
    background-color: var(--black);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.hero-bg-desktop {
    display: block;
    aspect-ratio: 16 / 9;
    min-height: 420px;
    max-height: min(88vh, 820px);
    background-image: url('hero-desktop.png');
}
.hero-bg-mobile {
    display: none;
    aspect-ratio: 9 / 16;
    min-height: 520px;
    max-height: min(90vh, 780px);
    background-image: url('hero-mobile.png');
}
.hero-scrim {
    position: absolute;
    inset: 0;
    top: 3.75rem;
    background: radial-gradient(ellipse 85% 55% at 50% 42%,
        rgba(8, 8, 8, 0.62) 0%,
        rgba(8, 8, 8, 0.28) 52%,
        transparent 78%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-wrap {
    position: absolute;
    inset: 0;
    top: 3.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    pointer-events: none;
}
.hero-content {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    pointer-events: auto;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}
.badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.38rem 0.75rem;
    border-radius: 2px;
    line-height: 1.2;
}
.badge-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--black);
}
.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(0, 0, 0, 0.35);
}
.hero-kicker {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--steel);
    margin-bottom: 0.55rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
    margin-bottom: 0.65rem;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    max-width: 420px;
    margin: 0 auto 1.15rem;
    line-height: 1.55;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

/* Trust bar */
.trust-bar {
    background: var(--black);
    color: var(--steel-bright);
    padding: 0.85rem 0;
    border-bottom: 2px solid transparent;
    border-image: var(--metal-gradient) 1;
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    text-align: center;
    justify-items: center;
}
.trust-item {
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.88rem;
    text-transform: uppercase; letter-spacing: 0.04em;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    width: 100%;
    text-align: center;
}
.trust-icon { font-weight: 800; color: var(--gold-bright); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1.6rem; border-radius: 2px;
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.92rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(180deg, var(--steel-bright), var(--steel-dark));
    color: var(--black);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
    border: 1px solid var(--steel-bright);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 231, 235, 0.25);
    color: var(--black);
}
.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid var(--border-steel);
}
.btn-secondary:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Section typography */
.section-label {
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gold-dark); margin-bottom: 0.35rem;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: var(--white); margin-bottom: 0.65rem;
    line-height: 1;
}
.section-title-left { text-align: left; }
.title-underline {
    width: 64px; height: 4px;
    background: var(--gold); margin: 0 auto 0.75rem;
}
.title-underline-left { margin-left: 0; }

/* About */
.about {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    padding-bottom: 6rem;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr minmax(0, 480px);
    gap: 3rem; align-items: center;
}
.about-photo {
    margin: 0; position: relative; overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.about-photo img {
    width: 100%; height: 320px; object-fit: cover; display: block;
    transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.92), transparent);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--gold-bright); font-size: 0.95rem;
}
.about-stats {
    list-style: none; display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem; margin-top: 1rem;
}
.about-stats li {
    text-align: center; padding: 0.75rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--steel-dark);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.about-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.1;
}
.about-stats span {
    display: block; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-muted-dark); margin-top: 0.2rem;
}
.about-copy p { color: var(--text-muted-dark); margin-bottom: 1rem; line-height: 1.8; }
.service-tags {
    list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem;
}
.service-tags li {
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-muted-dark);
}

/* Portfolio */
.portfolio { padding-top: 4rem; }
.portfolio-lead {
    max-width: 520px; margin: 0 auto;
    color: var(--text-muted-dark); line-height: 1.7;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 920px;
    margin: 0 auto;
}
.portfolio-item {
    margin: 0;
    max-width: none;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-caption {
    padding: 0.65rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted-dark);
    text-align: center;
    border-top: 2px solid transparent;
    border-image: var(--metal-gradient) 1;
}

/* Services */
.services {
    background-color: var(--charcoal);
    background-image: var(--wood-grain);
}
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.035) 0%, transparent 42%);
    pointer-events: none;
}
.services-ribbon {
    position: relative;
    display: flex; align-items: center;
    background: var(--black);
    color: var(--steel-bright);
    padding: 0.85rem 1.25rem 0.85rem 2.5rem;
    max-width: 520px;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 24px 50%);
    border: 1px solid var(--border-steel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.ribbon-notch {
    position: absolute; left: 0; top: 0; bottom: 0; width: 24px;
    background: var(--gold-dark);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.services-ribbon-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin: 0;
}
.services-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 4px; overflow: hidden;
}
.service-tile {
    padding: 0 0 1.75rem;
    background: var(--charcoal-card);
    border-right: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}
.service-tile:last-child { border-right: none; }
.service-tile:hover { background: #1f1f1f; }
.service-tile-image {
    height: 130px; overflow: hidden; margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-steel);
    border-top: 3px solid var(--steel-dark);
}
.service-tile-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.92) brightness(0.92);
}
.service-tile:hover .service-tile-image img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
}
.service-tile h3,
.service-tile p,
.service-tile .service-link { padding-left: 1.25rem; padding-right: 1.25rem; }
.service-tile h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.service-tile p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.85rem; line-height: 1.55; }
.service-link {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold-bright);
}

/* Health Check spotlight (from client messaging) */
.health-check {
    margin-top: 2rem;
    border: 1px solid var(--border-steel);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(10, 10, 10, 0.55) 50%),
        var(--charcoal-card);
    border-left: 4px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.health-check-inner {
    display: grid;
    grid-template-columns: 1.4fr minmax(0, 320px);
    gap: 2rem;
    padding: 2.25rem;
    align-items: center;
}
.health-check-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.08;
}
.health-check-copy p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}
.health-check-highlight {
    color: var(--white) !important;
    font-weight: 500;
    padding: 1rem 1.15rem;
    border-left: none;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 4px;
    line-height: 1.65;
}
.health-check-highlight strong { color: var(--gold-bright); }
.health-check-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
    padding: 0;
}
.health-check-tags li {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.45);
    color: var(--gold-bright);
    border-radius: 2px;
}
.health-check-cta {
    text-align: center;
    padding: 1.75rem 1.35rem;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid var(--border-steel);
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.health-check-cta-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.health-check-cta .btn {
    width: 100%;
    margin-bottom: 0.65rem;
}
.health-check-cta .btn:last-child { margin-bottom: 0; }

/* Informational content panels */
.info-panel {
    margin-top: 2rem;
    border: 1px solid var(--border-steel);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 120px),
        var(--charcoal-card);
    border-top: 3px solid var(--gold-dark);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}
.info-panel + .info-panel { margin-top: 1.75rem; }
.info-panel-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.info-panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 0.85rem;
    line-height: 1.08;
}
.info-panel-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 0;
}
.info-panel-lead {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
}
.info-panel-lead--emphasis {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 1rem;
    padding: 0.85rem 1.15rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    display: inline-block;
    max-width: 100%;
}
.info-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1.75rem 1.75rem;
}
.info-grid--five .info-card--wide {
    grid-column: 1 / -1;
    text-align: center;
}
.info-grid--five .info-card--wide .info-card-points {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.info-grid--five .info-card--wide .info-card-points li { text-align: left; }
.info-card {
    padding: 1.35rem 1.35rem 1.5rem;
    border: 1px solid var(--border-steel);
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.45);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.info-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--metal-gradient);
    border-radius: 4px 4px 0 0;
}
.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.info-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem; height: 2.25rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    border-radius: 50%;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}
.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.info-card > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}
.info-card-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.info-card-points li {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--silver);
    padding: 0.65rem 0.85rem;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
}
.info-card-points strong {
    display: block;
    color: var(--gold-bright);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}
.info-callout {
    margin: 0 1.75rem 1.75rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    text-align: center;
}
.info-callout-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    margin-bottom: 0.5rem;
}
.info-callout p:last-child {
    color: var(--silver);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.info-checklist--pills {
    list-style: none;
    margin: 1.5rem 1.75rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.info-checklist--pills li {
    position: relative;
    padding: 0.55rem 1rem 0.55rem 2rem;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid var(--border-steel);
    border-radius: 2px;
}
.info-checklist--pills li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-weight: 700;
}
.info-panel-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.5rem 1.75rem 2rem;
    margin-top: 0.25rem;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.06));
    border-top: 1px solid var(--border-steel);
}
.info-panel-cta p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-right: 0;
    text-align: center;
    width: 100%;
}
.info-panel-cta--stack {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}
.info-panel-cta--stack p { text-align: center; }
.info-panel-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
}

.cta-banner {
    margin-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.08), rgba(10, 10, 10, 0.35));
    border: 1px solid var(--border-steel);
    border-left: 4px solid var(--gold);
}
.cta-banner-text { display: flex; flex-direction: column; gap: 0.15rem; }
.cta-banner-text strong {
    font-family: var(--font-display);
    font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.cta-banner-text span { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ */
.faq { background: var(--white); }

/* Reviews */
.reviews { background: var(--white-soft); }
.reviews-summary {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}
.reviews-stat {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin: 0 auto;
}
.review-card {
    margin: 0;
    padding: 1.35rem 1.25rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold-dark);
    border-radius: 4px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
}
.review-card-head { margin-bottom: 0.85rem; }
.review-author {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.review-meta {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted-dark);
    line-height: 1.4;
}
.review-quote {
    margin: 0;
    padding: 0;
    border: none;
}
.review-quote p {
    color: var(--text-muted-dark);
    font-size: 0.92rem;
    line-height: 1.75;
    font-style: italic;
}
.review-quote p::before {
    content: "\201C";
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: normal;
    line-height: 0;
    margin-right: 0.15rem;
}

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px; margin-bottom: 0.65rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.faq-item summary {
    cursor: pointer; padding: 1rem 1.15rem;
    font-family: var(--font-display);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.04em; font-size: 1rem;
    list-style: none;
    color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.15rem 1rem; color: var(--text-muted-dark); font-size: 0.92rem; }

/* Contact */
.contact {
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.82) 42%, rgba(10, 10, 10, 0.55) 100%),
        url('hero-roof.jpg') center/cover no-repeat;
    pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact-wrap {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem; align-items: start;
    padding: 2rem;
    border: 1px solid var(--border-steel);
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--steel-dark);
}
.contact-info p { color: var(--silver); margin-bottom: 0.5rem; }
.contact-info .section-title { color: var(--white); }
.contact-details {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
}
.contact-details li { color: var(--silver); margin-bottom: 0.45rem; }
.contact-details a { color: var(--white); font-weight: 600; }
.contact-details a:hover { color: var(--gold-bright); }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block; margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold-bright);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.7rem 0.9rem;
    background: rgba(10, 10, 10, 0.85); color: var(--white);
    border: 1px solid var(--border-steel);
    border-radius: 2px; font-family: var(--font-body);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}
.form-submit-error {
    margin-top: 0.85rem; padding: 0.7rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(154, 123, 46, 0.35);
    color: var(--gold-bright); font-size: 0.88rem; font-weight: 600;
}

/* Footer */
.footer-banner {
    background: var(--black);
    border-top: 2px solid transparent;
    border-image: var(--metal-gradient) 1;
    padding: 1.25rem 0;
}
.footer-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.footer-banner p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-banner span { color: var(--gold-bright); }

.footer { background: var(--charcoal-soft); padding: 2.5rem 0 1.25rem; }
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 2rem; margin-bottom: 1.5rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--gold-bright); margin-bottom: 0.5rem;
}
.footer-section p { color: var(--text-muted); font-size: 0.9rem; }
.footer-contact { margin-top: 0.35rem; }
.footer-contact a { color: var(--silver); }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-section h4 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.75rem; font-size: 0.95rem;
}
.footer-links { list-style: none; }
.footer-links a { color: var(--text-muted); line-height: 2; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem; text-align: center;
    color: rgba(255, 255, 255, 0.4); font-size: 0.82rem;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .service-tile {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.scroll-reveal.stagger-children.visible .service-tile { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .service-tile:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .service-tile:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .service-tile:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .service-tile:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .portfolio-item {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.scroll-reveal.stagger-children.visible .portfolio-item { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .portfolio-item:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .info-card {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.scroll-reveal.stagger-children.visible .info-card { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .info-card:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .info-card:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .info-card:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .info-card:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .info-card:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal.stagger-children .review-card {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.scroll-reveal.stagger-children.visible .review-card { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .review-card:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .review-card:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .review-card:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .review-card:nth-child(4) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal, .scroll-reveal.visible,
    .scroll-reveal.stagger-children .service-tile,
    .scroll-reveal.stagger-children .portfolio-item,
    .scroll-reveal.stagger-children .info-card,
    .scroll-reveal.stagger-children .review-card { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 480px) {
    .portfolio-grid { gap: 1rem; }
    .portfolio-item img { height: 200px; }
}

@media (min-width: 768px) {
    .portfolio-item img { height: 240px; }
}

@media (max-width: 992px) {
    .trust-bar-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 0.65rem; justify-items: center; }
    .services-strip { grid-template-columns: repeat(2, 1fr); }
    .service-tile:nth-child(2) { border-right: none; }
    .service-tile:nth-child(odd) { border-right: 1px solid var(--border); }
    .info-grid-cards { grid-template-columns: 1fr; padding: 0 1.25rem 1.25rem; gap: 0.85rem; }
    .info-grid--five .info-card--wide { text-align: left; }
    .info-panel-header { padding: 2rem 1.25rem 1.25rem; }
    .info-callout { margin: 0 1.25rem 1.25rem; }
    .info-checklist--pills { margin: 1.25rem 1.25rem 0; }
    .info-panel-cta { padding: 1.25rem 1.25rem 1.5rem; }
    .health-check-inner { grid-template-columns: 1fr; padding: 1.5rem; }
    .header-cta { display: none; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed; top: 0; right: -100%;
        width: 82%; max-width: 300px; height: 100vh;
        background: var(--charcoal-soft);
        padding: 5rem 1.5rem 2rem; z-index: 999;
        border-left: 3px solid var(--steel-dark);
        transition: var(--transition);
    }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; gap: 1.1rem; }
    .mobile-menu-toggle, .mobile-menu-close { display: flex; }
    .mobile-menu-close { position: fixed; top: 1.2rem; right: 1.2rem; z-index: 1001; }
    .hero-bg-desktop { display: none; }
    .hero-bg-mobile { display: block; }
    .hero-scrim {
        background: radial-gradient(ellipse 90% 48% at 50% 38%,
            rgba(8, 8, 8, 0.58) 0%,
            rgba(8, 8, 8, 0.22) 50%,
            transparent 72%);
    }
    .hero-content-wrap { padding: 0.75rem 0.85rem; }
    .hero-content { max-width: 340px; }
    .hero-badges { gap: 0.3rem; margin-bottom: 0.45rem; }
    .hero-badges .badge {
        font-size: 0.54rem;
        padding: 0.26rem 0.5rem;
        letter-spacing: 0.06em;
    }
    .hero-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.35rem;
    }
    .hero-title {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        margin-bottom: 0.35rem;
    }
    .hero-subtitle {
        font-size: 0.72rem;
        line-height: 1.4;
        margin-bottom: 0.65rem;
        max-width: 280px;
    }
    .hero-buttons { gap: 0.4rem; }
    .hero-buttons .btn {
        padding: 0.48rem 0.75rem;
        font-size: 0.68rem;
    }
    .trust-bar--desktop { display: none; }
    .about-split { grid-template-columns: 1fr; }
    .about-photo img { height: 240px; }
    .about-stats { grid-template-columns: 1fr; }
    .services-strip { grid-template-columns: 1fr; }
    .service-tile { border-right: none !important; border-bottom: 1px solid var(--border); }
    .service-tile:last-child { border-bottom: none; }
    .reviews-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .contact-wrap { grid-template-columns: 1fr; padding: 1.25rem; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-banner-inner { justify-content: center; text-align: center; }
    .logo-sub { display: none; }
}
