/* ============================================================
   Clean Cribs — main.css
   Design system: Barlow Condensed headings · Barlow body
   Palette: deep green / cream / gold
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET & ROOT
   ------------------------------------------------------------ */

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

:root {
    --green-deep:  #0d1c14;
    --green:       #1a3528;
    --green-mid:   #2d5c45;
    --cream:       #f4f0e6;
    --cream-dark:  #e8e2d0;
    --gold:        #c8b98a;
    --gold-light:  #ddd0a8;

    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;

    --radius:    2px;
    --max-width: 1200px;
    --gutter:    40px;

    --transition: 0.22s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: var(--cream);
    background: var(--green-deep);
    overflow-x: hidden;
}

img, video, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
}

/* ------------------------------------------------------------
   2. UTILITY
   ------------------------------------------------------------ */

/* Image placeholders — used wherever real photography is pending */
.img-placeholder {
    width: 100%;
    background: var(--green);
    border-radius: 3px;
    position: relative;
}
.img-placeholder--hero {
    min-height: 580px;
    background: linear-gradient(160deg, #254d38 0%, #1a3528 100%);
}
.img-placeholder--content {
    min-height: 320px;
    background: var(--green);
}
.img-placeholder--blog {
    min-height: 200px;
    background: var(--green);
}

.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Gold divider — place between every section */
.section-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold-light) 50%,
        var(--gold) 80%,
        transparent 100%
    );
    border: none;
}

/* Eyebrow label */
.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--green-deep);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--green-deep);
}

.btn-cream {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
}

.btn-cream:hover {
    background: var(--cream-dark);
    border-color: var(--cream-dark);
}

/* Heading base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(44px, 5vw, 68px);
}

h3 {
    font-size: 26px;
}

p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
}

/* Muted body text on dark backgrounds */
.text-muted {
    color: rgba(244, 240, 230, 0.5);
}

/* ------------------------------------------------------------
   3. TOPBAR
   ------------------------------------------------------------ */

.topbar {
    background: var(--green-deep);
    border-bottom: 1px solid rgba(200, 185, 138, 0.15);
    padding: 0.45rem 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(244, 240, 230, 0.6);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar__item svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex-shrink: 0;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar a {
    color: rgba(244, 240, 230, 0.6);
    transition: color var(--transition);
}

.topbar a:hover {
    color: var(--gold);
}

.topbar__phone {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--gold) !important;
}

/* ------------------------------------------------------------
   4. SITE NAV — sticky
   ------------------------------------------------------------ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--green);
    border-bottom: 1px solid rgba(200, 185, 138, 0.2);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.site-logo__img {
    height: 38px;
    width: auto;
}

.site-logo__text {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cream);
    line-height: 1;
}

.site-logo__text span {
    color: var(--gold);
}

/* Primary menu */
.primary-navigation {
    flex: 1;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.primary-navigation a {
    display: block;
    padding: 0.45rem 0.85rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(244, 240, 230, 0.8);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-page-ancestor > a {
    color: var(--gold);
    background: rgba(200, 185, 138, 0.08);
}

/* Nav dropdown */
.primary-navigation .menu-item-has-children {
    position: relative;
}

.primary-navigation .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: var(--green);
    border: 1px solid rgba(200, 185, 138, 0.2);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    flex-direction: column;
    z-index: 100;
}

.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
    display: flex;
}

.primary-navigation .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 14px;
    border-radius: 0;
}

/* Nav CTA */
.nav-cta {
    flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform var(--transition), opacity 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);
}

/* ------------------------------------------------------------
   5. HERO — split layout
   ------------------------------------------------------------ */

.hero {
    background: var(--green-deep);
    padding: 5rem 0 0;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 30% 50%, rgba(45, 92, 69, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(200, 185, 138, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__title {
    font-size: clamp(68px, 7.5vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.hero__title em {
    font-style: normal;
    color: var(--gold);
}

.hero__body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244, 240, 230, 0.65);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 13px;
    font-weight: 400;
    color: rgba(244, 240, 230, 0.5);
}

.hero__trust svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* Hero image side */
.hero__media {
    position: relative;
}

.hero__image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 50%, rgba(13, 28, 20, 0.5) 100%);
}

.hero__badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--gold);
    color: var(--green-deep);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 2;
}

.hero__badge strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

/* ------------------------------------------------------------
   6. STAT BAR — 4 columns
   ------------------------------------------------------------ */

.stat-bar {
    background: var(--green);
    padding: 3rem 0;
}

.stat-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(200, 185, 138, 0.15);
}

.stat-bar__item:last-child {
    border-right: none;
}

.stat-bar__value {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-bar__label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 240, 230, 0.5);
    margin-top: 0.35rem;
}

/* ------------------------------------------------------------
   7. SERVICES SECTION
   ------------------------------------------------------------ */

.services-section {
    background: var(--green-deep);
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: rgba(244, 240, 230, 0.55);
    max-width: 560px;
    margin-inline: auto;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Service card */
.service-card {
    background: var(--green);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card__img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.04);
}

