/* ===== VARIABLES ===== */
:root {
    --green-900: #0B3D2E;
    --green-800: #0E4D38;
    --green-700: #136B4B;
    --green-600: #1A8A5F;
    --green-500: #22A96F;
    --green-400: #4CC48E;
    --green-300: #7DD9AE;
    --green-200: #B3EAD0;
    --green-100: #E6F7EF;
    --green-50: #F2FBF7;

    --gold-500: #C9A96E;
    --gold-400: #D4BA87;
    --gold-300: #E0CBA0;

    --neutral-950: #0A0A0A;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #A3A3A3;
    --neutral-300: #D4D4D4;
    --neutral-200: #E5E5E5;
    --neutral-100: #F5F5F5;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;

    --font-display: 'Noto Serif Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 12px;
}

.section-label--light {
    color: var(--green-300);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--green-700);
}

.section-subtitle {
    font-size: 17px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-700);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--green-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav--scrolled {
    background: rgba(11, 61, 46, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav__logo-img {
    height: 32px;
    width: auto;
}

.nav__links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.nav__links a:hover { color: var(--white); }

.nav__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.nav__phone:hover { color: var(--white); }

.nav__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.nav__cta:hover {
    background: rgba(255,255,255,0.25);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-900);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
}
.mobile-menu__phone {
    font-size: 18px;
    color: var(--green-300);
    margin-top: 16px;
}
.mobile-menu__cta {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--green-700);
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 40px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/2021-09-30.webp') center/cover no-repeat;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.85) 0%, rgba(10, 46, 34, 0.8) 50%, rgba(6, 26, 20, 0.9) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__title em {
    font-style: italic;
    color: var(--green-300);
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: auto;
    padding-top: 60px;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number,
.hero__stat-plus,
.hero__stat-decimal {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
}

.hero__stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--neutral-50);
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card__image {
    position: absolute;
    inset: 0;
}

.service-card__image-bg {
    width: 100%;
    height: 100%;
}

.service-card__image-bg--stone {
    background: url('assets/images/sulivanshutterandstone_043.webp') center/cover no-repeat;
}
.service-card__image-bg--shutters {
    background: url('assets/images/sulivanshutterandstone_021.webp') center/cover no-repeat;
}

.service-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.service-card__content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 40px;
    color: var(--white);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-300);
    transition: var(--transition);
}
.service-card:hover .service-card__link {
    gap: 12px;
}

/* ===== DIVISION SECTIONS (Stone & Shutters) ===== */
.division {
    padding-bottom: 100px;
}

.division__hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    overflow: hidden;
}

.division__hero-bg {
    position: absolute;
    inset: 0;
}

.division__hero-bg--stone {
    background: url('assets/images/sulivanshutterandstone_045.webp') center/cover no-repeat;
}
.division__hero-bg--shutters {
    background: url('assets/images/sulivanshutterandstone_048.webp') center/cover no-repeat;
}

.division__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.division__hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.division__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.division__title em {
    font-style: italic;
    color: var(--gold-400);
}

.division__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.division__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 80px 0 60px;
}

.feature {
    text-align: center;
    padding: 32px 20px;
}

.feature__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--green-50);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.feature__desc {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* Materials & Brands */
.division__materials {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--neutral-200);
}

.division__materials-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--neutral-800);
}

.materials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.material {
    padding: 12px 28px;
    background: var(--neutral-100);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.division__brands {
    text-align: center;
    padding: 40px 0;
}

.division__brands-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 20px;
}

.brands-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-400);
    letter-spacing: 1px;
}

/* Shutters Highlights */
.shutters-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 40px auto 0;
    border-top: 1px solid var(--neutral-200);
    padding-top: 40px;
}

.shutters-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.shutters-highlight__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutters-highlight strong {
    display: block;
    font-size: 16px;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.shutters-highlight p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--neutral-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 16px;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
}
.about__value svg { color: var(--green-600); flex-shrink: 0; }

.about__visual {
    position: relative;
}

.about__image-stack {
    position: relative;
    height: 500px;
}

.about__image {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about__image--1 {
    width: 75%;
    height: 380px;
    top: 0;
    left: 0;
    background: url('assets/images/sulivanshutterandstone_156.webp') center/cover no-repeat;
}

.about__image--2 {
    width: 65%;
    height: 300px;
    bottom: 0;
    right: 0;
    background: url('assets/images/sulivanshutterandstone_089.webp') center/cover no-repeat;
}

.about__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255,255,255,0.2);
}

.about__badge-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.about__badge-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    opacity: 0.8;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
}

.gallery__filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.gallery__filter-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-500);
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}

.gallery__filter-btn.active,
.gallery__filter-btn:hover {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery__item-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.gallery__item:hover .gallery__item-bg {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-overlay h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
}
.gallery__item-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.gallery__item.hidden {
    display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--white);
}

