/* ==========================================================================
   EDMONDS LANDSCAPING "ESTATE" EDITION
   Powered by UI/UX Pro Max | Design System: Forest & Champagne
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (ROOT VARIABLES)
   -------------------------------------------------------------------------- */
:root {
    /* --- PALETTE: MIDNIGHT & BRONZE (2026 Estate Modern) --- */
    --color-midnight: #0F1F1C;
    --color-stone: #EAEAEA;
    --color-bronze: #9C826B;
    --color-bronze-light: #C4B09B;
    
    /* Missing Extrapolated Colors */
    --color-forest-deep: #102A24;
    --color-forest-dark: #0B1B17;
    --color-forest-mid: #2A4B42;
    --color-gold-metallic: #C5A059;
    --color-gold-dark: #9A7B4F;
    --color-gold-light: #E6CF8B;

    --color-pure-white: #FFFFFF;
    --color-charcoal: #111111;
    --color-subtle: #666666;

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    /* Scaled Type (Massive / Fluid) - Adjusted mobile minimums to prevent overflow */
    --fs-display: clamp(2.5rem, 8vw, 7.5rem);
    --fs-h1: clamp(2rem, 6vw, 4.5rem);
    --fs-hero-interior: clamp(1.9rem, 4.8vw, 3.85rem);
    --fs-h2: clamp(1.75rem, 5vw, 3.5rem);
    --fs-h3: clamp(1.25rem, 2.5vw, 2.5rem);
    --fs-body: 1.05rem;
    --fs-nav: 0.9rem;

    /* --- GLASSMORPHISM (Refined) --- */
    --glass-bg: rgba(15, 31, 28, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur-strength: 20px;

    /* --- SHADOWS --- */
    --shadow-lift: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);

    /* --- LAYOUT --- */
    --container-max: 1500px;
    --gutter: 1.5rem; /* Mobile default */
    --section-space: 8rem;
    --section-space-compact: 3rem;

    /* --- ANIMATION --- */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-lux: cubic-bezier(0.85, 0, 0.15, 1);
    --d-fast: 0.4s;
}

@media (min-width: 1024px) {
    :root {
        --gutter: 4rem; /* Restore massive desktop gutters */
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--color-midnight);
    color: var(--color-stone);
    font-family: var(--font-body);
    line-height: 1.8;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-pure-white);
    margin-bottom: 2rem;
}

/* Luxury Standardized Section Headings */
h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400; /* Restrained, editorial weight */
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-midnight); /* Default high-contrast ink */
    margin-bottom: 2.5rem;
}

/* Contextual Contrast Inheritance */
.bg-forest h2,
.bg-midnight h2 {
    color: var(--color-pure-white);
}

.bg-alt h2,
.bg-white h2 {
    color: var(--color-midnight);
}

h4,
h5 {
    font-family: var(--font-heading);
    color: var(--color-forest-deep);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.italic-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold-dark);
}

/* --------------------------------------------------------------------------
   3. UTILITIES & LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--section-space) 0;
    position: relative;
}

.bg-forest {
    background-color: var(--color-forest-deep);
    color: var(--color-pure-white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

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

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

/* Ensure Header Flex Alignment */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    /* Increased margin */
    flex-wrap: wrap;
    gap: 2rem;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION (Clean Architectural Line)
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    justify-content: center;
    /* Centered container alignment */

    background: transparent;
    padding: 0.2rem var(--gutter);
    /* Dynamic Responsive Padding */

    transition: all 0.4s var(--ease-out);
    display: flex;
}

.nav-container {
    width: 100%;
    max-width: var(--container-max);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SCROLLED STATE */
.navbar.scrolled {
    top: 0;
    background: var(--color-forest-deep);
    /* Dark Green */
    padding: 0 var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- LINKS: FORCE WHITE ALWAYS --- */
/* We use specific selectors + !important to override any browser default or legacy rule */
.navbar .brand,
.navbar .nav-link,
.navbar.scrolled .brand,
.navbar.scrolled .nav-link {
    color: #FFFFFF !important;
    /* Pure White Text */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
}

/* --- PREMIUM COMPONENT ARCHITECTURE: LOGO BINDINGS --- */
.nav-brand {
    border: none;
    padding: 0;
    width: 320px;
    max-width: 75vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s ease-out;
}

.navbar.scrolled .nav-brand {
    width: 215px; /* Shrinks exactly 33% when the background solidifies on scroll */
}

.nav-brand-img {
    width: 100%;
    height: auto;
    /* Optical correction offset for native raw SVG container padding */
    margin: -17% 0 -24% 0; 
    transition: all 0.4s ease-out;
}

.footer-brand {
    border: none;
    padding: 0;
    width: 380px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-brand-img {
    width: 100%;
    height: auto;
    margin: -17% 0 -24% 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-brand-img {
    opacity: 1;
}

/* Neon Green Dot */

/* --- HOVER: NEON GREEN --- */
.navbar .nav-link:hover,
.navbar .brand:hover,
.navbar.scrolled .nav-link:hover {
    color: #50FA7B !important;
    /* Neon Green */
}

/* Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #50FA7B;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(80, 250, 123, 0.4);
}

.nav-link:hover::after {
    width: 100%;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-pure-white);
    transition: all 0.3s var(--ease-out);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* DESKTOP NAV LAYOUT */
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 1023px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background-color: var(--color-midnight);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .navbar.scrolled .nav-brand {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .navbar {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-container {
        max-width: none;
        gap: 1.5rem;
    }

    .nav-brand {
        width: 420px;
        flex: 0 0 420px;
    }

    .navbar.scrolled .nav-brand {
        width: 320px;
        flex-basis: 320px;
    }

    .nav-links {
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 1.2rem;
    }

    .navbar .nav-link,
    .navbar.scrolled .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }
}



/* --------------------------------------------------------------------------
   4. BACKGROUNDS & UTILITIES
   -------------------------------------------------------------------------- */
.bg-white {
    background-color: #FFFFFF;
    color: var(--color-charcoal);
}

.bg-alt {
    background-color: #F4F4F4;
    /* Stone Grey */
    color: var(--color-charcoal);
    width: 100%;
    margin: 0;
    display: block;
}

.bg-dark {
    background-color: var(--color-midnight);
    color: #FFFFFF;
}



@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-pure-white);
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: var(--color-gold-metallic);
}

/* --------------------------------------------------------------------------
   4. HERO (Cinematic Video)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 28, 0.5);
    /* Slightly deepen the hero image so the type holds up more consistently. */
    background: linear-gradient(to bottom, rgba(15, 31, 28, 0.88), rgba(15, 31, 28, 0.42));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: var(--fs-display);
    color: var(--color-pure-white);
    margin-bottom: 1.5rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--color-bronze);
    text-transform: none;
    /* Keep italic lowercase/titlecase for contrast */
}

.hero-pretitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: var(--color-bronze);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-pure-white);
    max-width: 900px;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    header.section.bg-forest.pt-40.pb-24 {
        min-height: 28rem;
    }

    .hero-subtitle {
        max-width: 1120px;
    }
}

/* Homepage hero text tuning for longer editorial copy */
.hero-content-home {
    max-width: min(72rem, 94vw);
    margin: 0 auto;
    text-align: center;
}

