/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --dark: #111111;
    --text: #222222;
    --muted: #666666;
    --accent: #155011;
    --accent-dark: #002200;
    --white: #FFFFFF;
    --hero-overlay: linear-gradient(to right, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.25) 100%);
    --border: rgba(0,0,0,0.08);
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
    --radius: 6px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent); color: var(--white); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: var(--dark);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-header h2 { font-size: clamp(32px, 4.5vw, 48px); }
.section-header p {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.7;
}
.section-header.align-left { text-align: left; margin-left: 0; }

/* ===== SCROLL-FADE ANIMATION ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    padding: 15px 28px;
    white-space: nowrap;
    transition: var(--transition);
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--white { background: var(--white); color: var(--dark); }
.btn--white:hover { background: var(--bg-alt); transform: translateY(-2px); }
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--block { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    height: 84px;
    transition: box-shadow 0.3s ease;
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(16px, 4.2vw, 26px);
    color: var(--dark);
    text-transform: uppercase;
}
.nav__logo-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav__logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
}
.nav__logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.nav__logo-badge span { font-weight: 700; color: var(--accent); font-size: 16px; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.nav__links > li { position: relative; }
.nav__links > li > a,
.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    font-size: 15.5px;
    font-weight: 500;
    padding: 10px 14px;
    position: relative;
}
.nav__links > li > a::after,
.nav__link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__links > li > a:hover,
.nav__link:hover { color: var(--accent); }
.nav__links > li > a:hover::after,
.nav__link:hover::after,
.nav__links > li.is-open .nav__link::after { transform: scaleX(1); }
.nav__link svg { width: 10px; height: 10px; transition: transform 0.25s ease; }
.nav__links > li.has-dropdown:hover .nav__link svg,
.nav__links > li.is-open .nav__link svg { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav__links > li.has-dropdown:hover .dropdown,
.nav__links > li.has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 4px;
}
.dropdown li a:hover { background: var(--bg-alt); color: var(--accent); }

.nav__cta { flex-shrink: 0; }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--dark); transition: var(--transition); }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: var(--white);
    z-index: 99;
    padding: 100px 28px 40px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav__mobile-backdrop.is-open { opacity: 1; visibility: visible; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.nav__mobile > ul > li > a {
    display: flex;
    justify-content: space-between;
    color: var(--dark);
    font-size: 19px;
    font-weight: 600;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
}
.nav__mobile-sub { padding-left: 14px; display: none; }
.nav__mobile-sub.is-open { display: flex; }
.nav__mobile-sub li a { color: var(--muted); font-size: 15px; font-weight: 500; padding: 10px 4px; }
.nav__mobile .btn { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 82%, 62% 82%, 38% 100%, 0 100%);
    padding-bottom: 110px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 90px 40px 60px;
}
.hero__headline {
    font-size: clamp(38px, 6vw, 80px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 22px;
}
.hero__sub {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    text-transform: none;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 34px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero__actions .btn { height: 52px; padding: 0 30px; }
.hero__phone-label { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.hero__phone-number { font-family: var(--font-body); font-weight: 700; font-size: 24px; color: var(--white); }
.hero__phone-number:hover { color: var(--accent); }

.hero__social-proof { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__avatars { display: flex; flex-shrink: 0; }
.hero__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.hero__avatars .hero__avatar:first-child { margin-left: 0; }
.hero__avatar--facebook { background: #1877F2; }
.hero__avatar--thumbtack { background: #009FD9; }
.hero__rating-value { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); }
.hero__rating-stars { color: #FBBC05; font-size: 11px; letter-spacing: 1px; }
.hero__rating-caption { font-size: 10.5px; color: rgba(255,255,255,0.6); }

/* ===== HERO INLINE STATS ===== */
.hero-stats__rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 0 0 24px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== ABOUT ===== */
.section-after-hero {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    background: #ffffff;
}
.about { background: var(--bg); padding: 40px 0 110px; }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about__media { position: relative; padding: 12px 12px 0 0; }
.about__media::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent);
    border-radius: var(--radius);
    z-index: 0;
}
.about__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
}
.about__media .ba-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    aspect-ratio: auto;
    max-height: none;
    margin-top: 0;
    border-radius: var(--radius);
}
.about__content {
    text-align: right;
    padding-top: 8px;
}
.about__content h2 { font-size: clamp(32px, 4vw, 48px); }
.about__content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.75;
    margin: 20px 0 30px;
    margin-left: auto;
}
.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.about-stat { text-align: left; }
.about-stat {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.about-stat__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 30px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat__label {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== SERVICES (alternating photo rows) ===== */
.services { background: var(--bg-alt); padding: 120px 0; }
.service-rows {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    margin: 0 auto;
}
.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row:first-child { padding-top: 0; }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-row__media { flex: 0 1 320px; min-width: 0; }
.service-row__content { flex: 1 1 auto; min-width: 0; }
.service-row__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.service-row__content h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.service-row__content p {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.service-link {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--accent);
}
.service-link:hover { color: var(--accent-dark); }

/* ===== BEFORE/AFTER SLIDER (shared, used within About) ===== */
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 640px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    margin-top: 56px;
}
.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-slider__after { z-index: 1; }
.ba-slider__before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    z-index: 3;
    transform: translateX(-50%);
}
.ba-slider__knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.ba-slider__label {
    position: absolute;
    top: 18px;
    z-index: 3;
    background: rgba(17,17,17,0.7);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 7px 16px;
    border-radius: 999px;
}
.ba-slider__label--before { left: 18px; }
.ba-slider__label--after { right: 18px; }

