:root {
    --soil-black: #1a1a18;
    --forest-deep: #1e2d24;
    --moss-green: #4a6741;
    --leaf-bright: #7dad71;
    --earth-brown: #8b6f47;
    --clay-tan: #c9a66b;
    --morning-mist: #f5f3ef;
    --soft-cream: #faf9f6;
    --water-blue: #5a8f9b;
    --sunset-gold: #d4a853;
    --root-red: #a65d4c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--soft-cream);
    color: var(--soil-black);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Organic texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--soft-cream) 0%, transparent 100%);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.36rem;
    font-weight: 700;
    color: var(--forest-deep);
    text-decoration: none;
}

.logo span {
    color: var(--moss-green);
}

.nav-links {
    display: flex;
    flex: 1;
    align-items: center;
}

.nav-links-center {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--soil-black);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--moss-green);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-btn):hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--forest-deep);
    color: var(--soft-cream) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--moss-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 103, 65, 0.3);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest-deep);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 8% 4rem;
    position: relative;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--morning-mist) 50%, #e8e4db 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(125, 173, 113, 0.08) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--moss-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--moss-green);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 em {
    font-style: italic;
    color: var(--moss-green);
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--earth-brown);
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest-deep);
    color: var(--soft-cream);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--forest-deep);
}

.btn-primary:hover {
    background: var(--moss-green);
    border-color: var(--moss-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 103, 65, 0.25);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--forest-deep);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--earth-brown);
}

.btn-secondary:hover {
    background: var(--earth-brown);
    color: var(--soft-cream);
}

/* Hero Image Banner */
.hero-image-banner {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: -2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(250, 249, 246, 0.9), transparent);
    pointer-events: none;
}

/* Trust badges */
.trust-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    animation: fadeSlideUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.trust-bar p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-logos span {
    font-family: 'Fraunces', serif;
    font-size: 0.9rem;
    color: var(--soil-black);
    font-weight: 500;
}

/* ==================== */
/* PROBLEM SECTION */
/* ==================== */
.problem-section {
    padding: 8rem 8%;
    background: var(--forest-deep);
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.problem-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problem-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.problem-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--moss-green), var(--leaf-bright));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--soft-cream);
}

.problem-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clay-tan);
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--soft-cream);
}

.problem-card p {
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.7;
}

/* ==================== */
/* GUIDE SECTION */
/* ==================== */
.guide-section {
    padding: 8rem 8%;
    background: var(--soft-cream);
    position: relative;
}

.guide-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-image {
    position: relative;
}

.guide-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--moss-green), var(--forest-deep));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.guide-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: cover;
}

.guide-credentials {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--soft-cream);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.guide-credentials h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth-brown);
    margin-bottom: 0.75rem;
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-list span {
    font-size: 0.85rem;
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential-list span::before {
    content: '\2713';
    color: var(--moss-green);
    font-weight: bold;
}

.guide-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.guide-content h2 span {
    color: var(--moss-green);
}

.empathy-statement {
    font-size: 1.2rem;
    color: var(--earth-brown);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--moss-green);
}

.guide-content p {
    font-size: 1.05rem;
    color: var(--soil-black);
    margin-bottom: 1.5rem;
}

.authority-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.authority-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--morning-mist);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
}

.authority-badge svg {
    width: 24px;
    height: 24px;
    color: var(--moss-green);
}

.authority-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-deep);
}

/* ==================== */
/* PLAN SECTION */
/* ==================== */
.plan-section {
    padding: 8rem 8%;
    background: linear-gradient(180deg, var(--morning-mist) 0%, var(--soft-cream) 100%);
}

.plan-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.plan-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.plan-header p {
    font-size: 1.15rem;
    color: var(--earth-brown);
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.plan-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--moss-green), var(--leaf-bright), var(--sunset-gold));
    z-index: 0;
}

.step-card {
    background: var(--soft-cream);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--moss-green), var(--forest-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-cream);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(74, 103, 65, 0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--earth-brown);
    line-height: 1.7;
}

