:root {
    --white: #FEFEFE;
    --cream: #F8F6F3;
    --sand: #E8E4DE;
    --charcoal: #1A1A1A;
    --ink: #0F1511;
    --forest: #2D4A3E;
    --forest-light: #3D6A54;
    --green: #4CA832;
    --green-light: #6FBF3F;
    --gold: #C9A962;
    --gold-light: #D4BC7D;
    --sage: #8FA68A;
    --stone: #6B6B6B;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --maxw: 1320px;

    /* Design-richness tokens */
    --r-sm: 10px;
    --r: 18px;
    --r-lg: 28px;
    --shadow: 0 20px 50px rgba(45,74,62,0.12);
    --shadow-lg: 0 40px 90px rgba(20,40,30,0.22);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }

.skip-link {
    position: fixed; top: 1rem; left: 1rem; z-index: 10000;
    background: var(--forest); color: var(--white);
    padding: 0.75rem 1rem; text-decoration: none; font-size: 0.8rem; font-weight: 600;
    transform: translateY(-160%); transition: transform 0.2s var(--ease-out-quart);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Navigation (dark) ---------- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(15, 21, 17, 0.55);
    backdrop-filter: blur(14px);
    transition: transform 0.45s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo), background 0.4s var(--ease-out-expo);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav.scrolled {
    background: rgba(15, 21, 17, 0.94);
    border-bottom-color: rgba(255,255,255,0.08);
}
nav.nav-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-mark { height: 66px; flex-shrink: 0; }
.logo-mark img { height: 100%; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.82);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    position: relative; padding: 0.5rem 0; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--green-light); transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Services dropdown */
.nav-links .has-sub { position: relative; }
.nav-sub {
    position: absolute; top: calc(100% + 0.4rem); left: 50%; transform: translateX(-50%) translateY(8px);
    background: rgba(15,21,17,0.97); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1); padding: 0.6rem 0; min-width: 250px;
    list-style: none; box-shadow: 0 28px 60px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
    z-index: 1001;
}
.nav-links .has-sub:hover .nav-sub,
.nav-links .has-sub:focus-within .nav-sub { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-sub li { display: block; }
.nav-sub a {
    display: block; padding: 0.6rem 1.4rem; font-size: 0.78rem; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.78); white-space: nowrap;
}
.nav-sub a::after { display: none; }
.nav-sub a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta { display: flex; align-items: center; gap: 1.75rem; }
.nav-phone {
    font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
    text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-phone svg { width: 16px; height: 16px; }

.btn-primary {
    background: var(--forest); color: #fff;
    padding: 0.95rem 1.9rem; text-decoration: none;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo); position: relative; overflow: hidden;
    border: none; cursor: pointer; display: inline-block;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0; left: -100%;
    background: var(--green); transition: left 0.4s var(--ease-out-expo); z-index: 0;
}
.btn-primary:hover::before { left: 0; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
    background: transparent; color: #fff;
    padding: 0.95rem 1.9rem; text-decoration: none;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.45); transition: all 0.4s var(--ease-out-expo);
}
.btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.9rem;
    padding: 1.05rem 2.1rem; border: 1px solid var(--forest); color: var(--forest);
    text-decoration: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; transition: all 0.4s var(--ease-out-expo); margin-top: 2.2rem;
}
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline svg { width: 18px; transition: transform 0.3s var(--ease-out-expo); }
.btn-outline:hover svg { transform: translateX(5px); }

/* ---------- Section primitives ---------- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400; line-height: 1.12; color: var(--charcoal); letter-spacing: -0.01em;
    text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-sub { color: var(--stone); font-size: 1.05rem; margin-top: 1rem; max-width: 560px; }
.section-header { max-width: var(--maxw); margin: 0 auto 4rem; text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* Anchor jumps clear the fixed nav */
section[id], #top, #request, #service-form { scroll-margin-top: 110px; }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh; min-height: 100dvh; position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 8rem 3rem 6rem; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(130% 130% at 50% 40%, rgba(15,21,17,0.12) 0%, rgba(15,21,17,0.5) 100%),
        linear-gradient(180deg, rgba(15,21,17,0.34) 0%, rgba(15,21,17,0.26) 100%);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; max-width: 1020px; margin: 0 auto; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 400; color: #fff;
    line-height: 1.06; margin-bottom: 1.75rem; letter-spacing: -0.015em;
    text-wrap: balance;
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}
.hero-title em { font-style: italic; color: var(--green-light); }
.hero-desc {
    font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 600px;
    margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.7; text-wrap: balance;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; animation: fadeInUp 1s var(--ease-out-expo) 0.6s both; }