.service-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.service-card__title {
    font-size: 26px;
    color: var(--cream);
    transition: color var(--transition);
}

.service-card:hover .service-card__title {
    color: var(--gold);
}

.service-card__excerpt {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244, 240, 230, 0.55);
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap var(--transition);
    margin-top: 0.5rem;
}

.service-card__link:hover {
    gap: 0.8rem;
}

.service-card__link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ------------------------------------------------------------
   8. WHY US — cream background
   ------------------------------------------------------------ */

.why-us {
    background: var(--cream);
    padding: 6rem 0;
    color: var(--green-deep);
}

.why-us .section-header h2 {
    color: var(--green-deep);
}

.why-us .section-header p {
    color: rgba(13, 28, 20, 0.6);
}

.why-us .eyebrow {
    color: var(--green-mid);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us__image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.why-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us__item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-us__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.why-us__item-body h3 {
    font-size: 20px;
    color: var(--green-deep);
    margin-bottom: 0.35rem;
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
}

.why-us__item-body p {
    font-size: 14px;
    color: rgba(13, 28, 20, 0.65);
    line-height: 1.75;
}

/* ------------------------------------------------------------
   9. COMMERCIAL STRIP
   ------------------------------------------------------------ */

.commercial-strip {
    background: var(--green);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.commercial-strip::before {
    content: 'COMMERCIAL';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(80px, 12vw, 160px);
    color: rgba(200, 185, 138, 0.04);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.commercial-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.commercial-strip__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commercial-strip h2 {
    color: var(--cream);
}

.commercial-strip p {
    color: rgba(244, 240, 230, 0.6);
    font-size: 15px;
}

.commercial-strip__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.commercial-strip__list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 14px;
    font-weight: 400;
    color: rgba(244, 240, 230, 0.75);
}

.commercial-strip__list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.commercial-strip__image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.commercial-strip__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------------
   10. REVIEWS
   ------------------------------------------------------------ */

.reviews-section {
    background: var(--green-deep);
    padding: 6rem 0;
}

.reviews-section .section-header h2 {
    color: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--green);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 3px solid transparent;
    transition: border-color var(--transition);
}

.review-card:hover {
    border-bottom-color: var(--gold);
}

.review-card__stars {
    display: flex;
    gap: 3px;
}

.review-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.review-card__body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244, 240, 230, 0.7);
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 185, 138, 0.12);
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-mid);
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--cream);
}

.review-card__location {
    font-size: 12px;
    color: rgba(244, 240, 230, 0.45);
    margin-top: 1px;
}

/* Google badge */
.reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: 13px;
    color: rgba(244, 240, 230, 0.45);
    letter-spacing: 0.05em;
}

.reviews-badge__score {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
}

/* ------------------------------------------------------------
   11. PROCESS STEPS
   ------------------------------------------------------------ */

.process-section {
    background: var(--green-deep);
    padding: 6rem 0;
}