/* ==================== */
/* SUCCESS/FAILURE */
/* ==================== */
.transformation-section {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.failure-card, .success-card {
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.failure-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    color: var(--soft-cream);
}

.failure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--root-red);
}

.success-card {
    background: linear-gradient(145deg, var(--moss-green), var(--forest-deep));
    color: var(--soft-cream);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sunset-gold);
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.failure-card h3, .success-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.stakes-list {
    list-style: none;
}

.stakes-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.stakes-list li::before {
    content: '\2715';
    color: var(--root-red);
    font-weight: bold;
    flex-shrink: 0;
}

.success-card .stakes-list li::before {
    content: '\2713';
    color: var(--sunset-gold);
}

/* ==================== */
/* BNG SECTION */
/* ==================== */
.bng-section {
    padding: 8rem 8%;
    background: linear-gradient(145deg, var(--water-blue), #3d6b75);
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.bng-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,100 Q75,50 100,100 T150,100' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='2'/%3E%3Cpath d='M50,120 Q75,70 100,120 T150,120' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='2'/%3E%3Cpath d='M50,140 Q75,90 100,140 T150,140' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.5;
}

.bng-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bng-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.bng-content h2 span {
    color: var(--sunset-gold);
}

.bng-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.bng-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.bng-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.bng-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.bng-stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sunset-gold);
    display: block;
}

.bng-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.bng-features {
    background: rgba(0,0,0,0.2);
    border-radius: 24px;
    padding: 2.5rem;
}

.bng-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--sunset-gold);
}

.bng-feature-list {
    list-style: none;
}

.bng-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bng-feature-list li::before {
    content: '\2713';
    color: var(--sunset-gold);
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bng-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sunset-gold);
    color: var(--soil-black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.bng-cta:hover {
    background: var(--clay-tan);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 83, 0.3);
}

.bng-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.bng-cta:hover svg {
    transform: translateX(4px);
}

/* BNG Opportunity Cards */
.bng-opportunities {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bng-opportunities h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.bng-opp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bng-opp-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bng-opp-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.bng-opp-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bng-opp-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==================== */
/* SERVICES SECTION */
/* ==================== */
.services-section {
    padding: 8rem 8%;
    background: var(--morning-mist);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--soft-cream);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--moss-green);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--moss-green), var(--leaf-bright));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--soft-cream);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    background: var(--morning-mist);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--forest-deep);
}

a.service-card-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a.service-card-link:hover {
    border-color: var(--moss-green);
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-section {
    padding: 8rem 8%;
    background: linear-gradient(145deg, var(--forest-deep), var(--soil-black));
    color: var(--soft-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(125, 173, 113, 0.1) 0%, transparent 50%);
    animation: cta-glow 10s ease-in-out infinite alternate;
}

@keyframes cta-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, -10%); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

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

.cta-primary {
    background: var(--sunset-gold);
    color: var(--soil-black);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary:hover {
    background: var(--clay-tan);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.3);
}

.cta-transitional {
    background: transparent;
    color: var(--soft-cream);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-transitional:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ==================== */
/* TESTIMONIAL */
/* ==================== */
.testimonial-section {
    padding: 6rem 8%;
    background: var(--soft-cream);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--forest-deep);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--moss-green);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--soil-black);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--earth-brown);
}

/* ==================== */
/* FOOTER */
/* ==================== */
footer {
    padding: 4rem 8% 2rem;
    background: var(--soil-black);
    color: var(--soft-cream);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--clay-tan);
}

.footer-links a {
    display: block;
    color: var(--soft-cream);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

/* ==================== */
/* EOV PAGE */
/* ==================== */
.eov-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 8% 6rem;
    position: relative;
    background: linear-gradient(145deg, var(--forest-deep), #2a4a36);
    color: var(--soft-cream);
    overflow: hidden;
}

.eov-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(125, 173, 113, 0.15) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

.eov-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.eov-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.eov-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 168, 83, 0.2);
    color: var(--sunset-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.3);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.eov-hero-badge svg {
    color: var(--sunset-gold);
}

.eov-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.eov-hero h1 em {
    font-style: italic;
    color: var(--leaf-bright);
}

