/*
Theme Name: Orenda
Theme URI: 
Author: Antigravity
Author URI: 
Description: A premium, calm, and professional one-page theme for Orenda Counselling.
Version: 1.0.0
Text Domain: orenda
*/

:root {
    /* Colors */
    --color-primary: #805032;
    --color-neutral-warm: #a4785c;
    --color-grounding-deep: #434639;
    --color-grounding-soft: #616756;
    --color-bg-light: #f9f7f5;
    /* Adjusted for warmth */
    --color-white: #efebde;
    --color-text-dark: #333333;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Sen', sans-serif;

    /* Spacing */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-96: 96px;

    /* Utils */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --shadow-natural: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Hide elements for animation if JS is enabled */
.js .reveal,
.js .hero-inner {
    opacity: 0;
}

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

/* Global Styles */

body {
    font-family: var(--font-body);
    color: var(--color-grounding-deep);
    line-height: 1.3;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-32);
}

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

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

.narrow-container {
    max-width: 800px;
}

.lead-text {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: var(--space-32);
}

/* Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.5s ease, padding 0.5s ease;
    padding: var(--space-24) 0;
}

.main-header.scrolled {
    background: rgba(245, 228, 208, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-16) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled .nav-link {
    color: #5e7361;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.logo .logo-scrolled {
    display: none;
}

.main-header.scrolled .logo .logo-white {
    display: none;
}

.main-header.scrolled .logo .logo-scrolled {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-32);
}

.nav-link {
    font-size: 18px;
    color: #f5e4d0;
    font-weight: 400;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #f5e4d0;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-inner {
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: var(--space-24);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: var(--space-48);
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: var(--space-64);
}

.safety-signals {
    font-size: 16px;
    opacity: 0.8;
    border-top: 1px solid rgba(245, 228, 208, 0.3);
    padding-top: var(--space-24);
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-16) var(--space-32);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #f5e4d0;
    color: #303a31;
}

.btn-primary:hover {
    background-color: #efebde;
    color: #303a31;
    opacity: 1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    opacity: 1;
}

.accent-bg .btn-secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.accent-bg .btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    opacity: 1;
}

/* Fixed Background & Glass Styles (Used for Services and previously My Approach) */
.fixed-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-80) 0;
    overflow: hidden;
}

.fixed-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 235, 222, 0.3);
    /* Lighter overlay for dark text contrast */
}

.fixed-bg-section .container {
    position: relative;
    z-index: 1;
}

#services .container {
    gap: 0;
}

#services h2,
#services h3,
#services .tile-header {
    color: var(--color-primary);
}

#services p {
    color: var(--color-grounding-deep);
}

.text-white {
    color: var(--color-white) !important;
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-32);
    margin-top: 0;
}

.glass-tile {
    background: rgba(239, 235, 222, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: var(--space-48);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-natural);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    text-align: left;
}

.glass-tile h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-16);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.glass-tile:hover {
    transform: translateY(-8px);
    background: rgba(239, 235, 222, 0.95);
}

.glass-tile p {
    color: var(--color-grounding-deep);
    line-height: 1.6;
    margin: 0;
    font-size: 17px;
}

/* Areas of Practice Redesign */
.areas-section {
    background-color: #f7f4f1;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3");
    opacity: 0.04;
    pointer-events: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-16);
    margin-top: 0;
}

.area-item {
    background: var(--color-white);
    padding: var(--space-24) var(--space-16);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(128, 80, 50, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(128, 80, 50, 0.08);
    border-color: rgba(128, 80, 50, 0.15);
}

.area-icon {
    width: 44px;
    height: 44px;
    background: rgba(128, 80, 50, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.area-item:hover .area-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.area-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.area-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Merged About & Approach Section */
.approach-section,
.about-section {
    position: relative;
    padding: var(--space-80) 0;
    overflow: hidden;
}

.approach-section {
    background-color: #e9dcd4;
}

.about-section {
    background-color: #f0ebe6;
}

.approach-section .container,
.about-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 0;
    align-items: stretch;
    background-color: #f9f7f5;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-natural);
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper .section-title {
    margin-bottom: var(--space-32);
    font-size: 48px;
    text-align: left;
}

.approach-item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-32);
}

.micro-card {
    background-color: #f9f7f5;
    border-radius: var(--border-radius-md);
    padding: var(--space-48);
    box-shadow: var(--shadow-natural);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.micro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    margin-bottom: var(--space-24);
    color: var(--color-primary);
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.micro-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-16);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.micro-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-grounding-deep);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-80);
    background-color: transparent;
}