.process-section .section-header h2 {
    color: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light) 30%, var(--gold-light) 70%, transparent);
    pointer-events: none;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.process-step__number {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    background: var(--green-deep);
    border: 2px solid rgba(200,185,138,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background var(--transition);
}

.process-step:hover .process-step__number {
    background: var(--gold);
    color: var(--green-deep);
}

.process-step__title {
    font-size: 20px;
    color: var(--cream);
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 900;
}

.process-step__body {
    font-size: 14px;
    font-weight: 300;
    color: rgba(244, 240, 230, 0.5);
    line-height: 1.75;
}

/* ------------------------------------------------------------
   12. AREAS — pill grid
   ------------------------------------------------------------ */

.areas-section {
    background: var(--green);
    padding: 6rem 0;
}

.areas-section .section-header h2 {
    color: var(--cream);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    background: rgba(244, 240, 230, 0.06);
    border: 1px solid rgba(200, 185, 138, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(244, 240, 230, 0.7);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.area-pill:hover {
    background: rgba(200, 185, 138, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.area-pill--active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
    font-weight: 600;
}

/* ------------------------------------------------------------
   13. CTA BANNER — with watermark text
   ------------------------------------------------------------ */

.cta-banner {
    background: var(--green-mid);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.cta-banner__watermark span {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(100px, 18vw, 220px);
    text-transform: uppercase;
    color: rgba(13, 28, 20, 0.18);
    white-space: nowrap;
    letter-spacing: -0.03em;
    line-height: 1;
    user-select: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-banner h2 {
    font-size: clamp(44px, 5vw, 68px);
    color: var(--cream);
    max-width: 760px;
}

.cta-banner p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(244, 240, 230, 0.65);
    max-width: 520px;
}

.cta-banner__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ------------------------------------------------------------
   14. FOOTER — 4 column
   ------------------------------------------------------------ */

.site-footer {
    background: var(--green);
    padding-top: 5rem;
    border-top: 1px solid rgba(200, 185, 138, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: 0.03em;
}

.footer-logo span {
    color: var(--gold);
}

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(244, 240, 230, 0.45);
    line-height: 1.6;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.footer-social__link {
    width: 36px;
    height: 36px;
    background: rgba(244, 240, 230, 0.07);
    border: 1px solid rgba(200, 185, 138, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.footer-social__link:hover {
    background: rgba(200, 185, 138, 0.12);
    border-color: var(--gold);
}

.footer-social__link svg {
    width: 16px;
    height: 16px;
    fill: rgba(244, 240, 230, 0.6);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col ul a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(244, 240, 230, 0.55);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 13px;
    font-weight: 300;
    color: rgba(244, 240, 230, 0.55);
    line-height: 1.5;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(244, 240, 230, 0.55);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(200, 185, 138, 0.1);
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(244, 240, 230, 0.35);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(244, 240, 230, 0.35);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ------------------------------------------------------------
   15. WHATSAPP FLOAT BUTTON
   ------------------------------------------------------------ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.25rem 0.75rem 0.85rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
}

.whatsapp-float__label {
    line-height: 1;
}

/* Pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.06); opacity: 0; }
    100% { transform: scale(1.06); opacity: 0; }
}

/* ------------------------------------------------------------
   16. FAQ ACCORDION
   ------------------------------------------------------------ */

/* Transition lives here so the JS-set max-height animates correctly */
.faq-answer {
    overflow: hidden;
    transition: max-height 0.38s ease, opacity 0.3s ease;
}

/* Chevron rotates when parent has .open (toggled by main.js) */
.faq-item.open .faq-question__icon {
    transform: rotate(180deg);
}

/* Nav scrolled shadow — class added by main.js initNavScroll() */
#main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

/* ------------------------------------------------------------
   17. SCROLL ANIMATION — fade up
   ------------------------------------------------------------ */

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-up-group > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up-group.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.fade-up-group.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.fade-up-group.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.fade-up-group.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.fade-up-group.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.fade-up-group.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ------------------------------------------------------------
   17. SINGLE SERVICE / LOCATION — inner page hero
   ------------------------------------------------------------ */

.page-hero {
    background: var(--green-deep);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(200, 185, 138, 0.12);
}

.page-hero h1 {
    font-size: clamp(44px, 6vw, 80px);
    color: var(--cream);
}

.page-hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 13px;
    color: rgba(244, 240, 230, 0.45);
}

.page-hero__meta a {
    color: rgba(244, 240, 230, 0.45);
    transition: color var(--transition);
}

.page-hero__meta a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: rgba(200, 185, 138, 0.3);
}

/* Content body */
.entry-content {
    padding: 4rem 0 5rem;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244, 240, 230, 0.75);
    max-width: 760px;
}

.entry-content h2, .entry-content h3 {
    color: var(--cream);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.entry-content h2 { font-size: clamp(32px, 4vw, 48px); }
.entry-content h3 { font-size: 22px; }

.entry-content p { margin-bottom: 1.25rem; }

.entry-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.entry-content ul li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 14px;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ------------------------------------------------------------
   18. RESPONSIVE — 768px
   ------------------------------------------------------------ */

@media ( max-width: 768px ) {

    :root {
        --gutter: 20px;
    }

    /* Nav */
    .topbar__left .topbar__item:not(:first-child) {
        display: none;
    }

    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green);
        border-top: 1px solid rgba(200, 185, 138, 0.15);
        padding: 1rem 0;
        z-index: 800;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-navigation a {
        padding: 0.7rem 1.25rem;
        font-size: 16px;
    }

    .primary-navigation .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.15);
        padding-left: 1rem;
    }

    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .site-header {
        position: sticky;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 3.5rem 0 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 0;
    }

    .hero__media {
        order: -1;
        margin-inline: calc(-1 * var(--gutter));
    }

    .hero__image-wrap {
        border-radius: 0;
        aspect-ratio: 3 / 2;
    }

    .hero__badge {
        bottom: 1rem;
        left: 1rem;
    }

    /* Stat bar */
    .stat-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-bar__item:nth-child(2) { border-right: none; }

    .stat-bar__item:nth-child(3),
    .stat-bar__item:nth-child(4) {
        border-top: 1px solid rgba(200, 185, 138, 0.15);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Why us */
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-us__image {
        aspect-ratio: 16 / 9;
        order: -1;
    }

    /* Commercial */
    .commercial-strip .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Process */
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .process-steps::before { display: none; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col__brand {
        grid-column: 1 / -1;
    }

    /* WhatsApp */
    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float {
        padding: 0.8rem;
        border-radius: 50%;
    }
}

/* ------------------------------------------------------------
   19. RESPONSIVE — 480px
   ------------------------------------------------------------ */

@media ( max-width: 480px ) {

    /* Hero */
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

    /* Stat bar */
    .stat-bar .container {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Areas */
    .areas-grid {
        justify-content: flex-start;
    }

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

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    /* Topbar */
    .topbar .container {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }
}