.eov-hero-subhead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.eov-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.eov-hero .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--soft-cream);
}

.eov-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--soft-cream);
}

/* What is EOV */
.eov-what {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.eov-what-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.eov-what-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.eov-what-content p {
    font-size: 1.05rem;
    color: var(--soil-black);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.eov-what-content strong {
    color: var(--forest-deep);
}

.eov-outcome-focus {
    background: var(--morning-mist);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.eov-outcome-focus h3 {
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.eov-outcome-focus > p {
    font-size: 0.95rem;
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.eov-outcome-arrow {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.eov-outcome-from,
.eov-outcome-to {
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    font-size: 0.9rem;
    color: var(--earth-brown);
    line-height: 1.5;
    flex: 1;
}

.eov-outcome-from {
    background: rgba(166, 93, 76, 0.1);
    border: 1px solid rgba(166, 93, 76, 0.2);
}

.eov-outcome-to {
    background: rgba(74, 103, 65, 0.15);
    border: 1px solid rgba(74, 103, 65, 0.25);
}

.eov-outcome-from span,
.eov-outcome-to span {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.eov-outcome-from span {
    color: var(--root-red);
}

.eov-outcome-to span {
    color: var(--moss-green);
}

.eov-outcome-arrow > svg {
    color: var(--moss-green);
    flex-shrink: 0;
}

/* EOV Indicators */
.eov-indicators {
    padding: 8rem 8%;
    background: var(--forest-deep);
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.eov-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.eov-indicators-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.eov-indicators-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.eov-indicators-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.8;
}

.eov-indicators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eov-indicator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.eov-indicator-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.eov-indicator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--moss-green), var(--leaf-bright));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--soft-cream);
}

.eov-indicator-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--soft-cream);
}

.eov-indicator-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.eov-indicator-metrics {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.eov-indicator-metrics li {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--clay-tan);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* EOV Indicator spectrum labels */
.eov-indicator-spectrum {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    color: var(--clay-tan);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

/* EOV Indicators header link */
.eov-indicators-link {
    color: var(--clay-tan);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 166, 107, 0.3);
    transition: border-color 0.3s ease;
}

.eov-indicators-link:hover {
    border-bottom-color: var(--clay-tan);
}

/* EOV Indicator card accent colours — matching the Four Ecosystem Processes */
.eov-indicator-water .eov-indicator-icon {
    background: linear-gradient(135deg, var(--water-blue), #4a7a85);
}

.eov-indicator-mineral .eov-indicator-icon {
    background: linear-gradient(135deg, var(--earth-brown), #7a5e3a);
}

.eov-indicator-energy .eov-indicator-icon {
    background: linear-gradient(135deg, var(--sunset-gold), #c49a42);
}

.eov-indicator-community .eov-indicator-icon {
    background: linear-gradient(135deg, var(--moss-green), var(--leaf-bright));
}

/* EOV Accredited Section */
.eov-accredited {
    padding: 8rem 8%;
    background: linear-gradient(145deg, var(--moss-green), #3a5a32);
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.eov-accredited::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.5;
}

.eov-accredited-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eov-accredited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.eov-accredited-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.eov-accredited-content h2 span {
    color: var(--sunset-gold);
}

.eov-accredited-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.eov-accredited-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.eov-accredited-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(0,0,0,0.15);
    padding: 1.5rem;
    border-radius: 16px;
}

.eov-accredited-feature > svg {
    color: var(--sunset-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.eov-accredited-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.eov-accredited-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Credential Visual Card */
.eov-credential-card {
    background: rgba(0,0,0,0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.eov-credential-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--sunset-gold), var(--clay-tan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--soil-black);
}

.eov-credential-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.eov-credential-card > p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.eov-credential-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.eov-credential-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.25rem;
}

.eov-credential-stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sunset-gold);
}

.eov-credential-stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* EOV Process */
.eov-process {
    padding: 8rem 8%;
    background: linear-gradient(180deg, var(--morning-mist) 0%, var(--soft-cream) 100%);
}

.eov-process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.eov-process-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.eov-process-header p {
    font-size: 1.15rem;
    color: var(--earth-brown);
}

.eov-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.eov-process-step {
    background: var(--soft-cream);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.eov-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: var(--moss-green);
}

.eov-process-step h3 {
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.eov-process-step p {
    font-size: 0.95rem;
    color: var(--earth-brown);
    line-height: 1.7;
}

/* EOV Audience */
.eov-audience {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.eov-audience-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.eov-audience-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.eov-audience-header p {
    font-size: 1.15rem;
    color: var(--earth-brown);
}

.eov-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.eov-audience-card {
    background: var(--morning-mist);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.eov-audience-card:hover {
    background: var(--soft-cream);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--moss-green);
}

.eov-audience-card h4 {
    font-size: 1.15rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.eov-audience-card p {
    font-size: 0.9rem;
    color: var(--earth-brown);
    line-height: 1.7;
}

/* ==================== */
/* ECOLOGICAL INTELLIGENCE PAGE */
/* ==================== */

/* EI Hero */
.ei-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 8% 6rem;
    position: relative;
    background: linear-gradient(145deg, var(--forest-deep), #1a3828);
    color: var(--soft-cream);
    overflow: hidden;
}

.ei-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(125, 173, 113, 0.12) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

.ei-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.ei-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.ei-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(125, 173, 113, 0.2);
    color: var(--leaf-bright);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 173, 113, 0.3);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.ei-hero-badge svg {
    color: var(--leaf-bright);
}

.ei-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.ei-hero h1 em {
    font-style: italic;
    color: var(--leaf-bright);
}

.ei-hero-subhead {
    font-size: 1.2rem;
    opacity: 0;
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.ei-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.ei-hero .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--soft-cream);
}

.ei-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--soft-cream);
}

/* EI Intro Section */
.ei-intro {
    padding: 6rem 8%;
    background: var(--soft-cream);
    text-align: center;
}

.ei-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.ei-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.ei-intro-lead {
    font-size: 1.15rem;
    color: var(--soil-black);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ei-intro p {
    font-size: 1.05rem;
    color: var(--earth-brown);
    line-height: 1.8;
}

/* EI Processes Section */
.ei-processes {
    background: var(--morning-mist);
}

.ei-process-block {
    padding: 5rem 8%;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.ei-process-block:last-child {
    border-bottom: none;
}

.ei-process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ei-process-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ei-process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.ei-process-water .ei-process-icon {
    background: rgba(90, 143, 155, 0.15);
    color: var(--water-blue);
}

.ei-process-mineral .ei-process-icon {
    background: rgba(139, 111, 71, 0.15);
    color: var(--earth-brown);
}

.ei-process-energy .ei-process-icon {
    background: rgba(212, 168, 83, 0.15);
    color: var(--sunset-gold);
}

.ei-process-community .ei-process-icon {
    background: rgba(74, 103, 65, 0.15);
    color: var(--moss-green);
}

.ei-process-icon svg {
    width: 36px;
    height: 36px;
}

.ei-process-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--forest-deep);
    margin-bottom: 0.25rem;
}

.ei-process-spectrum {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.ei-spectrum-positive {
    color: var(--moss-green);
}

.ei-spectrum-divider {
    color: var(--earth-brown);
    opacity: 0.5;
}

.ei-spectrum-negative {
    color: var(--root-red);
}

.ei-process-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ei-process-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--soil-black);
    margin-bottom: 2rem;
}

.ei-process-content strong {
    color: var(--forest-deep);
}

.ei-process-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ei-comparison-healthy,
.ei-comparison-degraded {
    padding: 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ei-comparison-healthy {
    background: rgba(74, 103, 65, 0.08);
    border: 1px solid rgba(74, 103, 65, 0.15);
}

.ei-comparison-degraded {
    background: rgba(166, 93, 76, 0.06);
    border: 1px solid rgba(166, 93, 76, 0.12);
}

.ei-comparison-healthy h4,
.ei-comparison-degraded h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ei-comparison-healthy h4 {
    color: var(--moss-green);
}

.ei-comparison-degraded h4 {
    color: var(--root-red);
}

.ei-comparison-healthy p,
.ei-comparison-degraded p {
    font-size: 0.95rem;
    color: var(--soil-black);
    line-height: 1.7;
    margin-bottom: 0;
}

.ei-process-reading {
    background: var(--soft-cream);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 111, 71, 0.1);
    align-self: start;
}

.ei-process-reading h4 {
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(74, 103, 65, 0.15);
}

.ei-process-reading ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ei-process-reading li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--earth-brown);
    line-height: 1.6;
}