/* ===== WHY CHOOSE US ===== */
.why { background: var(--bg); padding: 120px 0; }
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1.5px solid transparent;
    padding: 32px 28px;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.why-card h3 { font-size: 21px; margin-bottom: 10px; }
.why-card p {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== PROJECTS GALLERY ===== */
.projects { background: var(--dark); padding: 120px 0; }
.projects .eyebrow { color: var(--accent); }
.projects h2 { color: var(--white); font-size: clamp(30px, 4.5vw, 48px); }
.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.project-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover img { transform: scale(1.06); }
.project-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.project-card:hover .project-card__overlay { transform: translateY(0); opacity: 1; }
.project-card__overlay h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}
.project-card__overlay span {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    text-transform: none;
}

/* ===== PROCESS ===== */
.process { background: var(--bg-alt); padding: 120px 0; }
.process__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 56px;
    position: relative;
}
.process-step { position: relative; text-align: center; padding: 0 8px; }
.process-step::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 1px;
    background: var(--border);
}
.process-step:last-child::after { display: none; }
.process-step__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.55;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-alt); padding: 120px 0; }
.reviews__track-wrap { overflow: hidden; }
.reviews__track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
    flex: 0 0 calc(33.333% - 19px);
    background: var(--white);
    border-radius: 16px;
    padding: 26px 26px 22px;
    position: relative;
}
.review-card__google { position: absolute; top: 24px; right: 24px; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-right: 26px; }
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-card__meta { flex: 1; min-width: 0; }
.review-card__name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    color: var(--dark);
}
.review-card__sub { font-family: var(--font-body); font-size: 13px; color: var(--muted); }
.review-card__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.review-card .stars { color: #FBBC05; font-size: 15px; letter-spacing: 2px; }
.review-text {
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: none;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card.is-expanded .review-text { -webkit-line-clamp: unset; overflow: visible; }
.review-card__more {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}
.review-card__more:hover { color: var(--dark); }
.reviews__dots { display: none; justify-content: center; gap: 8px; margin-top: 28px; }
.reviews__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: var(--transition); }
.reviews__dot.is-active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq { background: var(--bg); padding: 120px 0; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--dark); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    padding: 24px 4px;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--dark);
}
.faq-q__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 4px 22px;
}

/* ===== SERVICE AREAS ===== */
.areas { background: var(--dark); padding: 100px 0; }
.areas .eyebrow { color: var(--accent); }
.areas h2 { color: var(--white); }
.areas__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 44px;
}
.area-pill {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 999px;
    transition: var(--transition);
}
.area-pill:hover { background: var(--accent-dark); }
.areas__map {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
}
.areas__map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ===== FINAL CTA ===== */
.final-cta { background: var(--accent); padding: 110px 0; text-align: center; }
.final-cta h2 {
    color: var(--white);
    font-weight: 900;
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
}
.final-cta p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    text-transform: none;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ===== MARQUEE ===== */
.marquee { background: var(--dark); overflow: hidden; padding: 18px 0; }
.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.marquee__item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    padding: 0 28px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.15);
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 90px 0 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
.footer__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.footer__tagline {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 300px;
}
.footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer__col a, .footer__col li a {
    display: block;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__logo { flex: 1; min-width: 0; }
    .project-card__overlay { transform: translateY(0); opacity: 1; }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__media img, .about__media .ba-slider { height: 380px; }
    .about__stats { grid-template-columns: 1fr 1fr; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .projects__grid { grid-template-columns: 1fr 1fr; }
    .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 24px; }
    .service-row__media img { height: 260px; }
    .process__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
    .process-step::after { display: none; }
    .review-card { flex: 0 0 calc(50% - 14px); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 90%, 30% 100%, 0 100%);
        padding-bottom: 90px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-stat {
        flex: 1 1 40%;
        border-right: none;
        padding: 0;
    }
}

@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .nav__inner { padding: 0 20px; }
    .hero__content { padding: 90px 20px 70px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero__actions .btn { width: 100%; }
    .why__grid, .projects__grid { grid-template-columns: 1fr; }
    .service-row__media img { height: 220px; }
    .process__grid { grid-template-columns: 1fr; gap: 28px; }
    .about__stats { grid-template-columns: 1fr 1fr; }
    .review-card { flex: 0 0 100%; }
    .final-cta__actions { flex-direction: column; }
    .final-cta__actions .btn { width: 100%; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; }
}