.about-text .section-title {
    margin-bottom: var(--space-24);
    font-size: 48px;
}

.about-bio {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.45;
    color: var(--color-primary);
    margin-bottom: var(--space-24);
}

.bio-btn {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    padding: var(--space-8) var(--space-24);
    font-size: 16px;
    margin-bottom: var(--space-32);
    align-self: flex-start;
    display: inline-block;
}

.bio-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.about-bio-full-width {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    background-color: #f9f7f5;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-natural);
    max-width: 1200px;
    margin-inline: auto;
}

.about-bio-full-width.show {
    max-height: 1000px;
    opacity: 1;
}

.bio-content {
    padding: var(--space-48);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-grounding-deep);
}

.bio-content p {
    margin-bottom: var(--space-16);
}

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

.about-credentials {
    border-top: 1px dotted rgba(67, 70, 57, 0.3);
    padding-top: var(--space-48);
}

.credentials-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-grounding-soft);
    margin-bottom: var(--space-24);
    display: block;
}

.about-image {
    min-height: 500px;
}

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

.narrative-credentials {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 48px;
}

.narrative-credentials li {
    font-size: 14px;
    color: var(--color-grounding-deep);
    opacity: 0.9;
    font-weight: 500;
}

/* Empathy Section */
.relatable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
    margin: var(--space-48) 0;
}

.relatable-item {
    background: var(--color-bg-light);
    padding: var(--space-32);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.reassurance-text {
    font-size: 17px;
    color: #434639;
    line-height: 1.4;
}

/* Services Details */
.services-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-48);
}

.service-detail h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: var(--space-8);
}

.accent-bg .service-detail h3 {
    color: var(--color-white);
}

/* What to Expect - Journey Overhaul */
.journey-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: var(--space-80) 0;
    overflow: hidden;
    color: var(--color-white);
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    /* Darker overlay for readability */
    z-index: 1;
}

.journey-section .container {
    position: relative;
    z-index: 2;
}

.journey-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-48) var(--space-32);
}

.journey-line {
    position: absolute;
    left: 50%;
    top: 150px;
    bottom: 100px;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
    z-index: 1;
}

.journey-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #e9dcd4;
    transform-origin: top;
    transform: scaleY(0);
    /* Animated via GSAP */
}

.journey-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-96);
    z-index: 2;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-icon-wrap {
    width: 64px;
    height: 64px;
    background: #e9dcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-32);
    box-shadow: 0 0 30px rgba(128, 80, 50, 0.5);
    position: relative;
    z-index: 3;
}

.journey-icon-wrap svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

.journey-card {
    /* Solid color to avoid flicker during on-scroll animation */
    background: #e9dcd4;
    padding: var(--space-48);
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 600px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--color-grounding-deep);
}

.journey-card:hover {
    transform: translateY(-6px);
}

.journey-card h3 {
    font-size: 28px;
    margin-bottom: var(--space-24);
    /* Increased for breathing room */
    color: var(--color-primary);
    /* Changed to primary for visibility on solid light bg */
    font-family: var(--font-heading);
}

.journey-card p {
    font-size: 19px;
    line-height: 1.6;
    /* Matched to My Approach cards for consistency */
    color: var(--color-grounding-deep);
    /* Dark color for readability on light bg */
    margin: 0;
}