/* ---------- Trusted By ---------- */
.trusted { background: var(--white); padding: 3rem 0 2.6rem; border-bottom: 1px solid var(--sand); }
.trusted-label {
    text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem;
}
.trusted-sub {
    text-align: center; font-size: 0.95rem; color: var(--stone); margin: 0 auto 1.8rem; max-width: 560px;
    padding: 0 1.5rem;
}
.trusted-scroll { position: relative; overflow: hidden; }
.trusted-scroll::before, .trusted-scroll::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.trusted-scroll::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.trusted-scroll::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.trusted-track { display: flex; align-items: center; gap: 4.5rem; width: max-content; animation: marquee 70s linear infinite; }
.trusted-track img {
    height: 46px; width: auto; max-width: 230px; object-fit: contain;
    opacity: 1; transition: transform 0.35s var(--ease-out-expo);
}
.trusted-track img:hover { transform: scale(1.06); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Intro / About ---------- */
.intro { padding: 7rem 3rem; background: var(--cream); }
.intro-grid {
    max-width: var(--maxw); margin: 0 auto; display: grid;
    grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: center;
}
.intro-copy .section-title { margin-bottom: 1.2rem; }
.intro-lede { font-size: 1.15rem; color: var(--forest); font-weight: 500; margin-bottom: 1.6rem; }
.intro-copy p { color: var(--stone); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.85; }
.intro-media { position: relative; }
.intro-media img {
    width: 100%; height: 560px; object-fit: cover;
    box-shadow: 0 36px 80px rgba(45,74,62,0.18);
}

/* ---------- Services ---------- */
.services { padding: 7rem 3rem; background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: var(--maxw); margin: 0 auto;
}
.service-card { position: relative; aspect-ratio: 1/1.12; overflow: hidden; display: block; }
.service-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}
.service-card:hover .service-card-bg { transform: scale(1.07); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,21,17,0.92) 0%, rgba(15,21,17,0.35) 55%, rgba(15,21,17,0.12) 100%);
    transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(45,74,62,0.94) 0%, rgba(45,74,62,0.4) 55%, rgba(45,74,62,0.15) 100%);
}
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; color: #fff; }
.service-card-title {
    font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; margin-bottom: 0.6rem; line-height: 1.2;
}
.service-card-desc {
    font-size: 0.88rem; line-height: 1.6; opacity: 0.92; max-height: 200px;
    transform: translateY(0); transition: all 0.45s var(--ease-out-expo); overflow: hidden;
}
/* On hover-capable devices, keep the reveal-on-hover behavior */
@media (hover: hover) {
    .service-card-desc { opacity: 0; max-height: 0; transform: translateY(10px); }
    .service-card:hover .service-card-desc { opacity: 0.92; max-height: 200px; transform: translateY(0); }
}
/* Stagger the service-card reveal into a short cascade */
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Process ---------- */
.process { padding: 7rem 3rem; background: var(--cream); }
.process-grid {
    max-width: var(--maxw); margin: 0 auto; display: grid;
    grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center;
}
.process-media img { width: 100%; height: 600px; object-fit: cover; box-shadow: 0 36px 80px rgba(45,74,62,0.18); }
.process-copy .section-title { margin-bottom: 1.5rem; }
.process-copy p { color: var(--stone); margin-bottom: 1.1rem; line-height: 1.85; }
.process-intro { color: var(--charcoal); font-weight: 600; margin-top: 1.6rem; }
.process-list { list-style: none; margin-top: 1rem; display: grid; gap: 1rem; }
.process-list li { position: relative; padding-left: 2rem; color: var(--charcoal); font-size: 0.98rem; line-height: 1.55; }
.process-list li::before {
    content: ''; position: absolute; left: 0; top: 0.4rem; width: 14px; height: 14px;
    background: var(--green); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ---------- Reviews ---------- */
.reviews { padding: 7rem 0; background: var(--ink); overflow: hidden; }
.reviews-header {
    max-width: var(--maxw); margin: 0 auto 3rem; padding: 0 3rem;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
}
.reviews-header .section-title { color: #fff; }
.reviews-controls { display: flex; gap: 0.75rem; }
.rev-btn {
    width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.25); background: transparent;
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}
.rev-btn:hover { background: var(--green); border-color: var(--green); }
.rev-btn svg { width: 20px; height: 20px; }
.reviews-viewport { overflow: hidden; cursor: grab; padding: 0 3rem; touch-action: pan-y; }
.reviews-track { will-change: transform; }
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-viewport.dragging { cursor: grabbing; }
.reviews-track { display: flex; gap: 1.5rem; width: max-content; padding-bottom: 0.5rem; }
.review-card {
    width: 380px; flex-shrink: 0; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08); padding: 2.4rem; color: #fff;
    display: flex; flex-direction: column;
}
.review-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1.2rem; font-size: 1rem; }
.review-card blockquote { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1.6rem; }
.review-card figcaption {
    display: flex; align-items: center; gap: 0.85rem;
    font-family: var(--font-display); font-size: 1.05rem; color: #fff;
}
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; font-weight: 600; color: var(--gold-light); font-family: var(--font-body);
}

