/*
Theme Name: Kanopi Forest Management
Theme URI: https://kanopi.ca
Author: Kanopi
Description: Professional forest management website for BC private landowners. Clean, earthy, responsive.
Version: 1.0
License: GPL v2 or later
Text Domain: kanopi
*/

/* CSS Variables - Semantic Forest Theme */
:root {
    /* === TEXT COLORS === */
    --color-text-primary: #1A2C1E;    /* Main body text - deep forest charcoal */
    --color-text-light: #4A5B4E;      /* Secondary text - muted forest gray */
    --color-text-headings: #1E3A24;   /* All headings - rich forest green */
    
    /* === BACKGROUNDS === */
    --color-bg-primary: #F5F0E8;      /* Main page background - warm natural cream */
    --color-bg-secondary: #EBE3D5;    /* Alternating sections - soft earth beige */
    --color-bg-card: #FFFFFF;         /* Cards, modals, form fields - clean white */
    
    /* === ACCENTS === */
    --color-accent-primary: #3D6B3F;  /* Buttons, primary links - vibrant forest green */
    --color-accent-hover: #2B4F2D;    /* Hover states - darker forest green */
    --color-accent-secondary: #C4A747; /* Highlights, badges - moss gold */
    
    /* === BORDERS & DIVIDERS === */
    --color-border-light: #D9D0C1;    /* Card borders, input borders - soft earth */
    --color-border-focus: #3D6B3F;    /* Input focus rings - forest green */
    
    /* === FOOTER === */
    --color-footer-bg: #1A2C1E;       /* Footer background - deep dark forest */
    --color-footer-text: #C8D4C3;     /* Footer text - soft muted green-gray */
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--color-text-headings);
    /* background: black; */
    background: var(--color-bg-primary);
    line-height: 1.6;
    font-size: 18px;
    padding-top: 136px;
    transition: padding-top 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-accent-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; border-bottom: 3px solid var(--color-accent-secondary); display: inline-block; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; color: var(--color-accent-hover); }
h4 { font-size: 1.25rem; }

a {
    color: var(--color-border-focus);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.75) 0%, rgba(255, 246, 192, 0.75) 100%);
    border-bottom: 1px solid rgba(116, 136, 115, 0.16);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1.25rem 0;
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    will-change: transform, opacity;
    transition: transform 0.35s ease, opacity 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.hide-header {
    transform: translateY(calc(-100% - 12px));
    opacity: 0;
    pointer-events: none;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 12px 30px rgba(47, 107, 63, 0.14);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
}

.site-title span {
    color: var(--color-border-focus);
    font-weight: 400;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text-headings);
    font-weight: 500;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--color-accent-secondary);
}

