/* Copy the full content of src/app/globals.css here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f5f0e6;
    --text-color: #2d4a3e;
    --text-muted: rgba(45, 74, 62, 0.7);
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-border: rgba(45, 74, 62, 0.2);
    --nav-link: rgba(45, 74, 62, 0.8);
    --mobile-menu-bg: rgba(255, 255, 255, 0.95);

    /* Additional variables for blog and locations pages */
    --bg-primary: #f5f0e6;
    --bg-hero: linear-gradient(135deg, #f5f0e6 0%, #e8dcc5 100%);
    --text-secondary: rgba(45, 74, 62, 0.7);
    --accent-primary: #2d4a3e;
    --accent-glow: rgba(45, 74, 62, 0.1);

    /* Spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --max-width: 1200px;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
}

[data-theme="dark"] {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --nav-bg: rgba(20, 20, 20, 0.85);
    --nav-border: rgba(255, 255, 255, 0.1);
    --nav-link: rgba(255, 255, 255, 0.8);
    --mobile-menu-bg: rgba(10, 10, 10, 0.95);

    /* Dark theme versions */
    --bg-primary: #0a0a0a;
    --bg-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-primary: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .navbar {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
    line-height: 0;
}

.nav-logo img {
    height: 80px;
    width: auto;
    filter: none;
    transition: filter 0.3s ease;
}

[data-theme="dark"] .nav-logo img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-link {
    color: var(--nav-link);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--nav-link);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--text-color);
}

.theme-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.theme-icon.moon {
    display: none;
}

.theme-icon.sun {
    display: inline;
}

[data-theme="dark"] .theme-icon.moon {
    display: inline;
}

[data-theme="dark"] .theme-icon.sun {
    display: none;
}