/* ---------- City grid ---------- */
.areas { padding: 7rem 3rem; background: var(--white); }
.areas-head { max-width: var(--maxw); margin: 0 auto 3rem; text-align: center; }
.areas-head .section-sub { margin-left: auto; margin-right: auto; }
.city-grid {
    max-width: var(--maxw); margin: 0 auto; display: grid;
    grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.city-tile {
    position: relative; aspect-ratio: 1/1; overflow: hidden; display: block;
}
.city-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out-expo); }
.city-tile::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,21,17,0.85) 0%, rgba(15,21,17,0.25) 60%, rgba(15,21,17,0.35) 100%);
    transition: background 0.4s;
}
.city-tile:hover img { transform: scale(1.08); }
.city-tile:hover::after { background: linear-gradient(to top, rgba(45,74,62,0.9) 0%, rgba(45,74,62,0.3) 70%, rgba(45,74,62,0.4) 100%); }
.city-tile span {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 0.9rem 1rem;
    color: #fff; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em;
    transition: padding-bottom 0.3s var(--ease-out-expo);
}
.city-tile:hover span, .city-tile:focus-visible span { padding-bottom: 1.25rem; }

/* ---------- Contact + Form ---------- */
.contact { padding: 7rem 3rem; background: var(--cream); }
.contact-grid {
    max-width: var(--maxw); margin: 0 auto; display: grid;
    grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-info .section-title { margin-bottom: 1.4rem; }
.contact-lede { color: var(--stone); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.4rem; }
.contact-details { list-style: none; display: grid; gap: 1.6rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-details svg { width: 24px; height: 24px; stroke: var(--green); fill: none; flex-shrink: 0; margin-top: 2px; }
.contact-details div { font-size: 1rem; color: var(--charcoal); line-height: 1.5; }
.contact-details strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.contact-details a { color: var(--charcoal); text-decoration: none; }
.contact-details a:hover { color: var(--green); }

.contact-form-wrap { background: var(--white); padding: 2.6rem; box-shadow: 0 30px 70px rgba(45,74,62,0.12); }
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--stone); text-transform: uppercase; }
.contact-form input, .contact-form textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
    padding: 0.85rem 1rem; border: 1px solid var(--sand); background: var(--cream);
    transition: border-color 0.3s, background 0.3s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-submit { margin-top: 0.4rem; justify-self: start; }
.form-status { font-size: 0.92rem; min-height: 1.2rem; }
.form-status.ok { color: var(--forest); }
.form-status.err { color: #B23B3B; }

/* ---------- Footer ---------- */
footer { background: var(--ink); padding: 4.5rem 3rem 2rem; }
.footer-grid {
    max-width: var(--maxw); margin: 0 auto; display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3.5rem;
    padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-mark { height: 72px; margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 1.8rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.85rem; }
.footer-social a {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-out-expo);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-column h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 1.3rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--green-light); }