.testimonials .section-label { color: var(--green-400); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--green-300); }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
}
.testimonial:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.testimonial__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial__author strong {
    display: block;
    font-size: 15px;
}
.testimonial__author span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Review Carousel */
.review-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.review-carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-carousel .testimonial {
    flex-shrink: 0;
    width: calc((100vw - 48px - 48px) / 3 - 16px);
    max-width: calc((1280px - 48px) / 3 - 16px);
}
@media (max-width: 1024px) {
    .review-carousel .testimonial {
        width: calc((100vw - 48px - 24px) / 2 - 12px);
        max-width: none;
    }
}
@media (max-width: 768px) {
    .review-carousel .testimonial {
        width: calc(100vw - 48px);
    }
}

.testimonial__platform-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.review-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.review-carousel__btn:hover {
    background: rgba(255,255,255,0.2);
}

.review-carousel__dots {
    display: flex;
    gap: 8px;
}

.review-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.review-carousel__dot.active {
    background: var(--green-400);
    width: 24px;
    border-radius: 4px;
}

/* Platform Links */
.testimonials__platforms {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.platform--link {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    text-decoration: none;
}
.platform--link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.platform strong {
    font-size: 20px;
    color: var(--white);
    font-family: var(--font-display);
    display: block;
}
.platform span {
    font-size: 12px;
}
.platform__logo {
    flex-shrink: 0;
}

/* Write a Review */
.testimonials__write-review {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
}
.testimonials__write-review p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.testimonials__write-review-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .testimonials__platforms {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .testimonials__write-review-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: -20% 0;
    background: url('assets/images/sulivanshutterandstone_099.webp') center/cover no-repeat;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.45) 0%, rgba(0,0,0,0.35) 100%);
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
}

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

.contact__info .section-title {
    text-align: left;
}

.contact__text {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__detail strong {
    display: block;
    font-size: 15px;
    color: var(--neutral-900);
    margin-bottom: 2px;
}
.contact__detail p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}
.contact__detail a {
    color: var(--green-700);
    font-weight: 500;
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--neutral-900);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--neutral-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(19, 107, 75, 0.1);
}

.form-group textarea { resize: vertical; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.contact__form-note {
    text-align: center;
    font-size: 13px;
    color: var(--neutral-400);
    margin-top: 12px;
}

/* ===== SERVICE AREAS ===== */
.areas {
    padding: 60px 0;
    background: var(--neutral-100);
    text-align: center;
}

.areas__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.areas__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.areas__list span {
    padding: 8px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--neutral-600);
    border: 1px solid var(--neutral-200);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-900);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 14px;
    color: var(--neutral-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: var(--transition);
}
.footer__social a:hover {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer__col li {
    font-size: 14px;
    color: var(--neutral-400);
    padding: 4px 0;
}
.footer__col a {
    color: var(--neutral-400);
    transition: var(--transition);
}
.footer__col a:hover { color: var(--green-400); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
}
.footer__bottom p {
    font-size: 13px;
    color: var(--neutral-500);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .nav__phone { display: none; }
    .nav__cta { display: none; }
    .nav__hamburger { display: flex; }

    .mobile-menu { display: flex; }

    .services__grid { grid-template-columns: 1fr; }
    .service-card { min-height: 400px; }

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

    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__image-stack { height: 350px; }

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

    .contact__grid { grid-template-columns: 1fr; gap: 48px; }

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

@media (max-width: 768px) {
    .hero__stats { gap: 24px; }
    .hero__stat-number,
    .hero__stat-plus,
    .hero__stat-decimal { font-size: 32px; }

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

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

    .testimonials__platforms { flex-direction: column; align-items: center; gap: 24px; }

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

    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

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

@media (max-width: 480px) {
    .hero { padding: 100px 16px 32px; }
    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__stat-divider { width: 40px; height: 1px; }

    .hero__actions { flex-direction: column; align-items: center; }

    .cta-banner__actions { flex-direction: column; align-items: center; }

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

    .contact__form-wrapper { padding: 24px; }
}

/* ==========================================
   MULTI-PAGE ADDITIONS
   ========================================== */

/* Active nav link state */
.nav__links a.active {
    color: var(--white);
    position: relative;
}
.nav__links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-400);
}

/* Page Hero — for interior pages (smaller than home hero) */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
    text-align: center;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.88) 0%, rgba(10, 46, 34, 0.82) 50%, rgba(6, 26, 20, 0.92) 100%);
    z-index: 1;
}
.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 20px;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.page-hero__title em {
    font-style: italic;
    color: var(--green-300);
}
.page-hero__subtitle {
    font-size: clamp(16px, 1.7vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 36px;
}
.page-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-hero__breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
    color: var(--green-300);
}
.page-hero__breadcrumb-sep {
    opacity: 0.4;
}