@media (max-width: 768px) {
    .journey-line {
        left: 48px;
        transform: none;
    }

    .journey-step {
        align-items: flex-start;
        padding-left: 96px;
    }

    .journey-icon-wrap {
        position: absolute;
        left: 16px;
        top: 0;
        width: 50px;
        height: 50px;
    }

    .journey-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .journey-card {
        text-align: left;
        padding: var(--space-32);
    }

    .journey-card h3 {
        font-size: 24px;
    }

    .journey-card p {
        font-size: 17px;
    }
}

/* Split Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: var(--space-64);
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

.split-text {
    flex: 1;
}

.section-title {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: var(--space-32);
}

.accent-bg {
    background-color: #e9dcd4;
    color: var(--color-text-dark);
}

.accent-bg .section-title {
    color: var(--color-primary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-48);
    margin-bottom: var(--space-64);
}

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

.service-icon {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: var(--space-16);
}

/* Pricing */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-32);
    margin-top: var(--space-48);
}

.pricing-card {
    background: #2e332c;
    padding: var(--space-48);
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 320px;
    color: #efede1;
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    color: #efede1;
    font-size: 24px;
    margin-bottom: var(--space-24);
    font-weight: 600;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.duration {
    font-size: 15px;
    opacity: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Specific overrides for Fees section to match user request */
#fees .section-title {
    color: #2e332c;
}

#fees p,
#fees h4 {
    color: #2e332c;
}

/* Origins Section */
.origins-section {
    position: relative;
    padding: var(--space-80) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.origins-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.origins-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.origins-card {
    background: #d7d4c4;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-80) var(--space-64);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-natural);
    text-align: center;
    width: 100%;
    border: 1px solid rgba(128, 80, 50, 0.06);
}

.origins-ornament {
    margin-bottom: var(--space-16);
}

.origins-ornament svg {
    width: 36px;
    height: 36px;
    color: #2e332c;
    opacity: 0.5;
    stroke-width: 1.5;
}

.origins-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    color: #2e332c;
    line-height: 1.2;
    margin: 0;
}

.origins-divider {
    width: 48px;
    height: 2px;
    background: #2e332c;
    margin: var(--space-32) auto;
    opacity: 0.4;
}

.origins-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #2e332c;
    margin: 0;
}

@media (max-width: 992px) {
    .origins-section {
        padding: var(--space-80) 0;
    }

    .origins-card {
        padding: var(--space-64) var(--space-48);
    }
}

@media (max-width: 768px) {
    .origins-section {
        padding: var(--space-80) 0;
        background-attachment: scroll;
    }

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

    .origins-card {
        padding: var(--space-48) var(--space-32);
    }

    .origins-heading {
        font-size: 32px;
    }

    .origins-text {
        font-size: 16px;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: #d7d4c4 !important;
}

.contact-photo-circle {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: block;
}

#contact .section-title {
    color: #2e332c !important;
}

.contact-intro {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.5;
    color: #2e332c;
    margin-bottom: var(--space-48);
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--space-24);
    margin-bottom: var(--space-48);
    flex-wrap: wrap;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--space-16) var(--space-24);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-natural);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
}

a.contact-method-card:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(46, 51, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    color: #2e332c;
    stroke-width: 1.5;
}

a.contact-method-card:hover .contact-method-icon {
    background: rgba(46, 51, 44, 0.1);
}

.contact-method-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2e332c;
}

.contact-method-value {
    font-size: 16px;
    font-weight: 500;
    color: #2e332c;
}

.contact-availability {
    cursor: default;
}

.contact-form-card {
    background: rgba(239, 235, 222, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: var(--space-48);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.contact-form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-48) var(--space-32);
    border: 1px dashed rgba(67, 70, 57, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
    color: var(--color-grounding-deep);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    background: rgba(128, 80, 50, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-16);
}

.placeholder-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    stroke-width: 1.5;
}

.contact-form-placeholder p {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #2e332c;
    margin-bottom: var(--space-8);
}