/* ---------- Inner pages ---------- */
.page-hero {
    position: relative; min-height: 56vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 10rem 3rem 5rem; overflow: hidden; background: var(--ink);
}
.page-hero .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(15,21,17,0.7), rgba(15,21,17,0.82));
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero .eyebrow { color: var(--green-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; color: #fff; line-height: 1.1; text-wrap: balance; }
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-top: 1.4rem; line-height: 1.7; }

.section { padding: 6.5rem 3rem; }
.section.alt { background: var(--cream); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }
.prose p { color: var(--stone); line-height: 1.9; margin-bottom: 1.3rem; font-size: 1.05rem; }
.prose .section-title { margin-bottom: 1.6rem; }
.lead { font-size: 1.2rem; color: var(--forest); font-weight: 500; margin-bottom: 1.6rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; box-shadow: 0 30px 70px rgba(45,74,62,0.16); }

.cred-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 2rem; }
.cred-list li { position: relative; padding-left: 2rem; color: var(--charcoal); line-height: 1.6; }
.cred-list li::before { content: ''; position: absolute; left: 0; top: 0.45rem; width: 13px; height: 13px; background: var(--green); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.badge { border: 1px solid var(--sand); padding: 0.5rem 1.1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); background: #fff; }

/* Service blocks */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-media img { width: 100%; height: 440px; object-fit: cover; box-shadow: 0 30px 70px rgba(45,74,62,0.16); }
.svc-copy h3, .svc-copy h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 1rem; }
.svc-copy p { color: var(--stone); line-height: 1.85; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.5rem 2.5rem 1.5rem 0; font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); position: relative; }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: '–'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo); }
.faq-a p { color: var(--stone); line-height: 1.8; padding: 0 0 1.5rem; }

/* Gallery grid */
.gal-grid { columns: 3; column-gap: 1rem; max-width: var(--maxw); margin: 0 auto; }
.gal-grid img, .gal-grid video { width: 100%; height: auto; margin-bottom: 1rem; break-inside: avoid; box-shadow: 0 18px 44px rgba(45,74,62,0.14); border-radius: var(--r); display: block; background: var(--sand); }
/* Smooth fade-in on load (set up by JS) so images ease in instead of popping */
.gal-grid.fade-on-load img, .gal-grid.fade-on-load video { opacity: 0; transition: opacity 0.7s var(--ease-out-quart); }
.gal-grid.fade-on-load img.loaded, .gal-grid.fade-on-load video.loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .gal-grid.fade-on-load img, .gal-grid.fade-on-load video { opacity: 1; transition: none; } }
@media (max-width: 900px){ .gal-grid { columns: 2; } .split, .svc-block { grid-template-columns: 1fr; gap: 2.5rem; } .svc-block:nth-child(even) .svc-media { order: 0; } .split img, .svc-media img { height: 320px; } }
@media (max-width: 560px){ .gal-grid { columns: 1; } }

/* Map */
.map-embed { width: 100%; height: 420px; border: 0; }

/* Blog */
.blog-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--sand); text-decoration: none; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(45,74,62,0.14); }
.blog-card-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out-expo); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem 1.6rem 1.8rem; }
.blog-meta { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 0.7rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; line-height: 1.25; color: var(--charcoal); margin-bottom: 0.7rem; }
.blog-card p { font-size: 0.92rem; line-height: 1.65; color: var(--stone); }
.article { max-width: 760px; margin: 0 auto; }
.article .blog-meta { text-align: left; }
.article h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 1.5rem; text-wrap: balance; }
.article h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--forest); margin: 2.4rem 0 1rem; }
.article p { color: var(--stone); line-height: 1.9; margin-bottom: 1.3rem; font-size: 1.05rem; }
.article img.article-hero { width: 100%; height: 420px; object-fit: cover; margin-bottom: 2.5rem; box-shadow: 0 30px 70px rgba(45,74,62,0.16); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Service cards: Learn More + link ---------- */
a.service-card { text-decoration: none; color: inherit; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.8rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green-light);
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out-expo); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ---------- Scrolling work gallery ---------- */
.work-strip { background: var(--ink); overflow: hidden; }
.work-scroll { position: relative; overflow: hidden; }
.work-track { display: flex; gap: 0; width: max-content; animation: marquee 60s linear infinite; }
.work-track img { height: 360px; width: auto; object-fit: cover; display: block; }