.hero-pretitle-home {
    text-transform: none;
    letter-spacing: 0.05em;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1rem;
}

.hero-title-home {
    font-size: clamp(3rem, 8vw, 6.25rem);
    line-height: 0.96;
    max-width: 56rem;
    margin: 0 auto 1rem;
    text-align: left;
    text-wrap: balance;
}

.hero-title-home-first {
    color: var(--color-pure-white);
    font-style: italic;
    text-transform: lowercase;
    font-size: 0.84em;
}

.hero-title-home-accent {
    color: var(--color-bronze);
    font-style: normal;
    text-transform: uppercase;
}

.hero-subtitle-home {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.5;
    max-width: 56rem;
    margin: 0 auto 2.2rem;
    text-align: center;
    padding-left: 0;
    color: var(--color-pure-white);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    text-wrap: pretty;
}

.hero-subtitle-home-emphasis {
    font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
    font-style: italic;
}

@media (min-width: 1024px) {
    .hero-title-home {
        white-space: nowrap;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle-home-emphasis {
        white-space: nowrap;
    }
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.btn-scroll:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   5. BENTO GRID (Services)
   -------------------------------------------------------------------------- */
.section-full {
    background: var(--color-stone);
    /* Light split */
    color: var(--color-midnight);
    padding: var(--section-space) 0;
}

/* MODULAR BENTO SYSTEM */
.bento-stack {
    display: grid;
    gap: 1.5rem;
}

.bento-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: var(--color-midnight);
    transition: transform 0.4s var(--ease-out);
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s var(--ease-lux);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.bento-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.bento-card--compact .bento-card__content {
    padding: 1rem 1rem 1.25rem;
}

.bento-card__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.5rem;
    word-break: break-word;
    line-height: 1.1;
}

.bento-card__title--stacked {
    line-height: 1.02;
}

.bento-card__title--stacked span {
    display: block;
}

.bento-card__text {
    font-size: 1rem;
    color: var(--color-pure-white);
    opacity: 1;
}

.bento-card:hover .bento-card__image,
.bento-card:focus-within .bento-card__image {
    transform: scale(1.05);
}

.bento-card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.bento-card__link:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: -6px;
}

@media (min-width: 768px) {
    .bento-card__title--inline {
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .bento-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 340px;
    }

    .bento-row--wide-left .bento-card--wide {
        grid-column: 1 / span 2;
        min-height: 340px;
    }

    .bento-row--wide-left .bento-card--narrow {
        grid-column: 3;
        min-height: 340px;
    }

    .bento-row--wide-right .bento-card--narrow {
        grid-column: 1;
        min-height: 340px;
    }

    .bento-row--wide-right .bento-card--wide {
        grid-column: 2 / span 2;
        min-height: 340px;
    }

    .bento-card--wide .bento-card__title {
        white-space: nowrap;
    }

    .bento-card--narrow .bento-card__title--inline {
        white-space: nowrap;
    }
}

/* Force text containment universally while discouraging harsh breaks */
h1, h2, h3, h4, h5, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* Hover reveal effect for images */
.bento-item:hover .bento-img {
    transform: scale(1.05);
}

/* 6. UI COMPONENTS */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    background-color: var(--color-gold-metallic);
    color: var(--color-forest-deep);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all var(--d-fast);
    border: 1px solid var(--color-gold-metallic);
}

.btn:hover {
    background-color: var(--color-pure-white);
    color: var(--color-forest-deep);
    border-color: var(--color-gold-metallic);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-pure-white);
    color: var(--color-pure-white);
}

.btn-outline:hover {
    background-color: var(--color-pure-white);
    color: var(--color-forest-deep);
    border-color: var(--color-gold-metallic);
}

/* Service Card Pro */
.service-card {
    background: var(--color-pure-white);
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--d-fast) var(--ease-lux);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lift);
    border-color: var(--color-gold-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-gold-metallic);
    transition: width var(--d-fast);
}

.service-card:hover::before {
    width: 100%;
}

.testimonial-review-text {
    font-size: 0.9rem;
    line-height: 1.25;
}

.testimonial-review-author {
    margin-top: 1rem;
    text-align: right;
}

/* Article list layout - Editorial style */
.article-list {
    display: flex;
    flex-direction: column;
}

.article-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    padding: 3rem var(--gutter);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
    align-items: start;
    margin: 0 calc(-1 * var(--gutter));
}

@media (max-width: 900px) {
    .article-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-thumb-wrap {
        order: -1;
        max-width: 400px;
    }
}

.article-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.article-row:last-child {
    border-bottom: none;
}

.article-content {
    display: flex;
    flex-direction: column;
}

.article-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-bronze);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-midnight);
    margin: 0 0 1rem 0;
}

.article-excerpt {
    color: var(--color-subtle);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.article-link {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 0.75rem;
}

.article-date {
    font-size: 0.85rem;
    color: var(--color-subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-lux);
    display: block;
}

.article-row:hover .article-thumb {
    transform: scale(1.03);
}

.article-thumb-wrap {
    overflow: hidden;
    background: var(--color-stone);
    height: 100%;
    min-height: 180px;
}

/* Archive Page Styles */
.topic-filter {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--color-charcoal);
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topic-filter:hover,
.topic-filter.active {
    background-color: var(--color-forest-deep);
    color: var(--color-pure-white);
    border-color: var(--color-forest-deep);
}

/* Featured Article */
.archive-featured {
    background: var(--color-stone);
    padding: 0;
}

.archive-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .archive-featured-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.archive-featured-image {
    height: 100%;
    min-height: 300px;
}

.archive-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.archive-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-midnight);
    margin: 1rem 0;
}

.archive-featured-excerpt {
    color: var(--color-subtle);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.archive-featured-meta {
    font-size: 0.85rem;
    color: var(--color-subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.archive-card {
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.archive-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--color-stone);
}

.archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-lux);
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.05);
}

.archive-card-content {
    padding: 2rem;
}

.archive-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin: 0.75rem 0;
}

.archive-card-content p {
    color: var(--color-subtle);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.archive-card-date {
    font-size: 0.8rem;
    color: var(--color-subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Article Template Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-forest-deep);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--color-stone);
    padding: 1rem 0;
    font-size: 0.85rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--color-subtle);
}