/* Main Content */
.content {
    padding-top: 150px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    --tree-height: 200px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Hook Section */
.hook-section {
    margin-top: 4rem;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

[data-theme="dark"] .hook-section {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hook-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hook-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Pine Trees Container */
.pine-trees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--tree-height);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    z-index: 1;
}

.pine-trees .sun {
    position: absolute;
    bottom: 110px;
    left: 50%;
    width: 80px;
    height: 80px;
    background: #f6cf3e;
    border-radius: 50%;
    transform: translateX(calc(-50% - 50px));
    z-index: 0;
}

[data-theme="dark"] .pine-trees .sun {
    background: #f4f1e4;
    box-shadow: inset -10px -6px 0 0 #cfc7b1;
}

/* Base Tree Style */
.tree {
    position: relative;
    width: 80px;
}

.tree::before,
.tree::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Tree trunk */
.tree::after {
    width: 12px;
    height: 25px;
    background: linear-gradient(90deg, #4a3728, #5d4632, #4a3728);
    bottom: 0;
}

/* Tree foliage - using clip-path for pine tree shape */
.tree::before {
    width: 70px;
    height: 140px;
    background: linear-gradient(180deg, #1a472a 0%, #2d5a3f 50%, #1e4d31 100%);
    clip-path: polygon(
        50% 0%,
        15% 35%, 30% 35%,
        5% 60%, 25% 60%,
        0% 85%, 20% 85%,
        10% 100%, 90% 100%,
        80% 85%, 100% 85%,
        75% 60%, 95% 60%,
        70% 35%, 85% 35%
    );
    bottom: 20px;
}

[data-theme="dark"] .tree::before {
    background: linear-gradient(180deg, #0d2818 0%, #1a3d2a 50%, #0f2e1c 100%);
}

/* Individual tree variations */
.tree-1 {
    transform: scale(0.7);
    margin-right: -20px;
    z-index: 1;
}

.tree-2 {
    transform: scale(1.1);
    z-index: 3;
}

.tree-3 {
    transform: scale(0.8);
    margin-left: -15px;
    z-index: 2;
}

.tree-4 {
    transform: scale(1.3);
    z-index: 4;
}

.tree-5 {
    transform: scale(0.75);
    margin-left: -10px;
    z-index: 2;
}

.tree-6 {
    transform: scale(1.05);
    z-index: 3;
}

.tree-7 {
    transform: scale(0.65);
    margin-left: -15px;
    z-index: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hero {
        --tree-height: 150px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 132px;
        flex-direction: column;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--nav-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hook-section {
        padding: 2rem 1.5rem;
    }

    .hook-section h2 {
        font-size: 1.6rem;
    }

    .hook-section p {
        font-size: 1rem;
    }

    .pine-trees {
        height: var(--tree-height);
    }

    .pine-trees .sun {
        bottom: 80px;
        width: 60px;
        height: 60px;
        transform: translateX(calc(-50% - 50px));
    }

    .tree::before {
        width: 50px;
        height: 100px;
    }

    .tree::after {
        width: 8px;
        height: 18px;
    }
}

/* Location Hero */
.location-hero {
    position: relative;
    --tree-height: 200px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: calc(var(--tree-height) + 2rem);
}

.location-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.location-hero .subheadline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.location-hero .intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Services Section */
.services-section {
    margin-top: 4rem;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .service-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
}

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

[data-theme="dark"] .service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(45, 74, 62, 0.1), rgba(45, 74, 62, 0.05));
    text-align: center;
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

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

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Location page mobile styles */
@media screen and (max-width: 768px) {
    .location-hero {
        --tree-height: 150px;
    }

    .location-hero h1 {
        font-size: 2rem;
    }

    .location-hero .subheadline {
        font-size: 1.1rem;
    }

    .location-hero .intro {
        font-size: 1rem;
    }

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

    .cta-section {
        padding: 2rem 1.5rem;
    }
}

/* Problem → Solution Section */
.problem-solution-section {
    margin-top: 4rem;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .problem-solution-section {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.problem-solution-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(245, 240, 230, 0.8);
    border: 1px solid rgba(45, 74, 62, 0.15);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .problem-solution-item {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.problem-solution-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(45, 74, 62, 0.2);
}

[data-theme="dark"] .problem-solution-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-solution-item .problem {
    color: var(--text-muted);
    flex-shrink: 0;
    text-decoration: line-through;
    text-decoration-color: rgba(45, 74, 62, 0.3);
}

[data-theme="dark"] .problem-solution-item .problem {
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.problem-solution-item .arrow {
    color: #2d5a3f;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

[data-theme="dark"] .problem-solution-item .arrow {
    color: #6ee7a0;
}

.problem-solution-item .solution {
    font-weight: 600;
    color: var(--text-color);
}

.cta-link {
    display: block;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem;
    transition: opacity 0.2s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .problem-solution-section {
        padding: 2rem 1.5rem;
    }

    .problem-solution-item {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .problem-solution-item .problem {
        width: 100%;
        font-size: 0.95rem;
    }

    .problem-solution-item .arrow {
        display: none;
    }

    .problem-solution-item .solution {
        width: 100%;
        padding-left: 1rem;
        border-left: 3px solid #2d5a3f;
        font-size: 0.95rem;
    }

    [data-theme="dark"] .problem-solution-item .solution {
        border-left-color: #6ee7a0;
    }
}

/* Services Overview Section */
.services-overview {
    margin-top: 4rem;
}

.services-overview h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-overview-card {
    padding: 1.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .service-overview-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
}

.service-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .service-overview-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.service-overview-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-overview-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.learn-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d5a3f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .learn-more-link {
    color: #6ee7a0;
}

.learn-more-link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Proof Section */
.social-proof {
    margin-top: 4rem;
}

.social-proof h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.testimonial-card {
    padding: 1.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[data-theme="dark"] .testimonial-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-result {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d5a3f;
    background: rgba(45, 90, 63, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

[data-theme="dark"] .testimonial-result {
    color: #6ee7a0;
    background: rgba(110, 231, 160, 0.15);
}

/* Featured Project */
.featured-project {
    padding: 2rem;
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.08), rgba(45, 74, 62, 0.02));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.featured-project-image {
    flex-shrink: 0;
}

.project-screenshot {
    border-radius: 12px;
    border: 1px solid var(--nav-border);
    object-fit: cover;
}

[data-theme="dark"] .featured-project {
    background: linear-gradient(135deg, rgba(110, 231, 160, 0.08), rgba(110, 231, 160, 0.02));
}

.featured-project-content {
    flex: 1;
}

.featured-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2d5a3f;
}

[data-theme="dark"] .featured-label {
    color: #6ee7a0;
}

.featured-project h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.featured-project p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.featured-result {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.featured-project-link {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.featured-project-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

    .featured-project {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .featured-project-image {
        width: 100%;
    }

    .project-screenshot {
        width: 100%;
        height: auto;
    }

    .featured-project-link {
        width: 100%;
        text-align: center;
    }
}

/* About Teaser Section */
.about-teaser {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .about-teaser {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.about-teaser-image {
    flex-shrink: 0;
}

.headshot {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--nav-border);
}

.about-teaser-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-teaser-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-link {
    font-weight: 600;
    color: #2d5a3f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .about-link {
    color: #6ee7a0;
}

.about-link:hover {
    opacity: 0.7;
}

/* Content Teaser Section */
.content-teaser {
    margin-top: 4rem;
}

.content-teaser h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.content-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .content-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .content-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.content-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2d5a3f;
    background: rgba(45, 90, 63, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

[data-theme="dark"] .content-tag {
    color: #6ee7a0;
    background: rgba(110, 231, 160, 0.15);
}

.content-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.content-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Band */
.cta-band {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band p {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

.cta-band-button {
    padding: 0.75rem 1.75rem;
    background: var(--bg-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-band-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .about-teaser {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .headshot {
        width: 120px;
        height: 120px;
    }

    .content-teaser-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cta-band-button {
        width: 100%;
        text-align: center;
    }
}

/* Contact Page */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.contact-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color) 0%, #2d5a3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .contact-hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #6ee7a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    justify-content: center;
}

.contact-details .contact-info-cards {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-details .contact-info-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

/* Contact Form */
.contact-form-container {
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-form-container {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.98), rgba(20, 20, 20, 0.95));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--nav-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3f;
    box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #6ee7a0;
    box-shadow: 0 0 0 3px rgba(110, 231, 160, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2d5a3f 0%, #1a472a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    margin-top: 0.5rem;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 63, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

[data-theme="dark"] .submit-button {
    background: linear-gradient(135deg, #6ee7a0 0%, #4ade80 100%);
    color: #0a0a0a;
}

[data-theme="dark"] .submit-button:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(110, 231, 160, 0.3);
}

.success-message {
    text-align: center;
    color: #2d5a3f;
    font-weight: 500;
    margin-top: 0.5rem;
}

[data-theme="dark"] .success-message {
    color: #6ee7a0;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .contact-info-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
}

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

[data-theme="dark"] .contact-info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(45, 90, 63, 0.15), rgba(45, 90, 63, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
    color: #2d5a3f;
}

[data-theme="dark"] .contact-icon {
    background: linear-gradient(135deg, rgba(110, 231, 160, 0.2), rgba(110, 231, 160, 0.05));
    color: #6ee7a0;
}

.contact-info-content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.contact-info-content a,
.contact-info-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.contact-info-content a:hover {
    color: #2d5a3f;
}

[data-theme="dark"] .contact-info-content a:hover {
    color: #6ee7a0;
}

.location-note {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    margin-top: 0.25rem !important;
}

.availability-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(45, 90, 63, 0.12), rgba(45, 90, 63, 0.04));
    border: 1px solid rgba(45, 90, 63, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: #2d5a3f;
    margin-top: 0.5rem;
}

[data-theme="dark"] .availability-banner {
    background: linear-gradient(135deg, rgba(110, 231, 160, 0.15), rgba(110, 231, 160, 0.05));
    border-color: rgba(110, 231, 160, 0.3);
    color: #6ee7a0;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

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

    .contact-subtitle {
        font-size: 1.05rem;
    }

    .contact-details .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-details .contact-info-card {
        width: 100%;
        max-width: none;
    }

    .contact-info-card {
        padding: 1rem 1.25rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Blog Page */
.blog-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.blog-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.blog-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Tag Filter */
.tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.tag-btn {
    background: transparent;
    border: 1px solid var(--nav-border);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-theme="dark"] .tag-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

.tag-btn:hover {
    border-color: #2d5a3f;
    color: #2d5a3f;
    background: rgba(45, 90, 63, 0.05);
}

[data-theme="dark"] .tag-btn:hover {
    border-color: #6ee7a0;
    color: #6ee7a0;
    background: rgba(110, 231, 160, 0.1);
}

.tag-btn.active {
    background: #2d5a3f;
    border-color: #2d5a3f;
    color: white;
}

[data-theme="dark"] .tag-btn.active {
    background: #6ee7a0;
    border-color: #6ee7a0;
    color: #0a0a0a;
}

/* Blog Grid & Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .blog-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--text-muted);
}

[data-theme="dark"] .blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2d5a3f;
    background: rgba(45, 90, 63, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

[data-theme="dark"] .blog-tag {
    color: #6ee7a0;
    background: rgba(110, 231, 160, 0.15);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.blog-card:hover h2 {
    color: #2d5a3f;
}

[data-theme="dark"] .blog-card:hover h2 {
    color: #6ee7a0;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d5a3f;
    transition: gap 0.2s ease;
}

[data-theme="dark"] .read-more {
    color: #6ee7a0;
}

.blog-card:hover .read-more {
    gap: 0.75rem;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .newsletter-cta {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2d5a3f;
    box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.15);
}

[data-theme="dark"] .newsletter-form input:focus {
    border-color: #6ee7a0;
    box-shadow: 0 0 0 3px rgba(110, 231, 160, 0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #2d5a3f;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .newsletter-form button {
    background: #6ee7a0;
    color: #0a0a0a;
}

.newsletter-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Blog Post Page */
.blog-post {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

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

.blog-post-header .content-tag {
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-post-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post-content h1 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content a {
    color: #2d5a3f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

[data-theme="dark"] .blog-post-content a {
    color: #6ee7a0;
}

.blog-post-content a:hover {
    opacity: 0.8;
}

.blog-post-content strong {
    font-weight: 600;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-post-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--nav-border);
}

.blog-post-content tr:first-child td {
    font-weight: 600;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(245, 240, 230, 0.3));
}

[data-theme="dark"] .blog-post-content tr:first-child td {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nav-border);
}

.blog-cta {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .blog-cta {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.related-posts {
    margin-bottom: 2rem;
}

.related-posts h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.related-posts li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.related-posts li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.related-posts a {
    color: #2d5a3f;
    text-decoration: none;
    font-weight: 600;
}

.related-posts a:hover {
    text-decoration: underline;
}

[data-theme="dark"] .related-posts a {
    color: #8cc5a0;
}

@media screen and (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-header h1 {
        font-size: 1.75rem;
    }

    .blog-post-description {
        font-size: 1.05rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-cta {
        padding: 2rem 1.5rem;
    }
}

/* Services Page */
.services-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 6rem 1rem 3rem;
    background: transparent;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color) 0%, #2d5a3f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .services-hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #6ee7a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-list .service-card {
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .services-list .service-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.services-list .service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.services-list .service-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #2d5a3f;
    border-radius: 50%;
}

[data-theme="dark"] .service-features li::before {
    background: #6ee7a0;
}

.service-link {
    display: inline-block;
    font-weight: 600;
    color: #2d5a3f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .service-link {
    color: #6ee7a0;
}

.service-link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1.05rem;
    }

    .services-list .service-card {
        padding: 1.75rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Projects Page */
.projects-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.projects-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.projects-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.projects-section {
    margin-top: 3rem;
}

.projects-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    padding: 2rem;
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .project-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

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

[data-theme="dark"] .project-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

.project-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #2d5a3f;
    background: rgba(45, 90, 63, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

[data-theme="dark"] .project-tag {
    color: #6ee7a0;
    background: rgba(110, 231, 160, 0.15);
}

.project-link {
    display: inline-block;
    font-weight: 600;
    color: #2d5a3f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .project-link {
    color: #6ee7a0;
}

.project-link:hover {
    opacity: 0.7;
}

.coming-soon {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    text-align: center;
    border: 1px dashed var(--nav-border);
    border-radius: 16px;
}

@media screen and (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2rem;
    }

    .projects-hero p {
        font-size: 1.05rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

/* About Page */
.about-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.about-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.about-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .about-section {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-me-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-me-image .headshot {
    width: 450px;
    height: 450px;
    border-radius: 16px;
    object-fit: cover;
}

.about-me-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.about-me-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #2d5a3f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .about-cta {
    color: #6ee7a0;
}

.about-cta:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    .about-section {
        padding: 1.75rem;
    }

    .about-me-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-me-image {
        display: flex;
        justify-content: center;
    }

    .about-me-image .headshot {
        width: 200px;
        height: 200px;
    }
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 90, 63, 0.03) 100%);
    border-top: 1px solid var(--nav-border);
}

[data-theme="dark"] .footer {
    background: linear-gradient(180deg, transparent 0%, rgba(110, 231, 160, 0.02) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--nav-border);
}

.footer-brand h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.footer-brand > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(45, 90, 63, 0.08);
    color: #2d5a3f;
    transition: all 0.2s ease;
}

[data-theme="dark"] .footer-social a {
    background: rgba(110, 231, 160, 0.1);
    color: #6ee7a0;
}

.footer-social a:hover {
    background: #2d5a3f;
    color: white;
    transform: translateY(-2px);
}

[data-theme="dark"] .footer-social a:hover {
    background: #6ee7a0;
    color: #0a0a0a;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-column li,
.footer-column a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #2d5a3f;
}

[data-theme="dark"] .footer-column a:hover {
    color: #6ee7a0;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-location {
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .footer {
        margin-top: 3rem;
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-brand > p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column ul {
        gap: 0.5rem;
    }
}

/* ============================================
   LOCATION PAGE STYLES (Migrated from locations.css)
   ============================================ */

/* Locations Index Page */
.locations-index {
    margin-top: 4rem;
}

.locations-index h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.locations-index-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.location-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

[data-theme="dark"] .location-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--text-muted);
}

[data-theme="dark"] .location-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: var(--text-muted);
}

.location-card-county {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.location-card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.location-card:hover .location-card-name {
    color: #2d5a3f;
}

[data-theme="dark"] .location-card:hover .location-card-name {
    color: #6ee7a0;
}

.location-card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}

.location-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d5a3f;
    transition: gap 0.2s ease;
}

[data-theme="dark"] .location-card-link {
    color: #6ee7a0;
}

.location-card:hover .location-card-link {
    gap: 0.75rem;
}

/* Service Area Map Section */
.service-area-map {
    margin-top: 4rem;
    padding: 2.5rem;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .service-area-map {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.9));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.service-area-map h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.map-container {
    background: rgba(45, 90, 63, 0.05);
    border-radius: 16px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--nav-border);
}

[data-theme="dark"] .map-container {
    background: rgba(110, 231, 160, 0.05);
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

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

    .service-area-map {
        padding: 1.5rem;
    }
}