.contact-form-placeholder span {
    font-size: 15px;
    color: #2e332c;
}

.contact-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    font-size: 13px;
    color: #2e332c;
}

.contact-privacy svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
    color: #2e332c;
    flex-shrink: 0;
}

@media (max-width: 992px) {

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .pricing-grid,
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

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

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

    /* Section adjustments after split */
    .approach-item-grid {
        grid-template-columns: 1fr;
        gap: var(--space-32);
    }

    .approach-wrapper .section-title {
        font-size: 36px;
        margin-bottom: var(--space-32);
    }

    .glass-grid {
        grid-template-columns: 1fr;
        gap: var(--space-24);
    }


    .about-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .about-image {
        min-height: 400px;
        order: -1;
    }

    .about-text {
        text-align: center;
        padding: var(--space-64) var(--space-24);
    }

    .about-bio {
        font-size: 22px;
        margin-bottom: var(--space-48);
    }

    .about-credentials {
        padding-top: var(--space-32);
    }

    .narrative-credentials {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
    }

    .contact-method-card {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .contact-form-card {
        padding: var(--space-32);
    }
}

/* Formidable Form Color Overrides */
.frm_forms,
.frm_forms .frm_primary_label,
.frm_forms .frm_secondary_label,
.frm_forms .frm_description,
.frm_forms input[type="text"],
.frm_forms input[type="email"],
.frm_forms input[type="tel"],
.frm_forms input[type="url"],
.frm_forms input[type="number"],
.frm_forms input[type="password"],
.frm_forms select,
.frm_forms textarea,
.frm_forms .frm_opt_container,
.frm_forms .frm_form_title {
    color: #2e332c !important;
}

/* Fields border and focus */
.frm_forms input[type="text"],
.frm_forms input[type="email"],
.frm_forms input[type="tel"],
.frm_forms textarea,
.frm_forms select {
    border-color: rgba(46, 51, 44, 0.2) !important;
}

.frm_forms input[type="text"]:focus,
.frm_forms input[type="email"]:focus,
.frm_forms input[type="tel"]:focus,
.frm_forms textarea:focus,
.frm_forms select:focus {
    border-color: #2e332c !important;
}

/* Submit Button */
.frm_forms .frm_submit input[type="submit"],
.frm_forms .frm_submit button,
.frm_forms .frm_button_submit {
    background-color: #2e332c !important;
    border: 1px solid #2e332c !important;
    color: #efebde !important;
    transition: all 0.3s ease !important;
}

.frm_forms .frm_submit input[type="submit"]:hover,
.frm_forms .frm_submit button:hover,
.frm_forms .frm_button_submit:hover {
    background-color: #2e332c !important;
    border-color: #2e332c !important;
    opacity: 0.9;
}

/* Formidable Forms Contact Form Overrides */
.with_frm_style .frm_message,
.frm_success_style {
    margin: 0 0 20px !important;
    border: 0 !important;
    background-color: transparent !important;
    color: #2e332c !important;
    border-radius: var(--border-radius);
    font-size: 20px;
    text-align: center;
}

.frm_style_formidable-style.with_frm_style .frm_error_style {
    background-color: transparent !important;
    border: 0 !important;
    border-radius: var(--border-radius);
    color: var(--error-text);
    font-size: 20px;
    margin: 0 0 20px !important;
    margin-bottom: var(--field-margin);
    text-align: center;
}

/* Modal Overlay & Card Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: var(--space-24);
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.show .modal-container {
    transform: translateY(0);
}

.modal-card {
    width: 100%;
    text-align: left;
}

.modal-card.micro-card:hover {
    transform: none;
    box-shadow: var(--shadow-natural);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: var(--color-grounding-soft);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

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

.modal-content {
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-grounding-deep);
}

.modal-content p {
    margin-bottom: var(--space-16);
}

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

/* --- New Alternating Color Scheme Sections --- */

/* Section 1: Empathy (Pair 1: #5e7361 on #f5e4d0) */
#empathy {
    background-color: #f5e4d0;
    color: #5e7361;
}
#empathy .section-title {
    color: #5e7361;
}
#empathy .lead-text {
    color: #5e7361;
}
#empathy .reassurance-text {
    color: #5e7361;
}