.breadcrumb-list a {
    color: var(--color-forest-deep);
    text-decoration: none;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.breadcrumb-list a:hover {
    color: var(--color-gold-dark);
}

.breadcrumb-list a:visited {
    color: var(--color-gold-dark);
}

/* Article Header */
.article-header {
    background: var(--color-midnight);
    color: var(--color-pure-white);
    padding: 4rem 0 0;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-category {
    color: var(--color-bronze);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-decoration: none;
}

.article-date,
.article-read-time {
    color: rgba(255, 255, 255, 0.7);
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-pure-white);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 768px;
    margin-bottom: 3rem;
}

.article-hero-image {
    margin: 0 calc(-1 * var(--gutter));
    position: relative;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-caption {
    background: var(--color-forest-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem var(--gutter);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Article Content Layout */
.article-content {
    padding: 4rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 300px;
    }
}

/* Table of Contents */
.toc {
    background: var(--color-stone);
    padding: 2rem;
    margin-bottom: 3rem;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-midnight);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

@media (min-width: 600px) {
    .toc-list {
        columns: 2;
    }
}

.toc-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.toc-list a {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.toc-list a:hover {
    color: var(--color-gold-dark);
}

.toc-list a:visited {
    color: var(--color-gold-dark);
}

/* Article Sections */
.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.article-section h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-forest-deep);
    margin: 2rem 0 1rem;
}

.article-section p {
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.25rem;
}

.article-figure {
    margin: 2rem 0;
}

.article-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.article-figure figcaption {
    font-size: 0.9rem;
    color: var(--color-subtle);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Blockquote */
.article-quote {
    border-left: 3px solid var(--color-bronze);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.article-quote p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-midnight);
    margin-bottom: 0.5rem;
}

.article-quote cite {
    font-size: 0.9rem;
    color: var(--color-subtle);
    font-style: normal;
}

/* Article Lists */
.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-list li::before {
    content: '•';
    color: var(--color-bronze);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ */
.article-faq {
    background: var(--color-stone);
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    font-weight: 600;
    color: var(--color-forest-deep);
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-item summary:hover {
    color: var(--color-midnight);
}

.faq-item p {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Article Footer */
.article-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.article-tags {
    margin-bottom: 1.5rem;
}

.tag-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.article-tag {
    display: inline-block;
    background: var(--color-stone);
    padding: 0.35rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: background 0.3s ease;
}

.article-tag:hover {
    background: var(--color-bronze-light);
}

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

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    background: var(--color-forest-deep);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background: var(--color-midnight);
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-block {
    background: var(--color-stone);
    padding: 1.5rem;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.sidebar-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.sidebar-link {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.sidebar-link:hover {
    color: var(--color-gold-dark);
}

.sidebar-link:visited {
    color: var(--color-gold-dark);
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.related-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-list a {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.related-list a:hover {
    color: var(--color-gold-dark);
}

.related-list a:visited {
    color: var(--color-gold-dark);
}

.sidebar-cta {
    background: var(--color-forest-deep);
    color: white;
}

.sidebar-cta .sidebar-title {
    color: white;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-midnight);
    color: var(--color-pure-white);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.cookie-banner-description {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-description a {
    color: var(--color-bronze-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.cookie-banner-description a:hover,
.cookie-banner-description a:visited {
    color: var(--color-gold-light);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.cookie-btn-primary {
    background: var(--color-gold-metallic);
    color: var(--color-forest-deep);
}

.cookie-btn-primary:hover {
    background: var(--color-gold-light);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--color-pure-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: var(--color-pure-white);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 1rem;
    padding: 2.5rem;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-subtle);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: var(--color-midnight);
}

.cookie-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.cookie-modal-intro {
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cookie-option {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-title {
    font-weight: 600;
    color: var(--color-midnight);
}

.cookie-option-description {
    font-size: 0.9rem;
    color: var(--color-subtle);
    line-height: 1.6;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--color-stone);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

.cookie-toggle:checked {
    background: var(--color-forest-deep);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle:checked::after {
    transform: translateX(24px);
}

.cookie-toggle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
    .cookie-modal {
        padding: 1.5rem;
        margin: 0;
        max-height: 100vh;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: var(--color-forest-mid);
}

/* Project Masonry Item */
.project-item {
    position: relative;
    height: 400px;
    /* Base height */
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-lux);
}

.project-item:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 38, 33, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--d-fast) var(--ease-lux);
}

.project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards (mirrors project-item) */
.service-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-lux);
}

.service-item:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 38, 33, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--d-fast) var(--ease-lux);
}

.service-item:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    transition: all var(--d-fast);
}

.form-control::placeholder {
    color: rgba(17, 17, 17, 0.62);
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-metallic);
    background: white;
}

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-forest-dark);
    color: var(--color-pure-white);
    padding: 6rem 0 2rem;
    font-size: 0.9rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1; /* Spans across the full tablet width */
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-column:first-child {
        grid-column: auto; /* Reset to normal flow for desktop */
        margin-bottom: 0;
        max-width: none;
    }

    .footer-column:first-child > a {
        display: inline-block;
        margin-top: -56px;
        margin-bottom: 0;
    }

    .footer-column:first-child .footer-description {
        margin-top: -2.25rem;
        margin-bottom: 0.5rem;
    }

    .footer-column:first-child .social-links {
        margin-top: 0;
    }
}

.footer-logo {
    max-width: 260px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--color-gold-metallic);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-links p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-links a.address {
    cursor: default;
}

.footer-links a:hover {
    color: var(--color-pure-white);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out);
}

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

.footer-bottom a:visited {
    color: var(--color-bronze-light);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.social-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--color-gold-metallic);
}

.social-links a:hover .social-icon {
    fill: var(--color-gold-metallic);
}

.social-links a:focus-visible {
    outline: 1px solid var(--color-gold-metallic);
    outline-offset: 4px;
}

.social-icon-instagram rect {
    fill: var(--color-forest-dark) !important;
}

.social-icon-instagram {
    fill: none !important;
    stroke: rgba(255, 255, 255, 0.6) !important;
}

.social-links a:hover .social-icon-instagram {
    stroke: var(--color-gold-metallic) !important;
}

/* --------------------------------------------------------------------------
   8. ANIMATIONS (Keyframes)
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-lux);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   9. GLOBAL UTILITY ENGINE (Luxury Building Blocks)
   -------------------------------------------------------------------------- */
/* Typography */
.text-white { color: var(--color-pure-white) !important; }
.text-forest { color: var(--color-forest-deep) !important; }
.text-bronze { color: var(--color-bronze) !important; }
.text-gold-dark { color: var(--color-gold-dark) !important; }
.text-dark-gray { color: var(--color-subtle) !important; }

.font-heading { font-family: var(--font-heading) !important; }
.font-bold { font-weight: 700 !important; }
.italic { font-style: italic !important; }
.uppercase { text-transform: uppercase !important; }
.text-center { text-align: center !important; }
.text-lg { font-size: 1.125rem !important; }

/* The Standardized Estate Subtitle */
.text-overline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-dark);
}

.bento-overline-chip {
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.45rem;
    border-radius: 1px;
    background: rgba(15, 31, 28, 0.44);
    border: 1px solid rgba(212, 191, 174, 0.18);
    color: var(--color-pure-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.text-overline-light {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-pure-white);
}

/* Flexbox */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }

/* Spacing Components */
.gap-2 { gap: 0.5rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-12 { gap: 3rem !important; }

.mt-2 { margin-top: 0.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.pt-40 { padding-top: 10rem !important; }
.pb-24 { padding-bottom: 6rem !important; }
.py-24 { padding: 6rem 0 !important; }

@media (max-width: 1024px) {
    .pt-40 { padding-top: calc(var(--section-space) + 5rem) !important; }
    .pb-24 { padding-bottom: var(--section-space) !important; }
    .py-24 { padding: var(--section-space) 0 !important; }
}

@media (max-width: 767px) {
    .pt-40 { padding-top: calc(var(--section-space) + 5.5rem) !important; }
    .pb-24 { padding-bottom: var(--section-space) !important; }
    .py-24 { padding: var(--section-space) 0 !important; }
}

/* Media & Images */
.img-fluid {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.filter-mono {
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.filter-mono:hover {
    filter: grayscale(0%);
}

/* Team section styling */
.team-card {
    position: relative;
}

.team-card img {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: center 24%;
    filter: sepia(40%) saturate(130%) brightness(95%);
    transition: filter 0.4s ease;
}

.team-photo--quinn {
    object-position: center 18%;
}

.team-photo--albert {
    object-position: center 16%;
}

.team-photo--scott {
    object-position: center 20%;
}

.team-photo--travis {
    object-position: center 14%;
}

.team-card:hover img {
    filter: sepia(0%) saturate(100%) brightness(100%);
}

.team-card h3 {
    color: var(--color-forest-deep);
    margin-bottom: 0.25rem;
    margin-top: 1rem;
    text-align: center;
}

.team-card .text-overline {
    color: var(--color-bronze);
    margin-bottom: 1rem;
    text-align: center;
}

.team-card p {
    text-align: left;
}

/* Social proof bar */
.proof-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}

.proof-bar-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.25rem 2rem 0.25rem 0;
}

.proof-bar-stat + .proof-bar-stat {
    border-left: 2px solid rgba(156, 130, 107, 0.38);
    padding-left: 2rem;
}

.proof-bar-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 400;
    color: var(--color-gold-metallic);
    line-height: 0.9;
    display: block;
}

.proof-bar-label {
    font-family: var(--font-body);
    max-width: 14rem;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.65;
    color: var(--color-forest-deep);
    display: block;
}

@media (max-width: 640px) {
    .proof-bar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .proof-bar-stat {
        padding: 0;
    }

    .proof-bar-stat + .proof-bar-stat {
        border-left: 0;
        padding-left: 0;
    }
}

/* Certifications logo grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cert-placeholder {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-subtle);
    text-align: center;
}

.opacity-80 { opacity: 0.8 !important; }
.display-block { display: block !important; }

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-pure-white);
}

.bg-white .form-label, .bg-alt .form-label {
    color: var(--color-midnight);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* Max Width Utilities */
.max-w-3xl { max-width: 768px !important; margin-left: auto !important; margin-right: auto !important; }
.max-w-content { max-width: 768px !important; }

.absolute-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -2 !important;
}

.divider-bronze {
    width: 100px;
    height: 1px;
    background: var(--color-bronze);
}

/* --------------------------------------------------------------------------
   10. SYSTEM REFINEMENTS
   -------------------------------------------------------------------------- */
.text-midnight { color: var(--color-midnight) !important; }
.text-charcoal { color: var(--color-charcoal) !important; }
.text-light-gray { color: rgba(17, 17, 17, 0.58) !important; }
.text-dark { color: var(--color-charcoal) !important; }
.text-italic { font-style: italic !important; }
.text-sm { font-size: 0.9rem !important; }
.leading-relaxed { line-height: 1.8 !important; }
.leading-loose { line-height: 1.95 !important; }
.flex-wrap { flex-wrap: wrap !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pb-32 { padding-bottom: 8rem !important; }
.section-pad-bottom-xl { padding-bottom: var(--section-space) !important; }
.section-pad-compact { padding-top: var(--section-space-compact) !important; padding-bottom: var(--section-space-compact) !important; }

@media (max-width: 1024px) {
    :root {
        --section-space: 5.35rem; /* ~1/3 less than desktop */
        --section-space-compact: 2rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-space: 4rem; /* ~1/2 of desktop */
        --section-space-compact: 1.5rem;
    }
}
.footer-button-link {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out);
}

.footer-button-link:hover {
    color: var(--color-pure-white);
}

.service-overlay-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    color: var(--color-pure-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.3rem;
}

.service-overlay-link:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.journal-list {
    display: flex;
    flex-direction: column;
}

.journal-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    padding: 3rem var(--gutter);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
    align-items: start;
    margin: 0 calc(-1 * var(--gutter));
}

@media (max-width: 900px) {
    .journal-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journal-thumb-wrap {
        order: -1;
        max-width: 400px;
    }
}

.journal-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.journal-row:last-child {
    border-bottom: none;
}

.journal-content {
    display: flex;
    flex-direction: column;
}

.journal-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-bronze);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.journal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-midnight);
    margin: 0 0 1rem 0;
}

.journal-excerpt {
    color: var(--color-subtle);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.journal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.journal-link {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.journal-link:hover {
    gap: 0.75rem;
}

.journal-date {
    font-size: 0.85rem;
    color: var(--color-subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.journal-thumb-wrap {
    overflow: hidden;
    background: var(--color-stone);
    height: 100%;
    min-height: 180px;
}

.journal-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-lux);
    display: block;
}

.journal-row:hover .journal-thumb {
    transform: scale(1.03);
}

.story-breadcrumbs {
    background: rgba(234, 234, 234, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.95rem 0;
}

.story-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.45rem;
    color: var(--color-subtle);
}

.story-breadcrumb-list a {
    color: var(--color-forest-deep);
    text-decoration: none;
}

.story-breadcrumb-list a:hover {
    color: var(--color-gold-dark);
}

.story-shell {
    background: var(--color-pure-white);
    color: var(--color-charcoal);
}

.story-header {
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.16), transparent 32%),
        linear-gradient(180deg, var(--color-forest-dark), var(--color-midnight));
    color: var(--color-pure-white);
    padding: 4.75rem 0 3rem;
}

.story-header-inner {
    max-width: 980px;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.story-kicker {
    color: var(--color-bronze-light);
    text-decoration: none;
    font-weight: 600;
}

.story-kicker:hover {
    color: var(--color-gold-light);
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 15ch;
}

.story-lead {
    font-size: 1.16rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.84);
    max-width: 760px;
}

.story-media {
    margin: 0;
    padding: 0 0 2.5rem;
}

.story-media-frame {
    margin-top: -1.75rem;
    background: var(--color-pure-white);
    box-shadow: var(--shadow-lift);
}

.story-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.story-caption {
    padding: 1rem 1.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-subtle);
    font-style: italic;
}

.story-content {
    padding: 1.5rem 0 6rem;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
}

@media (min-width: 1024px) {
    .story-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 4rem;
        align-items: start;
    }

    .story-sidebar {
        position: sticky;
        top: 110px;
    }
}

.story-main {
    max-width: 760px;
}

.story-toc {
    background: linear-gradient(180deg, rgba(234, 234, 234, 0.9), rgba(234, 234, 234, 0.45));
    border-top: 1px solid rgba(156, 130, 107, 0.7);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.story-toc-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.story-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 1;
}

@media (min-width: 640px) {
    .story-toc-list {
        columns: 2;
        column-gap: 2rem;
    }
}

.story-toc-list li {
    break-inside: avoid;
    margin-bottom: 0.65rem;
}

.story-toc-list a {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-size: 0.95rem;
}

.story-toc-list a:hover {
    color: var(--color-gold-dark);
}

.story-section + .story-section {
    margin-top: 3.25rem;
}

.story-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.story-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-forest-deep);
    margin: 2rem 0 0.8rem;
}