.ei-process-reading li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--moss-green);
    opacity: 0.6;
}

/* EI Universal Lens Section */
.ei-universal {
    padding: 6rem 8%;
    background: var(--soft-cream);
    text-align: center;
}

.ei-universal-container {
    max-width: 850px;
    margin: 0 auto;
}

.ei-universal h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.ei-universal-lead {
    font-size: 1.1rem;
    color: var(--soil-black);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.ei-universal p {
    font-size: 1.05rem;
    color: var(--earth-brown);
    line-height: 1.8;
}

.ei-universal strong {
    color: var(--forest-deep);
}

/* EI Ecosystems Grid */
.ei-ecosystems {
    padding: 5rem 8% 6rem;
    background: linear-gradient(175deg, var(--forest-deep), #2a4a36);
    color: var(--soft-cream);
}

.ei-ecosystems-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.ei-ecosystem-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.ei-ecosystem-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.ei-ecosystem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--leaf-bright);
}

.ei-ecosystem-icon svg {
    width: 48px;
    height: 48px;
}

.ei-ecosystem-card h4 {
    font-size: 1.2rem;
    color: var(--soft-cream);
    margin-bottom: 0.75rem;
}

.ei-ecosystem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.75);
}

/* EI CTA Section */
.ei-cta {
    padding: 6rem 8%;
    background: var(--forest-deep);
    text-align: center;
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.ei-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ei-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ei-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.ei-cta p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

/* ==================== */
/* RESPONSIVE */
/* ==================== */
/* ==================== */
/* FIELD DAY PAGE */
/* ==================== */
.fd-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 8% 6rem;
    position: relative;
    background: linear-gradient(145deg, var(--earth-brown), #6b4f2f);
    color: var(--soft-cream);
    overflow: hidden;
}

.fd-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

.fd-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.fd-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.fd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 168, 83, 0.2);
    color: var(--sunset-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.3);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.fd-hero-badge svg {
    color: var(--sunset-gold);
}