/* Buttons */
.btn,
.button {
    display: inline-block;
    background: var(--color-accent-secondary);
    color: var(--color-text-light) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover,
.button:hover {
    background: var(--color-accent-primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent-secondary);
    color: var(--color-accent-secondary) !important;
}

.btn-outline:hover {
    background: var(--color-accent-secondary);
    color: var(--color-accent-primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('assets/images/hero-forest.jpg');
    background-size: cover;
    background-position: center 30%;
    /* color: white; */
    color: var(--color-text-light);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    /* color: white; */
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.front-page-shell {
    background-image:
        linear-gradient(180deg, rgba(19, 30, 22, 0.34) 0%, rgba(19, 30, 22, 0.5) 100%),
        var(--front-page-hero-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: clamp(1rem, 2vw, 2rem);
}

.front-page-shell > section {
    position: relative;
}

.front-page-shell > section:not(.hero) {
    margin: 0 clamp(0.9rem, 3vw, 2.75rem) clamp(1rem, 2vw, 1.75rem);
    border-radius: clamp(18px, 2.6vw, 30px);
    overflow: hidden;
}

.front-page-shell .hero {
    min-height: clamp(520px, 74vh, 760px);
    display: flex;
    align-items: center;
    background: transparent;
}

.front-page-shell .hero .container {
    position: relative;
    z-index: 1;
}

.front-page-shell .hero h1,
.front-page-shell .hero p {
    color: #fff;
    text-shadow: 0 12px 36px rgba(11, 20, 13, 0.35);
}

.front-page-shell > section:not(.hero):not(.sustainability-highlight) {
    background: linear-gradient(180deg, rgba(245, 240, 232, 0.72) 0%, rgba(245, 240, 232, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 42px rgba(18, 31, 22, 0.12);
    backdrop-filter: blur(8px);
}

.front-page-shell .values-section,
.front-page-shell .services-summary,
.front-page-shell .process-section,
.front-page-shell .projects-preview,
.front-page-shell .cta-section {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.front-page-shell .sustainability-highlight {
    background: linear-gradient(135deg, rgba(26, 44, 30, 0.82), rgba(43, 79, 45, 0.74));
    color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(18, 31, 22, 0.18);
    backdrop-filter: blur(8px);
}

.front-page-shell .sustainability-highlight h2,
.front-page-shell .sustainability-highlight h3 {
    color: #fff;
}

.front-page-shell .sustainability-highlight h2 {
    border-bottom-color: var(--color-accent-secondary);
}

.front-page-shell .sustainability-highlight .transparency-card {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.front-page-shell .cta-section {
    text-align: center;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--color-accent-hover);
    font-size: 1.125rem;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

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

.sustainability-content {
    grid-column: 1;
}

.transparency-card {
    grid-column: 2;
    background: var(--color-border-focus);
    padding: 2rem;
    border-radius: 12px;
    /* color: white; */
    color: var(--color-text-light);
    align-self: start;
}

.sustainability-image {
    grid-column: 1;
    grid-row: 2;
    height: 250px;
}

@media (max-width: 768px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    .sustainability-content {
        grid-column: 1;
    }
    .transparency-card {
        grid-column: 1;
    }
    .sustainability-image {
        grid-column: 1;
        grid-row: 3;
    }
}


/* Service Cards */
.service-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--color-border-focus);
    opacity: 0.3;
}

.service-card h3,
.service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.services-summary .grid-3 {
    align-items: stretch;
}

.services-summary .service-card .btn,
.service-card .btn-outline {
    margin: auto 1.5rem 1.5rem;
    align-self: flex-start;
    display: inline-block;
}

/* Project Cards */
.project-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-image-placeholder {
    width: 100%;
    height: 220px;
    background: var(--color-border-focus);
    opacity: 0.3;
}

.project-content {
    padding: 1.5rem;
}

.read-more {
    color: var(--color-accent-secondary);
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    border-radius: 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Utility */
.mt-3 {
    margin-top: 2rem;
}


/* Grid Layouts */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 2rem;
}

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

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 3rem 0;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: var(--color-bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-number {
    background: var(--color-border-focus);
    /* color: white; */
    color: var(--color-text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Process Section - Clean Timeline Style */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.step-line {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent-secondary);
    color: var(--color-accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child) .step-line::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 2px;
    background: var(--color-border-focus);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-step:not(:last-child) .step-line::after {
        display: none;
    }
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        max-width: 250px;
    }
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-secondary);
}

/* Footer */
.site-footer {
    background: var(--color-text-headings);
    /* color: #aaa; */
    color: var(--color-text-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: var(--color-bg-secondary);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 104px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .header-inner {
        flex-direction: column;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Value Cards - No Emojis */
.value-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.value-icon-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--color-border-focus);
    border-radius: 50%;
    opacity: 0.3;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }


/* ============================================
   ABOUT PAGE - PREMIUM LAYOUT
   ============================================ */

/* Hero Section */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

/* .about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.637) 0%, rgba(44, 34, 30, 0.7) 100%);
} */


.about-hero-content {
    position: relative;
    z-index: 2;
    /* color: white; */
    color: var(--color-text-light);
}

.about-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(247, 200, 92, 0.92);
    color: var(--color-accent-primary);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.about-hero h1 {
    /* color: white; */
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Eyebrow pattern for sections */
.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Introduction Section */
.about-intro-section {
    padding: 4rem 0;
    background: var(--color-bg-primary);
}

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

.intro-large {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-accent-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--color-text-primary);  /* Changed from var(--color-5, #33352c) */
    line-height: 1.7;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--color-bg-secondary);  /* Changed from var(--color-3, #f5f5d3) */
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-headings);
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile (below 768px) - FIXED */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-stat {
        flex-direction: column;  /* Changed from 'row' to 'column' */
        gap: 1rem;
    }
    
    .stat-card {
        flex: auto;
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .intro-large {
        font-size: 1.25rem;
    }
}

/* Small mobile (below 480px) */
@media (max-width: 480px) {
    .about-intro-section {
        padding: 2rem 0;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}
/* Mission Feature */
.mission-feature {
    background: var(--color-text-headings);
    color: var(--color-text-light);
    padding: 4rem 0;
    text-align: center;
}

.mission-feature-inner {
    max-width: 800px;
    margin: 0 auto;
}

.mission-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* color: var(--color-2, #bb8954); */
    color: var(--color-accent-secondary);
    display: inline-block;
    margin-bottom: 1rem;
}

.mission-statement-large {
    font-size: 1.75rem;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

/* Values & Philosophy Section */
.values-philosophy-section {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.value-showcase-card {
    background: var(--color-3, #f5f5d3);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.value-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--color-bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* color: var(--color-2, #bb8954); */
    color: var(--color-accent-secondary);
}

.value-showcase-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-showcase-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .values-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Philosophy Panel */
.philosophy-panel {
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-card) 100%);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    margin-top: 3rem;
}

.philosophy-quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--color-accent-secondary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: Georgia, serif;
}

.philosophy-content {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .philosophy-content {
        max-width: 100%;
        font-size: 1rem;
    }
    .philosophy-quote-mark {
        font-size: 4rem;
        top: 0.5rem;
        left: 1rem;
    }
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background: var(--color-bg-primary);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.difference-image {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-4, #798262), var(--color-5, #33352c));
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 43, 18, 0.7), rgba(51, 53, 44, 0.5));
}

.image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    /* color: white; */
    color: var(--color-text-light);
    z-index: 2;
}

.image-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.image-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.5rem 0 0;
}

.difference-text h2 {
    margin-bottom: 1rem;
}

.difference-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Team Section Refined */
.team-section {
    padding: 5rem 0;
    background: var(--color-bg-card);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.team-card-inner {
    text-align: center;
}

.team-photo-frame {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-text-light, #798262), var(--color-footer-bg, #33352c));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-card-info {
    padding: 1.5rem;
}

.team-card-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-role {
    color: var(--color-accent-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.team-bio p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Final CTA */
.about-final-cta {
    padding: 5rem 0;
    background:linear-gradient(135deg, var(--color-footer-bg, #33352c), #1a1a16);
    /* color: white; */
    color: var(--color-text-light);
    text-align: center;
}

.cta-block h2 {
    /* color: white; */
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.cta-block p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--color-text-light);
    /* color: white; */
    color: var(--color-text-light);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-light:hover {
    background: var(--color-bg-card);
    color: var(--color-text-headings);
}

/* Section Header Helper */
.section-header {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}


.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.difference-image {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.difference-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-4, #798262), var(--color-5, #33352c));
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 43, 18, 0.7), rgba(51, 53, 44, 0.5));
}

.image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--color-text-light);
    z-index: 2;
}

.image-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.image-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.5rem 0 0;
}

.difference-text h2 {
    margin-bottom: 1rem;
}

.difference-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* ============================================
   SERVICES PAGE - PREMIUM LAYOUT
   ============================================ */

/* Services Hero */
.services-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 34, 30, 0.85) 0%, rgba(44, 34, 30, 0.7) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.services-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(247, 200, 92, 0.92);
    color: var(--color-accent-primary);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.services-summary{
    background:var(--color-bg-secondary) ;
}

.services-hero h1 {
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 350px;
    }
    .services-hero h1 {
        font-size: 2.25rem;
    }
}

/* Services Introduction */
.services-intro {
    padding: 3rem 0 2rem;
    background: var(--color-bg-secondary);
}

.services-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Services Grid Section */
.services-grid-section {
    padding: 2rem 0 4rem;
    background: var(--color-bg-primary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-large {
    background: var(--color-bg-card);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

@media (hover: hover) and (pointer: fine) {
    .service-card-large:hover {
        transform: translateX(8px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        border-color: rgba(247, 200, 92, 0.35);
    }
}

.featured-service {
    background: linear-gradient(135deg, white, var(--color-bg-card, #f5f5d3));
    border-left: 3px solid var(--color-accent-secondary, #bb8954);
}

.service-card-inner {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
}

.service-card-header {
    flex-shrink: 0;
    position: relative;
}

.service-card-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
}

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

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(235, 227, 213, 0.86) 100%);
    border: 1px solid rgba(61, 107, 63, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
}

.service-card-icon .icon-accent {
    stroke: var(--color-accent-secondary);
}

.service-card-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--color-footer-bg, #33352c);
    color: var(--color-text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: monospace;
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--color-accent-primary);
}

.service-card-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-headings);
}

.service-description > *:last-child {
    margin-bottom: 0;
}

.service-description p + p {
    margin-top: 0.9rem;
}

@media (max-width: 640px) {
    .service-card-inner {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    .service-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .service-card-number {
        position: static;
    }
    .service-card-icon,
    .service-card-image {
        width: 60px;
        height: 60px;
    }
}

/* Why Choose Kanopi Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--color-bg-card);
}

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

.why-choose-text h2 {
    margin-bottom: 1rem;
}

.why-choose-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.why-choose-list li svg {
    color: var(--color-accent-secondary);
    flex-shrink: 0;
}

.why-choose-image {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-text-light, #798262), var(--color-footer-bg, #33352c));
}

.why-choose-image-inner {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><path d="M20,40 L80,40 L80,60 L20,60 Z" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="50" r="15" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-choose-image {
        height: 300px;
    }
}

/* Services CTA Section */
.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-footer-bg, #33352c), #1a1a16);
    text-align: center;
}

.services-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h2 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .services-hero {
        height: auto;
        min-height: 320px;
        padding: 4rem 0 3rem;
    }

    .services-hero-content {
        max-width: 38rem;
        margin: 0 auto;
    }

    .services-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .services-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .services-intro {
        padding: 2.5rem 0 1.75rem;
    }

    .services-intro-text {
        font-size: 1rem;
    }

    .services-grid-section,
    .why-choose-section,
    .services-cta {
        padding: 3.5rem 0;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card-large {
        border-radius: 18px;
    }

    .service-card-inner {
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .service-card-content h3 {
        font-size: 1.2rem;
    }

    .service-description,
    .service-card-content p {
        font-size: 0.98rem;
    }

    .why-choose-text h2,
    .services-cta h2 {
        font-size: clamp(1.9rem, 7vw, 2.3rem);
    }

    .services-cta-inner {
        padding-inline: 0.5rem;
    }

    .services-cta-buttons .btn,
    .services-cta-buttons .btn-outline-light {
        width: min(100%, 320px);
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .services-hero {
        min-height: 280px;
        padding: 3.4rem 0 2.4rem;
    }

    .services-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        padding: 0.2rem 0.8rem;
    }

    .services-hero h1 {
        font-size: clamp(1.9rem, 10vw, 2.35rem);
    }

    .services-hero-subtitle {
        font-size: 0.95rem;
    }

    .services-intro,
    .services-grid-section,
    .why-choose-section,
    .services-cta {
        padding: 2.75rem 0;
    }

    .service-card-inner {
        padding: 1.2rem;
    }

    .service-card-icon,
    .service-card-image {
        width: 64px;
        height: 64px;
    }

    .service-card-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-card-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .why-choose-image {
        height: 240px;
    }
}

/* ============================================
   SUSTAINABILITY PAGE - PREMIUM LAYOUT
   ============================================ */

/* Hero Section */
.sustainability-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.sustainability-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.sustainability-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(247, 200, 92, 0.92);
    color: var(--color-accent-primary);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.sustainability-hero h1 {
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.sustainability-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sustainability-hero {
        min-height: 350px;
    }
    .sustainability-hero h1 {
        font-size: 2.25rem;
    }
}

/* Introduction */
.sustainability-intro {
    padding: 4rem 0;
    background: var(--color-bg-primary);
}

.sustainability-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-accent-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Commitments Grid */
.sustainability-commitments {
    padding: 4rem 0;
    background: var(--color-bg-secondary);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--color-border-light, #f5f5d3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-footer-bg);
}

.commitment-card h3 {
    margin-bottom: 0.75rem;
}

.commitment-card p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .commitments-grid {
        grid-template-columns: 1fr;
    }
}

/* Practices Section */
.sustainability-practices {
    padding: 5rem 0;
    background: var(--color-bg-card);
}

.practices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.practice-item {
    margin-bottom: 2rem;
}

.practice-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-accent-secondary);
    font-size: 1.25rem;
}

.practice-item p {
    margin: 0;
    line-height: 1.6;
}

.practices-image {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-text-light, #798262), var(--color-5, #33352c));
}

.practices-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><path d="M20,40 L80,40 L80,60 L20,60 Z" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="50" r="15" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

@media (max-width: 768px) {
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .practices-image {
        height: 300px;
        order: -1;
    }
}

/* Standards Section */
.sustainability-standards {
    padding: 4rem 0;
    background: var(--color-bg-primary);
}

.standards-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.standards-card h3 {
    margin-bottom: 1.5rem;
}

.standards-card ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.standards-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.standards-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-secondary);
    font-weight: bold;
}