.story-section p {
    color: var(--color-charcoal);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.story-points {
    list-style: none;
    margin: 1.75rem 0;
    padding: 0;
}

.story-points li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.95rem;
    line-height: 1.8;
}

.story-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--color-bronze);
}

.story-quote {
    margin: 2rem 0;
    padding: 1.4rem 0 1.4rem 1.5rem;
    border-left: 2px solid var(--color-bronze);
}

.story-quote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--color-midnight);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.story-quote cite {
    font-size: 0.88rem;
    color: var(--color-subtle);
    font-style: normal;
}

.story-inline-figure {
    margin: 2rem 0;
}

.story-inline-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-inline-figure figcaption {
    margin-top: 0.8rem;
    color: var(--color-subtle);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.story-faq {
    background: rgba(234, 234, 234, 0.75);
    padding: 2rem;
    margin-top: 3rem;
}

.story-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.story-faq-item:last-child {
    border-bottom: none;
}

.story-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-forest-deep);
    list-style: none;
}

.story-faq-item summary::-webkit-details-marker {
    display: none;
}

.story-faq-item p {
    margin-top: 0.8rem;
}

.story-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    padding-top: 2rem;
}

.story-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.story-topics-label,
.story-share-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--color-subtle);
}

.story-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    background: var(--color-stone);
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 0.85rem;
}

.story-tag:hover {
    background: var(--color-bronze-light);
}

.story-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.story-share-button {
    background: var(--color-forest-deep);
    color: var(--color-pure-white);
    border: none;
    padding: 0.65rem 1rem;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
}

.story-share-button:hover {
    background: var(--color-midnight);
}

.story-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-panel {
    background: rgba(234, 234, 234, 0.75);
    padding: 1.5rem;
}

.story-panel-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-midnight);
    margin-bottom: 0.9rem;
}

.story-panel p {
    color: var(--color-charcoal);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.story-panel-link {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
}

.story-panel-link:hover {
    color: var(--color-gold-dark);
}

.story-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.story-panel-list li + li {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.story-panel--cta {
    background: var(--color-forest-deep);
}

.story-panel--cta .story-panel-title,
.story-panel--cta p {
    color: var(--color-pure-white);
}

.story-panel--cta .btn {
    width: 100%;
}

.story-related {
    margin-top: 4rem;
}

.story-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .story-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.story-related-card {
    background: var(--color-pure-white);
    border-top: 1px solid rgba(156, 130, 107, 0.7);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.story-related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.65rem;
}

.story-related-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-bronze);
    margin-bottom: 0.85rem;
}

.story-related-card p {
    color: var(--color-subtle);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-document {
    background: var(--color-pure-white);
}

.policy-shell {
    max-width: 860px;
}

.policy-intro {
    margin-bottom: 3rem;
}

.policy-intro p,
.policy-section p,
.policy-section li,
.policy-address {
    line-height: 1.85;
    color: var(--color-charcoal);
}

.policy-section + .policy-section {
    margin-top: 3rem;
}

.policy-section h2 {
    margin-bottom: 0.75rem;
}

.policy-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-forest-deep);
    margin: 1.5rem 0 0.75rem;
}

.policy-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.82rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--color-bronze);
}

.policy-link {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.policy-link:hover {
    color: var(--color-gold-dark);
}

.policy-link:visited {
    color: var(--color-gold-dark);
}

.policy-address {
    font-style: normal;
}

.policy-address a {
    color: var(--color-forest-deep);
    text-decoration: none;
}

.policy-address a:hover {
    color: var(--color-gold-dark);
}

.policy-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-subtle);
}

.policy-table-wrap {
    overflow-x: auto;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.policy-table th,
.policy-table td {
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-charcoal);
}

.policy-table th {
    color: var(--color-midnight);
    border-bottom-width: 2px;
    border-bottom-color: var(--color-bronze);
}

.cta-title-compact {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-copy {
    max-width: 92ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.services-hero-title {
    font-size: calc(var(--fs-h1) * 1.12);
    line-height: 0.96;
}

.services-hero-shell {
    padding-top: clamp(12rem, 15vw, 14rem);
}

.split-hero-first {
    font-size: 0.84em;
    line-height: inherit;
    color: var(--color-pure-white);
    text-transform: lowercase;
    font-style: italic;
}

.split-hero-accent {
    font-size: 1em;
    line-height: inherit;
    font-style: normal;
    color: var(--color-bronze);
    text-transform: uppercase;
}

.split-hero-title {
    font-size: calc(var(--fs-h1) * 1.12);
    line-height: 0.96;
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/design-build/design-build-hero.webp') center/cover;
}

.service-detail-hero--design-build::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/design-build/design-build-hero.webp') center/cover;
}

.service-detail-hero--outdoor-living::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/outdoor-living/fall-line-launch-15-1920x1080.webp') center/cover;
}

.service-detail-hero--retaining-walls::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/retaining-walls/retaining-wall-7-2032x569.webp') center/cover;
}

.service-detail-hero--paver-installation::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/paver-installation/fall-line-launch-17-1920x1080.webp') center/cover;
}

.service-detail-hero--landscape-installation::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/landscape-installation/fall-line-launch-2-1920x1080.webp') center/cover;
}

.service-detail-hero--irrigation-drainage::before {
    background:
        linear-gradient(120deg, rgba(11, 27, 23, 0.95), rgba(15, 31, 28, 0.78)),
        url('../images/services/irrigation-drainage/project-irrigation-drainage-4-2032x569.webp') center/cover;
}

.service-detail-hero .container {
    position: relative;
    z-index: 1;
}

.service-detail-header {
    max-width: 820px;
}

.service-detail-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-bronze-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.98;
    font-weight: 400;
    color: var(--color-pure-white);
    margin-bottom: 1.2rem;
    max-width: 11ch;
}

.service-detail-subtitle {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
}

.service-detail-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 960px) {
    .service-detail-intro {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
}

.service-detail-copy p {
    line-height: 1.9;
    color: var(--color-charcoal);
    margin-bottom: 1.25rem;
}

.service-detail-aside {
    background: rgba(234, 234, 234, 0.75);
    padding: 2rem;
}

.service-detail-stat {
    border-top: 1px solid rgba(156, 130, 107, 0.5);
    padding-top: 1rem;
    margin-top: 1rem;
}

.service-detail-stat:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.service-detail-stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-bronze);
    margin-bottom: 0.35rem;
}

.service-detail-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 400;
    color: var(--color-midnight);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-detail-card {
    background: var(--color-pure-white);
    border-top: 1px solid rgba(156, 130, 107, 0.7);
    padding: 2rem;
}

.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.75rem;
}

.service-detail-card p {
    color: var(--color-subtle);
    line-height: 1.8;
}

.service-detail-card--dark {
    background: transparent;
    border-top: none;
    border-right: 2px solid rgba(196, 176, 155, 0.55);
    padding: 0.25rem 1.75rem 0.25rem 0;
}

.service-detail-card--dark:last-child {
    border-right: none;
    padding-right: 0;
}

.service-detail-card--dark h3 {
    color: var(--color-pure-white);
}