/* Section 2: About (Pair 2: #f5e4d0 on #5e7361) */
#about {
    background-color: #5e7361;
    color: #f5e4d0;
}
#about .section-title {
    color: #f5e4d0;
}
#about .about-bio {
    color: #f5e4d0;
}
#about .credentials-label {
    color: #5e7361;
}
#about .narrative-credentials li {
    color: #f5e4d0;
}
/* Cards and bio details inside Section 2 (light foreground/card elements to use #efebde) */
#about .about-grid {
    background-color: #f5e4d0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#about .about-text {
    color: #5e7361;
}
#about .about-text .section-title {
    color: #5e7361;
}
#about .about-bio {
    color: #5e7361;
}
#about .bio-btn {
    border-color: #5e7361;
    color: #5e7361;
}
#about .bio-btn:hover {
    background-color: #5e7361;
    color: #efebde;
}
#about .narrative-credentials li {
    color: #5e7361;
}
#about .about-credentials {
    border-top: 1px dotted rgba(94, 115, 97, 0.4);
}
#about .about-bio-full-width {
    background-color: #f5e4d0;
}
#about .bio-content {
    color: #5e7361;
}

/* Section 3: Services (Pair 1: #5e7361 on #f5e4d0) */
#services {
    background-color: #f5e4d0;
    color: #5e7361;
    background-attachment: scroll;
}
#services .section-title {
    color: #5e7361;
}
#services .glass-tile {
    background: #5e7361;
    color: #f5e4d0;
    border: 1px solid rgba(245, 228, 208, 0.1);
}
#services .glass-tile:hover {
    transform: none;
    background: #5e7361;
}
#services .glass-tile h3 {
    color: #f5e4d0;
}
#services .glass-tile p {
    color: #f5e4d0;
}
#services .icon-box {
    color: #f5e4d0;
}

/* Section 4: Areas of Practice (Pair 2: #f5e4d0 on #5e7361) */
#areas {
    background-color: #5e7361;
    color: #f5e4d0;
}
#areas .section-title {
    color: #f5e4d0;
}
#areas .area-item {
    background: #f5e4d0;
    border-color: rgba(94, 115, 97, 0.15);
}
#areas .area-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(94, 115, 97, 0.3);
}
#areas .area-name {
    color: #5e7361;
}
#areas .area-icon {
    background: rgba(94, 115, 97, 0.08);
    color: #5e7361;
}
#areas .area-item:hover .area-icon {
    background: #5e7361;
    color: #efebde;
}

/* Section 5: Appointments & Fees (Pair 1: #5e7361 on #f5e4d0) */
#fees {
    background-color: #f5e4d0 !important;
    color: #5e7361;
}
#fees .section-title {
    color: #5e7361 !important;
}
#fees p,
#fees h4 {
    color: #5e7361 !important;
}
#fees .pricing-card {
    background: #5e7361;
    color: #efebde;
}
#fees .pricing-card h3 {
    color: #efebde;
}

/* Section 6: Contact (Pair 2: #f5e4d0 on #5e7361) */
#contact {
    background-color: #5e7361 !important;
    color: #f5e4d0;
}
#contact .section-title {
    color: #f5e4d0 !important;
}
#contact .contact-intro {
    color: #f5e4d0;
}