/* Process / How It Works section */
.process {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.process--dark {
    background: var(--green-900);
    color: var(--white);
}
.process--dark .section-title { color: var(--white); }
.process--dark .section-label { color: var(--green-400); }
.process--dark .section-subtitle { color: rgba(255,255,255,0.6); }

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}
.process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-200), transparent);
    z-index: 0;
}
.process--dark .process__steps::before {
    background: linear-gradient(90deg, transparent, rgba(124, 217, 174, 0.3), transparent);
}

.process__step {
    position: relative;
    z-index: 1;
    padding: 28px 20px;
    text-align: center;
}

.process__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--green-700);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process--dark .process__number {
    background: var(--green-900);
    border-color: var(--green-400);
    color: var(--green-300);
    box-shadow: 0 4px 20px rgba(76, 196, 142, 0.2);
}
.process__step:hover .process__number {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(19, 107, 75, 0.2);
}

.process__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--neutral-900);
}
.process--dark .process__title { color: var(--white); }

.process__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-500);
}
.process--dark .process__desc { color: rgba(255,255,255,0.6); }

/* Benefits strip */
.benefits {
    padding: 100px 0;
    background: var(--neutral-50);
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}
.benefit {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}
.benefit:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}
.benefit__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--green-50);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.benefit__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--neutral-900);
    margin-bottom: 10px;
}
.benefit__desc {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* Split layout — image + content */
.split {
    padding: 120px 0;
}
.split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split--reverse .split__grid {
    direction: rtl;
}
.split--reverse .split__content {
    direction: ltr;
}
.split__image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}
.split__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(11, 61, 46, 0.15) 100%);
}
.split__content .section-title {
    text-align: left;
}
.split__text {
    font-size: 16px;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 18px;
}
.split__list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.split__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}
.split__list-item svg {
    flex-shrink: 0;
    color: var(--green-600);
    margin-top: 2px;
}
.split__cta {
    margin-top: 36px;
    display: inline-flex;
}

/* Instagram-style highlight callout cards */
.ig-callouts {
    padding: 100px 0;
    background: var(--white);
}
.ig-callouts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.ig-callout {
    background: linear-gradient(145deg, var(--green-50) 0%, #f9fdfb 100%);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.ig-callout::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(34, 169, 111, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.ig-callout:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(19, 107, 75, 0.08);
    border-color: var(--green-200);
}
.ig-callout__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-700);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.ig-callout__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--neutral-900);
    margin-bottom: 12px;
    line-height: 1.3;
}
.ig-callout__text {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* Page CTA strip (shorter than full CTA banner) */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 196, 142, 0.08) 0%, transparent 70%);
}
.cta-strip::before {
    top: -100px;
    left: -100px;
}
.cta-strip::after {
    bottom: -100px;
    right: -100px;
}
.cta-strip__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.cta-strip__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 14px;
}
.cta-strip__text {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}
.cta-strip__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick contact bar (homepage) */
.quick-contact {
    padding: 60px 0;
    background: var(--neutral-900);
    color: var(--white);
}
.quick-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.quick-contact__item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.quick-contact__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(76, 196, 142, 0.12);
    color: var(--green-400);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 196, 142, 0.2);
}
.quick-contact__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.quick-contact__value {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}
.quick-contact__value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.quick-contact__value a:hover {
    color: var(--green-400);
}

/* Timeline (about page) */
.timeline {
    padding: 120px 0;
    background: var(--neutral-50);
}
.timeline__list {
    max-width: 820px;
    margin: 60px auto 0;
    position: relative;
}
.timeline__list::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green-300), var(--green-600), var(--green-300));
}
.timeline__item {
    position: relative;
    padding: 0 0 48px 100px;
}
.timeline__dot {
    position: absolute;
    left: 26px;
    top: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--green-600);
    box-shadow: 0 4px 12px rgba(19, 107, 75, 0.15);
}
.timeline__year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--green-700);
    background: var(--green-50);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.timeline__heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--neutral-900);
    margin-bottom: 8px;
}
.timeline__text {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* Google Map embed */
.map-embed {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: var(--radius-xl);
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
}

/* Responsive multi-page additions */
@media (max-width: 1024px) {
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .benefits__grid { grid-template-columns: 1fr; }
    .ig-callouts__grid { grid-template-columns: 1fr; }
    .split__grid { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse .split__grid { direction: ltr; }
    .split__image { aspect-ratio: 16/10; }
    .quick-contact__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .page-hero { min-height: 50vh; padding: 120px 24px 60px; }
    .process__steps { grid-template-columns: 1fr; }
    .timeline__list::before { left: 20px; }
    .timeline__item { padding-left: 70px; }
    .timeline__dot { left: 6px; }
}