.service-detail-card--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.service-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .service-process {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.service-process-step {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.service-process-step span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bronze-light);
    margin-bottom: 0.75rem;
}

.service-process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-pure-white);
    margin-bottom: 0.8rem;
}

.service-process-step p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.service-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-proof-card {
    background: var(--color-stone);
    padding: 2rem;
}

.service-proof-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.75rem;
}

.service-proof-card p {
    color: var(--color-subtle);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-proof-card a {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
}

.service-proof-card a:hover {
    color: var(--color-gold-dark);
}

.service-proof-grid--visual .service-proof-card {
    position: relative;
    overflow: hidden;
    min-height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--color-forest-dark);
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
}

.service-proof-grid--visual .service-proof-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 28, 0.22), rgba(15, 31, 28, 0.9));
}

.service-proof-grid--visual .service-proof-card > * {
    position: relative;
    z-index: 1;
}

.service-proof-grid--visual .service-proof-card h3,
.service-proof-grid--visual .service-proof-card p,
.service-proof-grid--visual .service-proof-card a {
    color: var(--color-pure-white);
}

.service-proof-grid--visual .service-proof-card p {
    margin-bottom: 0.9rem;
}

.service-proof-grid--visual .service-proof-card a {
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 0.2rem;
}

.service-proof-grid--visual .service-proof-card a:hover {
    color: var(--color-gold-light);
    border-bottom-color: var(--color-gold-metallic);
}

.service-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .service-links-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-link-tile {
    display: block;
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-link-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(156, 130, 107, 0.5);
    box-shadow: var(--shadow-lift);
}

.service-link-tile strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.6rem;
}

.service-link-tile span {
    color: var(--color-subtle);
    line-height: 1.7;
    font-size: 0.95rem;
}

.article-shell-clean {
    background: var(--color-pure-white);
}

.article-intro-clean {
    position: relative;
}

.article-intro-wrap {
    max-width: 860px;
}