#contact .contact-method-card {
    background: #f5e4d0;
}
#contact .contact-method-label {
    color: #5e7361;
}
#contact .contact-method-value {
    color: #5e7361;
}
#contact .contact-method-icon {
    background: rgba(94, 115, 97, 0.1);
}
#contact .contact-method-icon svg {
    color: #5e7361;
}
#contact .contact-form-card {
    background: #f5e4d0;
}
#contact .contact-privacy {
    color: #5e7361;
}
#contact .contact-privacy svg {
    color: #5e7361;
}
#contact .frm_forms,
#contact .frm_forms .frm_primary_label,
#contact .frm_forms .frm_secondary_label,
#contact .frm_forms .frm_description,
#contact .frm_forms input[type="text"],
#contact .frm_forms input[type="email"],
#contact .frm_forms input[type="tel"],
#contact .frm_forms textarea,
#contact .frm_forms .frm_form_title {
    color: #5e7361 !important;
}
#contact .frm_forms input[type="text"],
#contact .frm_forms input[type="email"],
#contact .frm_forms input[type="tel"],
#contact .frm_forms textarea {
    border-color: #ffffff !important;
}
#contact .frm_forms input[type="text"]:focus,
#contact .frm_forms input[type="email"]:focus,
#contact .frm_forms input[type="tel"]:focus,
#contact .frm_forms textarea:focus {
    border-color: #5e7361 !important;
}
#contact .frm_forms .frm_submit input[type="submit"],
#contact .frm_forms .frm_submit button,
#contact .frm_forms .frm_button_submit {
    background-color: #5e7361 !important;
    border-color: #5e7361 !important;
    color: #efebde !important;
}
#contact .contact-form-placeholder p,
#contact .contact-form-placeholder span {
    color: #5e7361;
}
#contact .contact-form-placeholder {
    border-color: rgba(94, 115, 97, 0.2);
}
#contact .placeholder-icon {
    background: rgba(94, 115, 97, 0.08);
}
#contact .placeholder-icon svg {
    color: #5e7361;
}

/* Modals */
.modal-card {
    background-color: #efebde !important;
}
.modal-content {
    color: #5e7361;
}
.modal-card h3 {
    color: #5e7361 !important;
}
.modal-card .icon-box {
    color: #5e7361 !important;
}
.modal-close {
    color: #5e7361;
}
.modal-close:hover {
    color: #5e7361;
    opacity: 0.8;
}

/* Site Footer */
.site-footer {
    background-color: #5e7361;
    color: #f5e4d0;
    text-align: center;
}

/* Section: Origins (Same colorway as Fees section: #5e7361 on #f5e4d0 card) */
#origins .origins-card {
    background: rgba(245, 228, 208, 0.95);
    border-color: rgba(94, 115, 97, 0.1);
}
#origins .origins-heading {
    color: #5e7361;
}
#origins .origins-text {
    color: #5e7361;
}
#origins .origins-divider {
    background: #5e7361;
}
#origins .origins-ornament svg {
    color: #5e7361;
}

/* Section: My Approach (Same colorway as Fees section: #5e7361 on #f5e4d0 card/elements) */
#approach .section-title {
    color: #f5e4d0;
}
#approach .approach-item.micro-card {
    background: rgba(245, 228, 208, 0.95);
    border: 1px solid rgba(94, 115, 97, 0.1);
}
#approach .approach-item.micro-card h3 {
    color: #5e7361;
}
#approach .approach-item.micro-card p {
    color: #5e7361;
}
#approach .approach-item.micro-card .icon-box {
    color: #5e7361;
}
#approach .approach-item.micro-card:hover {
    transform: none;
    box-shadow: var(--shadow-natural);
}

/* Section: What to Expect (Pair 1: #5e7361 on #f5e4d0) */
#expect .section-title {
    color: #f5e4d0 !important;
}
#expect .journey-line {
    background: rgba(245, 228, 208, 0.25);
}
#expect .journey-line-progress {
    background: #f5e4d0;
}
#expect .journey-icon-wrap {
    background: #f5e4d0;
    box-shadow: 0 0 30px rgba(94, 115, 97, 0.3);
}
#expect .journey-icon-wrap svg {
    color: #5e7361;
}
#expect .journey-card {
    background: #f5e4d0;
    color: #5e7361;
}
#expect .journey-card h3 {
    color: #5e7361;
}
#expect .journey-card p {
    color: #5e7361;
}