/* ---------- Green CTA strip ---------- */
.cta-strip { background: var(--forest); padding: 5.5rem 3rem; text-align: center; }
.cta-strip .cta-inner { max-width: 780px; margin: 0 auto; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; color: #fff; margin-bottom: 1.1rem; line-height: 1.15; text-wrap: balance; }
.cta-strip p { color: rgba(255,255,255,0.88); font-size: 1.12rem; line-height: 1.75; margin: 0 auto 2.2rem; max-width: 620px; text-wrap: balance; }
.cta-strip .btn-primary { background: #fff; }
.cta-strip .btn-primary span { color: var(--forest); }
.cta-strip .btn-primary::before { background: var(--green-light); }

/* ---------- Rotating intro image ---------- */
.intro-media { position: relative; height: 560px; }
.intro-media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.1s var(--ease-out-expo);
}
.intro-media img.is-active { opacity: 1; }
.intro-media.has-rotator { box-shadow: 0 36px 80px rgba(45,74,62,0.18); }

/* ---------- Home FAQ ---------- */
.faq-section { padding: 7rem 3rem; background: var(--cream); }

/* ---------- Animations ---------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.9s var(--ease-out-expo); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- Mobile menu button ---------- */
.mobile-menu-btn { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-width: 44px; min-height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { width: 25px; height: 2px; background: #fff; transition: all 0.3s; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }
nav a:focus-visible, nav button:focus-visible, footer a:focus-visible, footer button:focus-visible,
.reviews a:focus-visible, .reviews button:focus-visible, .city-tile:focus-visible { outline-color: var(--green-light); }

/* ============ DESIGN UPGRADE: rounding, depth, motion ============ */
/* Rounded, premium imagery + cards */
.intro-media, .process-media img, .split img, .svc-media img,
.contact-form-wrap, .gal-grid img, .blog-card, .blog-card-media,
.map-embed, .article img.article-hero { border-radius: var(--r); overflow: hidden; }
.service-card { border-radius: var(--r-lg); }
.review-card { border-radius: var(--r); }
.city-tile { border-radius: var(--r-sm); }
.nav-sub { border-radius: var(--r-sm); }
.btn-secondary, .btn-outline { border-radius: 4px; }

/* Deeper, softer shadows */
.process-media img, .split img, .svc-media img, .contact-form-wrap,
.intro-media.has-rotator { box-shadow: var(--shadow-lg); }

/* Card hover lift */
.service-card { transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s var(--ease-out-expo); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card:hover { box-shadow: var(--shadow-lg); }

/* Ken Burns slow zoom on feature/service images */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .svc-media img, .process-media img, .split img { transition: transform 1.3s var(--ease-out-expo); }
    .svc-media:hover img, .process-media:hover img, .split:hover img { transform: scale(1.045); }
}

/* Richer scroll reveals: deeper travel + image scale-in, with easing */
.reveal { opacity: 0; transform: translateY(64px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
.reveal.active { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; border-radius: var(--r); }
.reveal-img img { transform: scale(1.12); transition: transform 1.5s var(--ease-out-expo), opacity 1s var(--ease-out-expo); opacity: 0.6; }
.reveal-img.active img { transform: scale(1); opacity: 1; }

/* Scrolling work gallery -> floating rounded photo cards on dark */
.work-strip { padding: 2.4rem 0; }
.work-track { gap: 0; animation-duration: 36s; }
.work-track img { border-radius: var(--r); box-shadow: 0 24px 50px rgba(0,0,0,0.35); margin-right: 1.4rem; }

/* Reveal: elements visible on initial load show instantly (no animation);
   only content below the fold animates in on scroll */
.reveal.reveal-instant, .reveal-img.reveal-instant { transition: none; }
.reveal-img.reveal-instant img { transition: none; }

/* Section eyebrow accent */
.eyebrow-accent { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { aspect-ratio: 4/3.4; }
    .city-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    nav, nav.scrolled { padding: 0.85rem 1.5rem; }
    .nav-links {
        position: fixed; top: 92px; left: 1.5rem; right: 1.5rem; flex-direction: column; gap: 0;
        padding: 1rem 1.5rem; background: rgba(15,21,17,0.98); box-shadow: 0 28px 70px rgba(0,0,0,0.4);
        opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
        transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }
    .nav-links a { display: block; padding: 0.9rem 0; }
    nav.menu-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    .nav-cta { margin-left: auto; gap: 0.9rem; }
    .nav-phone { display: none; }
    /* Mobile header: center the logo, drop the Reach Out button */
    nav .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
    .nav-cta .btn-primary { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero { padding: 7rem 1.5rem 5rem; }
    .intro, .services, .process, .areas, .contact { padding: 5rem 1.5rem; }
    .intro-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .intro-media { order: -1; height: 420px; }
    .process-media { order: -1; }
    .process-media img { height: 420px; }
    .reviews-header { padding: 0 1.5rem; }
    .reviews-viewport { padding: 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .work-track img { height: 260px; }
    .cta-strip { padding: 4rem 1.5rem; }
    .faq-section { padding: 5rem 1.5rem; }
    /* Mobile: services dropdown shows inline inside the open menu */
    .nav-links .has-sub { width: 100%; }
    .nav-sub,
    .nav-links .has-sub:hover .nav-sub,
    .nav-links .has-sub:focus-within .nav-sub {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        left: auto; background: none; border: none; box-shadow: none; padding: 0 0 0.4rem 0.8rem; min-width: 0;
    }
    .nav-sub a { padding: 0.6rem 0; font-size: 0.74rem; color: rgba(255,255,255,0.6); }
}
/* Mobile-only line break in the hero headline (avoids single-word lines);
   hidden on desktop so the headline keeps its two-line layout */
@media (min-width: 681px) { .hero-title .m-br { display: none; } }

/* Mobile: center section headers, copy, and CTAs (sections read as centered) */
@media (max-width: 768px) {
    .intro-copy, .process-copy, .contact-info, .split .prose, .prose,
    .areas-head, .section-header, .faq-section .prose, .cta-strip .cta-inner { text-align: center; }
    .section-sub, .intro-lede, .contact-lede, .lead, .cta-strip p { margin-left: auto; margin-right: auto; }
    /* inline-flex/inline-block CTAs + eyebrows center via the parent's text-align */
    /* keep structured lists left-aligned internally but centered as a block */
    .process-list, .contact-details, .cred-list { text-align: left; width: -moz-fit-content; width: fit-content; margin-left: auto; margin-right: auto; }
    .faq { text-align: left; }
}

@media (max-width: 680px) {
    .hero { padding-left: 1rem; padding-right: 1rem; }
    .hero-title { font-size: 2.6rem; line-height: 1.04; }
    .hero-title em { font-size: 0.74em; }   /* green accent fits one line under the bigger statement */
    /* Let headings flow as one balanced block on phones (no manual breaks -> no orphan words) */
    .section-title { font-size: 1.95rem; }
    .section-title br { display: none; }
    .page-hero { padding: 8rem 1.25rem 4rem; }
    .page-hero h1 { font-size: 1.95rem; }
    .page-hero h1 br { display: none; }
    .page-hero p { font-size: 1.05rem; }
    .trusted-track { animation-duration: 48s; gap: 3rem; }
    .work-track { animation-duration: 22s; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: 16/10; }
    /* Always show service descriptions on small screens (regardless of hover capability) */
    .service-card-desc, .service-card:hover .service-card-desc { opacity: 0.92; max-height: 200px; transform: none; }
    .city-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
    .city-tile span { font-size: 0.78rem; padding: 0.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .review-card { width: 82vw; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .intro-badge { left: 1rem; right: 1rem; bottom: -1rem; }
}
@media (max-width: 420px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .city-tile span { font-size: 0.72rem; padding: 0.5rem 0.6rem; line-height: 1.25; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .trusted-track { animation: none; }
}