.article-kicker-clean {
    margin-bottom: 1rem;
    color: var(--color-bronze-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article-title-clean {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1;
    color: var(--color-pure-white);
    margin-bottom: 1rem;
    max-width: none;
}

.article-meta-clean {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.article-dek-clean {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-image-band {
    padding: 2rem 0 0;
}

.article-hero-clean {
    margin: 0;
}

.article-hero-clean img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.article-hero-clean figcaption {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-subtle);
    font-style: italic;
}

.article-layout-clean {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
}

@media (min-width: 1024px) {
    .article-layout-clean {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 4rem;
        align-items: start;
    }

    .article-sidebar-clean {
        position: sticky;
        top: 110px;
    }
}

.article-main-clean {
    max-width: 760px;
}

.article-block-clean + .article-block-clean {
    margin-top: 3rem;
}

.article-block-clean h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.article-block-clean p {
    color: var(--color-charcoal);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.article-main-clean a:not(.btn):not(.journal-link):not(.article-panel-link-clean),
.article-section a:not(.btn):not(.journal-link):not(.article-panel-link-clean) {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.16rem;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.article-main-clean a:not(.btn):not(.journal-link):not(.article-panel-link-clean):visited,
.article-section a:not(.btn):not(.journal-link):not(.article-panel-link-clean):visited {
    color: var(--color-gold-dark);
}

.article-main-clean a:not(.btn):not(.journal-link):not(.article-panel-link-clean):hover,
.article-section a:not(.btn):not(.journal-link):not(.article-panel-link-clean):hover {
    color: var(--color-midnight);
    background-color: rgba(197, 160, 89, 0.16);
}

.article-main-clean a:not(.btn):not(.journal-link):not(.article-panel-link-clean):focus-visible,
.article-section a:not(.btn):not(.journal-link):not(.article-panel-link-clean):focus-visible {
    color: var(--color-midnight);
    background-color: rgba(197, 160, 89, 0.2);
    outline: 2px solid rgba(197, 160, 89, 0.65);
    outline-offset: 0.18rem;
}

.article-pull-quote-clean {
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 2px solid var(--color-bronze);
}

.article-pull-quote-clean p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-midnight);
    margin: 0;
}

.article-inline-figure-clean {
    margin: 2rem 0;
}

.article-inline-figure-clean img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.article-inline-figure-clean figcaption {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: var(--color-subtle);
    font-style: italic;
}

.article-sidebar-clean {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-panel-clean {
    background: rgba(234, 234, 234, 0.75);
    padding: 1.5rem;
}

.article-panel-clean h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.9rem;
}

.article-panel-clean p {
    color: var(--color-charcoal);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.article-mini-toc {
    margin: 0;
    padding-left: 1rem;
}

.article-mini-toc li + li {
    margin-top: 0.65rem;
}

.article-mini-toc a,
.article-panel-link-clean {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
}

.article-mini-toc a:hover,
.article-panel-link-clean:hover {
    color: var(--color-gold-dark);
}

.article-mini-toc a:visited,
.article-panel-link-clean:visited {
    color: var(--color-gold-dark);
}

.article-panel-clean-dark {
    background: var(--color-forest-deep);
}

.article-panel-clean-dark h2,
.article-panel-clean-dark p {
    color: var(--color-pure-white);
}

.article-panel-clean-dark .btn {
    width: 100%;
}

.article-continue-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .article-continue-grid-clean {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.article-continue-card-clean {
    background: var(--color-pure-white);
    border-top: 1px solid rgba(156, 130, 107, 0.7);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-continue-kicker-clean {
    margin-bottom: 0.75rem;
    color: var(--color-bronze);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-continue-card-clean h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.85rem;
}

.article-continue-card-clean p {
    color: var(--color-subtle);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.article-continue-card-clean .journal-link {
    margin-top: auto;
    align-self: center;
}

.project-card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.project-item:focus-within .project-overlay,
.project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card-link:focus-visible {
    outline: 2px solid var(--color-bronze);
    outline-offset: -6px;
}

.project-item .service-overlay-link {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.project-case-hero {
    background:
        linear-gradient(180deg, rgba(8, 20, 17, 0.82), rgba(15, 31, 28, 0.92)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&h=1000&fit=crop") center/cover;
    color: var(--color-pure-white);
}

.project-case-header {
    max-width: 52rem;
}

.project-case-label,
.project-case-note-label,
.project-case-summary-label,
.project-case-label-dark {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-case-label {
    color: rgba(255, 255, 255, 0.72);
}

.project-case-label-dark {
    color: var(--color-bronze);
}

.project-case-title {
    margin-top: 1rem;
    color: var(--color-pure-white);
}

.project-case-subtitle {
    margin-top: 1.5rem;
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.9;
    font-size: 1.1rem;
}

.project-case-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.project-case-meta div {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-case-meta span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
}

.project-case-meta strong {
    color: var(--color-pure-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
}

.project-case-image-band {
    padding-top: 0;
}

.project-case-hero-figure {
    margin: 0;
}

.project-case-image-trigger {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-case-hero-figure img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.project-case-hero-figure figcaption {
    padding-top: 1rem;
    color: var(--color-subtle);
    font-size: 0.95rem;
}

.project-case-overview {
    display: grid;
    gap: 2rem;
}

.project-case-copy {
    max-width: 48rem;
}

.project-case-summary {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.project-case-summary-card {
    background: var(--color-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
}

.project-case-summary-label {
    color: var(--color-subtle);
    margin-bottom: 0.6rem;
}

.project-case-summary-card strong {
    display: block;
    color: var(--color-midnight);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.45;
}

.project-case-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.project-case-note {
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
}

.project-case-note-label {
    color: var(--color-bronze);
}

.project-case-note h3 {
    margin: 0.85rem 0 0.7rem;
    color: var(--color-midnight);
}

.project-case-note p {
    margin-bottom: 0;
    color: var(--color-subtle);
}

.project-case-note-feature {
    background: var(--color-forest);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-case-note-feature .project-case-note-label {
    color: rgba(255, 255, 255, 0.72);
}

.project-case-note-feature h3,
.project-case-note-feature p {
    color: var(--color-pure-white);
}

.project-case-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.project-case-gallery-card {
    margin: 0;
}

.project-case-gallery-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s var(--ease-lux);
}

.project-case-gallery-card:hover img,
.project-case-gallery-card:focus-within img {
    transform: scale(1.03);
}

.project-case-cta-band {
    display: grid;
    gap: 2rem;
}

.project-case-cta-copy {
    max-width: 34rem;
}

.project-case-cta-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.project-case-link-row {
    display: block;
    text-decoration: none;
    color: var(--color-charcoal);
    background: var(--color-pure-white);
    border-top: 1px solid rgba(156, 130, 107, 0.45);
    padding: 1.25rem 1.5rem;
}

.project-case-link-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.project-case-link-row strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-midnight);
    margin-bottom: 0.45rem;
}

.project-case-link-row span {
    color: var(--color-subtle);
    line-height: 1.7;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(8, 20, 17, 0.88);
    display: grid;
    place-items: center;
    padding: 2rem;
}

.project-lightbox[hidden] {
    display: none;
}

.project-lightbox-dialog {
    position: relative;
    max-width: min(92vw, 1200px);
    max-height: 84vh;
}

.project-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    box-shadow: var(--shadow-lift);
}

.project-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-pure-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.project-detail-hero {
    background:
        linear-gradient(180deg, rgba(8, 20, 17, 0.9), rgba(15, 31, 28, 0.95)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&h=1000&fit=crop") center/cover;
    color: var(--color-pure-white);
}

.project-detail-header {
    max-width: 48rem;
}

.project-detail-label,
.project-bento-label,
.project-detail-stat-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-detail-title {
    margin-top: 1rem;
    color: var(--color-pure-white);
}

.project-detail-subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    max-width: 42rem;
}

.project-detail-image-band {
    padding-top: 0;
}

.project-detail-hero-figure {
    margin: 0;
}

.project-detail-hero-figure img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.project-detail-hero-figure figcaption {
    padding-top: 1rem;
    color: var(--color-subtle);
    font-size: 0.95rem;
}

.project-detail-intro {
    display: grid;
    gap: 2rem;
}

.project-detail-copy {
    max-width: 46rem;
}

.project-detail-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.project-detail-stat {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
    background: var(--color-alt);
}

.project-detail-stat-label {
    color: var(--color-subtle);
    margin-bottom: 0.5rem;
}

.project-detail-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-midnight);
}

.project-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-bento-card {
    position: relative;
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
    min-height: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-bento-card h3 {
    margin: 0.85rem 0 0.75rem;
}

.project-bento-card p {
    margin-bottom: 0;
    color: var(--color-subtle);
}

.project-bento-card-dark {
    background: var(--color-forest);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-bento-card-dark h3,
.project-bento-card-dark p,
.project-bento-card-dark .project-bento-label {
    color: var(--color-pure-white);
}

.project-bento-card-dark .project-bento-label {
    color: rgba(255, 255, 255, 0.7);
}

.project-bento-card-image {
    padding: 0;
    overflow: hidden;
    min-height: 20rem;
}

.project-bento-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-bento-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(15, 31, 28, 0.92), rgba(15, 31, 28, 0.05));
}

.project-bento-card-content h3,
.project-bento-card-content p,
.project-bento-card-content .project-bento-label {
    color: var(--color-pure-white);
}

.project-bento-card-content .project-bento-label {
    color: rgba(255, 255, 255, 0.75);
}

.project-detail-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-detail-step {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.5rem;
}

.project-detail-step span {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--color-bronze);
    margin-bottom: 0.75rem;
}

.project-detail-step h3 {
    color: var(--color-pure-white);
    margin-bottom: 0.75rem;
}

.project-detail-step p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-gallery-card {
    margin: 0;
}

.project-gallery-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-gallery-card figcaption {
    padding-top: 1rem;
    color: var(--color-subtle);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .project-case-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-case-overview {
        grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
        gap: 3rem;
    }

    .project-case-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-case-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-case-cta-band {
        grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.4fr);
        gap: 3rem;
    }

    .project-detail-intro {
        grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
        gap: 3rem;
    }

    .project-detail-story {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1024px) {
    .project-case-notes {
        grid-template-columns: 1.35fr 1fr 1fr 1fr;
    }

    .project-case-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 15rem 15rem;
    }

    .project-bento-card-dark {
        grid-column: span 2;
    }

    .project-bento-card-image {
        grid-column: 3;
        grid-row: span 2;
    }
}

.location-detail-hero {
    background:
        linear-gradient(180deg, rgba(8, 20, 17, 0.88), rgba(15, 31, 28, 0.94)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&h=1000&fit=crop") center/cover;
    color: var(--color-pure-white);
}

.location-detail-header {
    max-width: 48rem;
}

.location-detail-label,
.location-bento-label,
.location-detail-stat-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
}

.location-detail-label {
    color: rgba(255, 255, 255, 0.72);
}

.location-detail-title {
    margin-top: 1rem;
    color: var(--color-pure-white);
}

.location-detail-subtitle {
    margin-top: 1.5rem;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    font-size: 1.1rem;
}

.location-detail-intro {
    display: grid;
    gap: 2rem;
}

.location-detail-copy {
    max-width: 46rem;
}

.location-detail-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.location-detail-stat {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-alt);
    padding: 1.25rem 1.5rem;
}

.location-detail-stat-label {
    color: var(--color-subtle);
    margin-bottom: 0.5rem;
}

.location-detail-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-midnight);
}

.location-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.location-bento-card {
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
}

.location-bento-card h3 {
    margin: 0.85rem 0 0.75rem;
}

.location-bento-card p {
    margin-bottom: 0;
    color: var(--color-subtle);
}

.location-bento-label {
    color: var(--color-bronze);
}

.location-bento-card-dark {
    background: var(--color-forest);
    border-color: rgba(255, 255, 255, 0.08);
}

.location-bento-card-dark h3,
.location-bento-card-dark p,
.location-bento-card-dark .location-bento-label {
    color: var(--color-pure-white);
}

.location-bento-card-dark .location-bento-label {
    color: rgba(255, 255, 255, 0.72);
}

.service-link-tile-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-link-tile-dark strong,
.service-link-tile-dark span {
    color: var(--color-pure-white);
}

.service-link-tile-dark span {
    color: rgba(255, 255, 255, 0.78);
}

.service-link-tile-dark:hover {
    border-color: rgba(196, 176, 155, 0.55);
}

.location-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .location-detail-intro {
        grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
        gap: 3rem;
    }

    .location-bento-grid,
    .location-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.city-service-hero {
    background:
        linear-gradient(180deg, rgba(8, 20, 17, 0.9), rgba(15, 31, 28, 0.95)),
        url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&h=1000&fit=crop") center/cover;
    color: var(--color-pure-white);
}

.city-service-header {
    max-width: 50rem;
}

.city-service-label,
.city-service-stat-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
}

.city-service-label {
    color: rgba(255, 255, 255, 0.72);
}

.city-service-title {
    margin-top: 1rem;
    color: var(--color-pure-white);
}

.city-service-subtitle {
    margin-top: 1.5rem;
    max-width: 43rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    font-size: 1.1rem;
}

.city-service-intro {
    display: grid;
    gap: 2rem;
}

.city-service-copy {
    max-width: 46rem;
}

.city-service-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.city-service-stat {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-alt);
    padding: 1.25rem 1.5rem;
}

.city-service-stat-label {
    color: var(--color-subtle);
    margin-bottom: 0.5rem;
}

.city-service-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-midnight);
}