/* CTA Section */
.sustainability-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-footer-bg, #33352c), #1a1a16);
    text-align: center;
}

.sustainability-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.sustainability-cta h2 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.sustainability-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* ============================================
   LANDOWNER APPROACH PAGE - PREMIUM LAYOUT
   ============================================ */

/* Hero Section */
.landowner-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.landowner-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.landowner-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(247, 200, 92, 0.92);
    color: var(--color-accent-primary);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.landowner-hero h1 {
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.landowner-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .landowner-hero {
        min-height: 350px;
    }
    .landowner-hero h1 {
        font-size: 2.25rem;
    }
}

/* Introduction Section */
.landowner-intro {
    padding: 4rem 0;
    background: var(--color-bg-primary);
}

.landowner-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-accent-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.quote-block {
    background: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.quote-block svg {
    color: var(--color-accent-secondary);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.quote-block p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-accent-primary);
}

.quote-block span {
    font-size: 0.875rem;
    color: var(--color-border-focus);
}

@media (max-width: 768px) {
    .landowner-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Process Timeline */
.landowner-process {
    padding: 5rem 0;
    background: var(--color-bg-card);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent-secondary, #bb8954);
    color: var(--color-accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.timeline-line {
    width: 2px;
    background: var(--color-text-light, #798262);
    flex: 1;
    min-height: 60px;
    margin-top: 0.5rem;
}

.timeline-step:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    color: var(--color-accent-primary);
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .timeline-step {
        gap: 1rem;
    }
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-content h3 {
        font-size: 1.15rem;
    }
}

/* Differentiator Section */
.landowner-differentiator {
    padding: 5rem 0;
    background: var(--color-bg-primary);
}

.differentiator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.differentiator-content h2 {
    margin-bottom: 1rem;
}

.differentiator-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.differentiator-highlight {
    background: var(--color-bg-secondary);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    border-left: 3px solid var(--color-2, #bb8954);
}

.differentiator-highlight span {
    font-size: 1.5rem;
    color: var(--color-accent-secondary);
    font-weight: bold;
}

.differentiator-highlight p {
    margin: 0;
    font-weight: 500;
}

.differentiator-image {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-text-light, #798262), var(--color-footer-bg, #33352c));
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentiator-placeholder {
    text-align: center;
    color: var(--color-text-light);
}

.differentiator-placeholder svg {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.differentiator-placeholder span {
    display: block;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .differentiator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .differentiator-image {
        height: 300px;
        order: -1;
    }
}

/* CTA Section */
.landowner-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-footer-bg, #33352c), #1a1a16);
    text-align: center;
}

.landowner-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.landowner-cta h2 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.landowner-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.landowner-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE - PREMIUM LAYOUT
   ============================================ */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.contact-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(187, 137, 84, 0.9);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.contact-hero h1 {
    color: var(--color-text-light);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 280px;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* Contact Main */
.contact-main {
    padding: 4rem 0;
    background: var(--color-bg-primary);
}

.service-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--color-accent-primary);
    font-size: 0.875rem;
}

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

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

/* Contact Info Left */
.contact-info h2 {
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: var(--color-accent-hover);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: var(--color-accent-primary);
}

.contact-detail-text a,
.contact-detail-text p {
    color: var(--color-text-headings);
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: var(--color-accent-secondary);
}

.contact-map {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* Contact Form Right */
.contact-form-wrapper {
    background: var(--color-bg-secondary);
    border-radius: 24px;
    padding: 2rem;
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-accent-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-secondary);
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Trust Section */
.contact-trust {
    padding: 3rem 0 5rem;
    background: var(--color-bg-card);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-item svg {
    color: var(--color-accent-secondary);
    margin-bottom: 1rem;
}

.trust-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--color-accent-hover);
    margin: 0;
}

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

/* ============================================
   PROJECTS PAGE & CASE STUDIES
   ============================================ */

/* Projects Hero */
.projects-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.projects-preview{
    background: var(--color-bg-secondary);
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.projects-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--color-accent-secondary);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.projects-hero h1 {
    color: var(--color-text-light);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.projects-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Projects Intro */
.projects-intro {
    padding: 3rem 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.projects-intro-inner {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--color-accent-primary);
}

/* Projects Grid */
.projects-grid-section {
    padding: 2rem 0 4rem;
    background: var(--color-bg-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card-link {
    text-decoration: none;
    display: block;
}

.project-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
}

.project-card-image-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--color-text-light, #798262), var(--color-footer-bg, #33352c));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-border-focus);
}

.project-card-content {
    padding: 1.5rem;
}

.project-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-accent-secondary);
}

.project-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.project-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.project-card-content p {
    color: var(--color-text-headings);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-read-more {
    color: var(--color-accent-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.projects-empty {
    text-align: center;
    padding: 4rem;
    background: var(--color-bg-card, #f5f5d3);
    border-radius: 20px;
}

/* Projects CTA */
.projects-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-footer-bg, #33352c), #1a1a16);
    text-align: center;
}

.projects-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.projects-cta h2 {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.projects-cta p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   SINGLE CASE STUDY PAGE
   ============================================ */

.case-hero {
    position: relative;
    height: 50vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.case-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.case-back-link {
    display: inline-block;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    text-decoration: none;
}

.case-back-link:hover {
    color: var(--color-text-light);
}

.case-hero h1 {
    color: var(--color-text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.case-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.case-meta-item {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
}

/* Case Study Content */
.case-content {
    padding: 4rem 0;
    background: var(--color-bg-card);
}

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

.case-section {
    margin-bottom: 2.5rem;
}

.case-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-accent-primary);
}

.case-section-content {
    line-height: 1.7;
}

.results-section {
    background: var(--color-border-light);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
}

/* Sidebar */
.testimonial-card {
    background: var(--color-border-light);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.testimonial-card svg {
    color: var(--color-accent-secondary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 0.875rem;
    color: var(--color-border-focus);
    font-style: normal;
}

.case-cta-card {
    background: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.case-cta-card h4 {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.case-cta-card p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .case-hero {
        min-height: 350px;
    }
    .case-hero h1 {
        font-size: 1.75rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DOWNLOADS PAGE - PREMIUM STYLES
   ============================================ */

/* Hero Section */
.downloads-hero {
    position: relative;
    height: 40vh;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.downloads-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.downloads-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--color-accent-secondary, #C4A747);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.downloads-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.downloads-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .downloads-hero {
        min-height: 280px;
    }
    .downloads-hero h1 {
        font-size: 2rem;
    }
}

/* Introduction */
.downloads-intro {
    padding: 3rem 0;
    background: var(--color-bg-primary, #F5F0E8);
    text-align: center;
}

.downloads-intro-inner {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-primary, #1A2C1E);
}

/* Downloads Grid */
.downloads-grid-section {
    padding: 3rem 0 5rem;
    background: var(--color-bg-primary, #F5F0E8);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.download-card {
    background: var(--color-bg-card, #FFFFFF);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--color-border-light, #D9D0C1);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.download-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-bg-secondary, #EBE3D5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary, #3D6B3F);
}

.download-card-content {
    flex: 1;
}

.download-card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--color-text-headings, #1E3A24);
}

.download-card-content p {
    font-size: 0.875rem;
    color: var(--color-footer-bg);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.download-card-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.download-type,
.download-size {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--color-bg-secondary, #EBE3D5);
    color: var(--color-text-primary);
}

.download-link {
    color: var(--color-accent-primary, #3D6B3F);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}

.download-link:hover {
    color: var(--color-accent-hover, #2B4F2D);
}

.downloads-empty {
    text-align: center;
    padding: 4rem;
    background: var(--color-bg-card, #FFFFFF);
    border-radius: 16px;
    border: 1px solid var(--color-border-light, #D9D0C1);
    color: var(--color-text-light, #4A5B4E);
}

/* Downloads CTA */
.downloads-cta {
    padding: 4rem 0;
    background: var(--color-footer-bg, #1A2C1E);
    text-align: center;
}

.downloads-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.downloads-cta h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.downloads-cta p {
    color: var(--color-footer-text, #C8D4C3);
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    .download-card-icon {
        margin: 0 auto;
    }
}

/* ============================================
   FOOTER - PREMIUM STYLES
   ============================================ */

.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h4,
.footer-col h4 {
    color: var(--color-bg-secondary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-bg-secondary);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--color-accent-secondary);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-accent-secondary);
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--color-bg-secondary);
    text-decoration: none;
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-text-light);
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-accent-secondary);
}

.footer-legal .separator {
    color: var(--color-text-light);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   HAMBURGER MENU & RESPONSIVE NAV
   ============================================ */

/* Logo Branding */
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 132px;
    width: auto;
    height: auto;
    display: block;
    transition: max-height 0.3s ease;
}

.site-header.scrolled .site-logo img {
    max-height: 104px;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(116, 136, 115, 0.18);
    border-radius: 999px;
    cursor: pointer;
    padding: 0.75rem 1rem;
    min-height: 52px;
    position: relative;
    z-index: 1001;
    color: var(--color-accent-primary);
    box-shadow: 0 12px 30px rgba(51, 53, 44, 0.08);
    opacity: 1;
    visibility: visible;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(116, 136, 115, 0.35);
    transform: translateY(-1px);
}

body.menu-open .menu-toggle,
.menu-toggle.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-toggle .menu-icon {
    display: block;
    width: 20px;
    height: 14px;
    position: relative;
}

.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after,
.menu-toggle .menu-icon {
    border-top: 2px solid currentColor;
}

.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 2px solid currentColor;
}

.menu-toggle .menu-icon::before {
    top: 5px;
}

.menu-toggle .menu-icon::after {
    top: 10px;
}

.menu-toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

/* Main Navigation */
.main-nav {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
}

.main-nav.active {
    pointer-events: auto;
}

.nav-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(25, 29, 25, 0.38);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
}

.main-nav.active .nav-backdrop {
    opacity: 1;
}

.main-nav .nav-backdrop:hover,
.main-nav .nav-backdrop:focus-visible {
    background: rgba(25, 29, 25, 0.38);
}

.nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 192, 0.98) 100%),
        var(--color-bg-primary);
    box-shadow: -24px 0 48px rgba(27, 31, 27, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.main-nav.active .nav-drawer {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(116, 136, 115, 0.14);
}

.nav-drawer-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-secondary);
}

.nav-drawer-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-accent-primary);
}

.nav-close {
    border: 0;
    background: rgba(116, 136, 115, 0.08);
    color: var(--color-accent-primary);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-close:hover {
    background: rgba(116, 136, 115, 0.16);
    transform: rotate(90deg);
}

.nav-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.5rem;
}

.main-nav .primary-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.4rem;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.main-nav .primary-menu > li > a {
    color: var(--color-accent-primary);
    font-weight: 500;
    font-size: 1.05rem;
    display: grid;
    grid-template-columns: 4px minmax(0, 1fr);
    align-items: center;
    column-gap: 0.12rem;
    padding: 0.95rem 1rem;
    position: relative;
    border-radius: 14px;
    transition: color 0.3s ease, background 0.3s ease;
}

.main-nav .primary-menu > li > a::before {
    content: '';
    width: 4px;
    min-height: 1.15rem;
    background: var(--color-accent-secondary);
    border-radius: 999px;
    align-self: stretch;
    opacity: 0;
    transform: scaleY(0.2);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav .primary-menu > li > a:hover::before,
.main-nav .primary-menu > li.current-menu-item > a::before,
.main-nav .primary-menu > li.current_page_item > a::before,
.main-nav .primary-menu > li.current_page_parent > a::before {
    opacity: 1;
    transform: scaleY(1);
}

.main-nav .primary-menu > li > a:hover,
.main-nav .primary-menu > li.current-menu-item > a,
.main-nav .primary-menu > li.current_page_item > a,
.main-nav .primary-menu > li.current_page_parent > a {
    color: var(--color-accent-secondary);
    background: rgba(116, 136, 115, 0.08);
}

@media (max-width: 768px) {
    body {
        padding-top: 104px;
    }

    .site-header {
        padding: 0.95rem 0;
    }

    .front-page-shell {
        background-attachment: scroll;
        background-position: center 20%;
        padding-bottom: 0.75rem;
    }

    .front-page-shell > section:not(.hero) {
        margin-inline: 0.75rem;
        margin-bottom: 0.85rem;
        border-radius: 20px;
        padding: 3rem 0;
    }

    .front-page-shell > section:not(.hero) .container {
        padding-inline: 1.35rem;
    }

    .front-page-shell .hero {
        min-height: clamp(420px, 68vh, 560px);
        padding: 4.5rem 0 3rem;
    }

    .front-page-shell .hero h1 {
        font-size: clamp(2.3rem, 8vw, 3.1rem);
        max-width: 10ch;
        margin-inline: auto;
    }

    .front-page-shell .hero p {
        font-size: 1.05rem;
        max-width: 32rem;
        margin-bottom: 1.6rem;
    }

    .front-page-shell .hero .btn,
    .front-page-shell .cta-section .btn-large {
        width: min(100%, 320px);
        text-align: center;
        padding-inline: 1.4rem;
    }

    .front-page-shell .section-title {
        margin-bottom: 2rem;
    }

    .front-page-shell .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .front-page-shell .grid-2,
    .front-page-shell .grid-3 {
        gap: 1.25rem;
    }

    .front-page-shell .value-card,
    .front-page-shell .transparency-card {
        padding: 1.5rem;
    }

    .front-page-shell .service-image,
    .front-page-shell .service-image-placeholder,
    .front-page-shell .project-image,
    .front-page-shell .project-image-placeholder {
        height: clamp(180px, 54vw, 220px);
    }

    .front-page-shell .service-card h3,
    .front-page-shell .service-card p {
        padding-inline: 1.25rem;
    }

    .front-page-shell .services-summary .service-card .btn,
    .front-page-shell .service-card .btn-outline {
        margin: auto 1.25rem 1.25rem;
    }

    .front-page-shell .project-content {
        padding: 1.25rem;
    }

    .front-page-shell .process-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .front-page-shell .process-step {
        width: 100%;
        max-width: none;
    }

    .front-page-shell .sustainability-grid {
        gap: 1.25rem;
    }

    .front-page-shell .sustainability-image {
        height: 220px;
    }

    .header-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-logo img {
        max-height: 88px;
    }

    .menu-toggle {
        margin-left: auto;
        flex-shrink: 0;
        padding: 0.65rem 0.9rem;
        min-height: 48px;
    }

    .menu-toggle-label {
        font-size: 0.85rem;
    }

    .nav-drawer {
        width: min(360px, 100vw);
        height: 100dvh;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 1rem;
    }

    body {
        padding-top: 94px;
    }

    .site-header {
        padding: 0.8rem 0;
    }

    .front-page-shell {
        padding-bottom: 0.5rem;
    }

    .front-page-shell > section:not(.hero) {
        margin-inline: 0.5rem;
        margin-bottom: 0.7rem;
        border-radius: 18px;
        padding: 2.5rem 0;
    }

    .front-page-shell > section:not(.hero) .container {
        padding-inline: 1rem;
    }

    .front-page-shell .hero {
        min-height: auto;
        padding: 3.75rem 0 2.5rem;
    }

    .front-page-shell .hero h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

    .front-page-shell .hero p {
        font-size: 0.98rem;
        margin-bottom: 1.4rem;
    }

    .front-page-shell .section-title {
        margin-bottom: 1.6rem;
    }

    .front-page-shell .value-card,
    .front-page-shell .transparency-card {
        padding: 1.25rem;
    }

    .front-page-shell .service-card h3,
    .front-page-shell .service-card p,
    .front-page-shell .project-content {
        padding-inline: 1rem;
    }

    .front-page-shell .services-summary .service-card .btn,
    .front-page-shell .service-card .btn-outline {
        margin: auto 1rem 1rem;
    }

    .front-page-shell .sustainability-image {
        height: 190px;
    }

    .menu-toggle {
        gap: 0.6rem;
        padding: 0.65rem 0.8rem;
    }

    .menu-toggle-label {
        display: none;
    }

    .site-logo img {
        max-height: 76px;
    }

    .nav-drawer {
        width: 100vw;
    }

    .nav-drawer-header {
        padding: max(1.1rem, env(safe-area-inset-top)) 1rem 0.9rem;
    }

    .nav-drawer-body {
        padding: 0.9rem 0.9rem calc(1.25rem + env(safe-area-inset-bottom));
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Intersection Observer Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* Image Float Up Animation */
.scroll-float-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-float-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for multiple elements */
.scroll-fade-in[data-delay="1"] {
    transition-delay: 0.1s;
}

.scroll-fade-in[data-delay="2"] {
    transition-delay: 0.2s;
}

.scroll-fade-in[data-delay="3"] {
    transition-delay: 0.3s;
}

.scroll-fade-in[data-delay="4"] {
    transition-delay: 0.4s;
}

.scroll-fade-in[data-delay="5"] {
    transition-delay: 0.5s;
}

/* Service cards and images with animation */
.service-card img,
.project-image,
.team-photo,
.difference-image,
.practices-image {
    animation: none;
}

.service-card img.scroll-float-up,
.project-image.scroll-float-up,
.team-photo.scroll-float-up,
.difference-image.scroll-float-up,
.practices-image.scroll-float-up {
    opacity: 0;
    transform: translateY(40px);
}

.service-card img.scroll-float-up.visible,
.project-image.scroll-float-up.visible,
.team-photo.scroll-float-up.visible,
.difference-image.scroll-float-up.visible,
.practices-image.scroll-float-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ============================================
   Extras
   ============================================ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.373) 0%, rgba(21, 45, 22, 0.471) 100%);
}