.fd-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fd-hero h1 em {
    font-style: italic;
    color: var(--sunset-gold);
}

.fd-hero-subhead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fd-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.fd-hero .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--soft-cream);
}

.fd-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--soft-cream);
}

/* Hidden Cost Section */
.fd-cost {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.fd-cost-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fd-cost-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.fd-cost-content h2 span {
    color: var(--root-red);
}

.fd-cost-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.fd-cost-stat-card {
    background: linear-gradient(135deg, var(--forest-deep), #2a4a36);
    color: var(--soft-cream);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.fd-cost-stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--sunset-gold);
    margin-bottom: 0.5rem;
}

.fd-cost-stat-label {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.fd-cost-stat-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Led By Section */
.fd-led-by {
    padding: 6rem 8%;
    background: var(--morning-mist);
}

.fd-led-by-container {
    max-width: 900px;
    margin: 0 auto;
}

.fd-led-by-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.fd-led-by-content h2 span {
    color: var(--moss-green);
}

.fd-led-by-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

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

.fd-credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 103, 65, 0.15);
}

.fd-credential svg {
    color: var(--moss-green);
    flex-shrink: 0;
}

.fd-credential span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest-deep);
}

/* Activities Section */
.fd-activities {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.fd-activities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.fd-activities-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.fd-activities-header p {
    font-size: 1.1rem;
    color: #666;
}

.fd-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fd-activity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.fd-activity-number {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--clay-tan);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.fd-activity-card h3 {
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.fd-activity-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Outcomes Section */
.fd-outcomes {
    padding: 8rem 8%;
    background: var(--morning-mist);
}

.fd-outcomes-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.fd-outcomes-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.fd-outcomes-header p {
    font-size: 1.1rem;
    color: #666;
}

.fd-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fd-outcome-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
}

.fd-outcome-icon {
    width: 56px;
    height: 56px;
    background: rgba(74, 103, 65, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--moss-green);
}

.fd-outcome-card h3 {
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.fd-outcome-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Warning Section */
.fd-warning {
    padding: 6rem 8%;
    background: linear-gradient(145deg, #3a2218, #4a2d1f);
    color: var(--soft-cream);
}

.fd-warning-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fd-warning h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--root-red);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.fd-warning-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.fd-warning-item {
    background: rgba(166, 93, 76, 0.15);
    border: 1px solid rgba(166, 93, 76, 0.3);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Schedule Section */
.fd-schedule {
    padding: 8rem 8%;
    background: var(--soft-cream);
}

.fd-schedule-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.fd-schedule-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.fd-schedule-header p {
    font-size: 1.1rem;
    color: #666;
}

.fd-schedule-timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fd-schedule-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    min-width: 130px;
    flex: 1;
}

.fd-schedule-highlight {
    background: var(--forest-deep);
    color: var(--soft-cream);
    border-color: var(--forest-deep);
}

.fd-schedule-time {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fd-schedule-highlight .fd-schedule-time {
    color: var(--sunset-gold);
}

.fd-schedule-label {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Reserve Section */
.fd-reserve {
    padding: 8rem 8%;
    background: var(--morning-mist);
}

.fd-reserve-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.fd-reserve-pricing {
    background: linear-gradient(135deg, var(--forest-deep), #2a4a36);
    color: var(--soft-cream);
    border-radius: 24px;
    padding: 3rem;
}

.fd-price-main {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.fd-price-amount {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--sunset-gold);
}

.fd-price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.fd-price-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.fd-price-includes li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fd-price-includes li:last-child {
    border-bottom: none;
}

.fd-reserve-ctas {
    text-align: center;
}

.fd-reserve-ctas .btn-primary {
    width: 100%;
    justify-content: center;
}

.fd-reserve-events {
    padding-top: 1rem;
}

.fd-reserve-events h3 {
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.fd-event-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fd-event-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fd-event-date {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--earth-brown);
}

.fd-event-location {
    color: #666;
    font-size: 0.95rem;
}

.fd-event-note {
    font-size: 0.9rem;
    color: var(--earth-brown);
    font-weight: 600;
    margin-bottom: 2rem;
}

.fd-reserve-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fd-reserve-badges span {
    background: rgba(74, 103, 65, 0.1);
    color: var(--moss-green);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .guide-container {
        grid-template-columns: 1fr;
    }

    .guide-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .plan-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .transformation-container {
        grid-template-columns: 1fr;
    }

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

    .bng-container {
        grid-template-columns: 1fr;
    }

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

    .bng-opp-grid {
        grid-template-columns: 1fr;
    }

    .eov-what-container {
        grid-template-columns: 1fr;
    }

    .eov-indicators-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .eov-accredited-container {
        grid-template-columns: 1fr;
    }

    .eov-accredited-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .eov-process-steps {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .eov-audience-grid {
        grid-template-columns: 1fr;
    }

    .ei-process-body {
        grid-template-columns: 1fr;
    }

    .ei-ecosystems-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .fd-cost-container {
        grid-template-columns: 1fr;
    }

    .fd-activities-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .fd-outcomes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .fd-reserve-container {
        grid-template-columns: 1fr;
    }

    .fd-credentials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 150;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links-center {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 7rem 5% 4rem;
    }

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

    .bng-stats {
        grid-template-columns: 1fr;
    }

    .eov-hero {
        padding: 8rem 5% 4rem;
    }

    .eov-outcome-arrow {
        flex-direction: column;
    }

    .eov-outcome-arrow > svg {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ei-hero {
        padding: 8rem 5% 4rem;
    }

    .fd-hero {
        padding: 8rem 5% 4rem;
    }

    .fd-schedule-timeline {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .ei-process-comparison {
        grid-template-columns: 1fr;
    }

    .ei-ecosystems-grid {
        grid-template-columns: 1fr;
    }
}