.city-service-stat ul {
    margin: 0;
    padding-left: 1.1rem;
}

.city-service-stat li + li {
    margin-top: 0.45rem;
}

.city-service-stat a {
    color: var(--color-forest-deep);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--d-fast) var(--ease-out), background-color var(--d-fast) var(--ease-out);
}

.city-service-stat a:hover {
    color: var(--color-gold-dark);
}

.city-service-stat a:visited {
    color: var(--color-gold-dark);
}

.city-service-stat strong a {
    color: var(--color-midnight);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 42, 36, 0.25);
}

.city-service-stat strong a:hover {
    color: var(--color-gold-dark);
    border-bottom-color: var(--color-gold-dark);
}

.city-needs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.city-needs-item {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 1.25rem;
}

.city-needs-item h3 {
    color: var(--color-pure-white);
    margin-bottom: 0.65rem;
}

.city-needs-item p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.city-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.city-visual-card {
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.city-visual-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.city-visual-copy {
    padding: 1.1rem 1.1rem 1.25rem;
}

.city-visual-copy h3 {
    color: var(--color-midnight);
    margin-bottom: 0.35rem;
}

.city-visual-copy p {
    color: var(--color-subtle);
    margin-bottom: 0;
}

.related-links-compact {
    margin: 0;
}

.city-related-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.25rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--color-midnight);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-related-link:hover {
    color: var(--color-gold-dark);
    border-color: rgba(156, 130, 107, 0.45);
    transform: translateY(-2px);
}

.city-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.city-service-card {
    background: var(--color-pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
}

.city-service-card p {
    color: var(--color-subtle);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .city-service-intro {
        grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
        gap: 3rem;
    }

    .city-needs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 2rem;
    }

    .city-visual-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .city-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
   Client Presentation Refinements (April 2026)
   -------------------------------------------------------------------------- */

/* Faster primary CTA hover timing */
.btn,
.btn-outline {
    transition-duration: 0.2s;
}

/* Consistent image-backed narrow bento cards */
/* Service cards: title visible by default, hover reveals detail, full-card link */
.service-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.service-card-link:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: -6px;
}

.service-chip {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: rgba(15, 31, 28, 0.8);
    color: var(--color-pure-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.45rem 0.7rem;
}

.service-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
    background: linear-gradient(to top, rgba(15, 31, 28, 0.92) 18%, rgba(15, 31, 28, 0.18) 70%);
}

.service-overlay h3 {
    margin-bottom: 0.25rem;
}

.service-overlay p,
.service-overlay .service-overlay-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-item:hover .service-overlay p,
.service-item:hover .service-overlay .service-overlay-link,
.service-item:focus-within .service-overlay p,
.service-item:focus-within .service-overlay .service-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet and smaller: show hover-dependent card content by default */
@media (max-width: 1024px) {
    .project-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .service-overlay p,
    .service-overlay .service-overlay-link {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Explore link style reused across service and portfolio cards */
.service-overlay-link {
    display: inline-block;
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 0.25rem;
    margin-top: 1rem;
}

/* Services title accent */
.services-accent-gold {
    color: var(--color-gold-metallic);
}

.services-accent-green {
    color: var(--color-forest-deep);
}

/* Portfolio cards: keep link text treatment consistent with service cards */
.project-overlay .service-overlay-link {
    opacity: 1;
    transform: none;
}

/* Project notes: keep text dark and legible on light cards */
.project-case-note-feature {
    background: var(--color-pure-white);
    border-color: rgba(156, 130, 107, 0.35);
}

/* Home news module: compact editorial cards */
.section-news-ground {
    padding-top: calc(var(--section-space) * 0.5);
    padding-bottom: calc(var(--section-space) * 0.5);
}

.news-ground-heading {
    margin-bottom: 2rem;
}

.news-ground-intro {
    margin-bottom: 1.75rem;
}

.news-ground-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.news-ground-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 1.3rem 1.4rem;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-ground-card::before {
    content: none;
}

.news-ground-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 31, 28, 0.70), rgba(15, 31, 28, 0.84));
}

.news-ground-kicker {
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--color-pure-white);
}

.news-ground-card h3 {
    color: var(--color-pure-white);
    margin-bottom: 0.45rem;
    font-size: 1.5rem;
}

.news-ground-text {
    color: var(--color-pure-white);
    margin-bottom: 0.9rem;
}

.news-ground-link {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
    color: var(--color-pure-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 0.2rem;
}

.news-ground-link:hover {
    border-bottom-color: var(--color-gold-metallic);
    color: var(--color-gold-light);
}

@media (min-width: 768px) {
    .news-ground-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .news-ground-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.project-case-note-feature .project-case-note-label {
    color: var(--color-bronze);
}

.project-case-note-feature h3,
.project-case-note-feature p {
    color: var(--color-midnight);
}

/* Final lock: keep interior page hero/title sizes consistent sitewide */
.hero-title:not(.hero-title-home):not(.services-hero-title):not(.split-hero-title),
.service-detail-title,
.project-case-title,
.project-detail-title,
.location-detail-title,
.city-service-title {
    font-size: var(--fs-hero-interior);
    line-height: 0.96;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-reveal,
.inline-contact-reveal {
    display: inline;
}

.footer-links .contact-reveal {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.contact-reveal-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.contact-reveal-button:hover,
.contact-reveal-button:focus-visible {
    color: var(--color-pure-white);
}

.contact-reveal-button-dark:hover,
.contact-reveal-button-dark:focus-visible {
    color: var(--color-gold-dark);
}

.contact-reveal-link {
    color: inherit;
    text-decoration: none;
}

.inline-contact-reveal .contact-reveal-link {
    color: var(--color-forest-deep);
    font-weight: 600;
}

.inline-contact-reveal .contact-reveal-link:hover {
    color: var(--color-gold-dark);
}

.form-status {
    min-height: 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
}

.form-status-success {
    color: var(--color-forest-deep);
}

.form-status-error {
    color: #9f2f24;
}
