:root {
    /* Light Mode (Default) */
    --terracotta: #C67D5E;
    --terracotta-dark: #A85D3E;
    --sage: #8B9A7D;
    --sage-light: #A8B89A;
    --cream: #F8F5F0;
    /* Main Light Background */
    --cream-dark: #EDE8E0;
    /* Secondary Light Background */
    --charcoal: #3D3229;
    /* Main Text / Dark Background */
    --charcoal-light: #5A4D40;
    /* Secondary Text */
    --gold: #D4A574;
    --gold-light: #E8C9A8;
    --white: #FFFEFB;
    /* Card Background */
    --shadow-soft: 0 4px 30px rgba(61, 50, 41, 0.08);
    --shadow-medium: 0 8px 40px rgba(61, 50, 41, 0.12);
    --nav-bg: rgba(248, 245, 240, 0.8);
    --input-bg: var(--cream);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --terracotta: #D88E6F;
    /* Slightly lighter for contrast */
    --terracotta-dark: #C67D5E;
    --sage: #9BAA8D;
    --sage-light: #4A5540;
    /* Darker sage for shapes */
    --cream: #121212;
    /* Main Dark Background */
    --cream-dark: #1E1E1E;
    /* Secondary Dark Background */
    --charcoal: #EAE6DF;
    /* Main Text (Light) */
    --charcoal-light: #B0B0B0;
    /* Secondary Text */
    --gold: #D4A574;
    --gold-light: #B89065;
    --white: #252525;
    /* Card Background (Dark Grey) */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.6);
    --nav-bg: rgba(18, 18, 18, 0.8);
    --input-bg: #2d2d2d;
}

/* Accessibility Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    text-wrap: balance;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-wrap: balance;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

/* Interactive Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 4px;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--terracotta-dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: var(--shadow-soft);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal) !important;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: inherit;
}

.logo-name {
    color: inherit;
    white-space: nowrap;
}

.logo-divider {
    color: var(--terracotta);
    opacity: 0.6;
    font-weight: 300;
    font-size: inherit;
}

.logo-tagline {
    font-size: inherit;
    font-weight: 400;
    color: var(--charcoal-light);
    white-space: nowrap;
}

.logo-mark {
    height: 2em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    background: transparent !important;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal-light);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta) !important;
    color: #FFFEFB !important;
    /* Always white text */
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Dark Mode Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.icon-sun {
    display: none;
}

.icon-moon {
    display: block;
}

[data-theme="dark"] .icon-sun {
    display: block;
}

[data-theme="dark"] .icon-moon {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(198, 125, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(198, 125, 94, 0);
    }
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    padding: 2rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--sage);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    color: var(--charcoal);
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
    opacity: 0;
    line-height: 1.1;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    text-wrap: initial;
}

.hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--terracotta);
    font-weight: 500;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
    flex-wrap: wrap;
    align-items: center;
}

.selectivity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--sage-light);
    margin-top: 0.5rem;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.selectivity-badge .dot {
    color: var(--sage);
    animation: blink 2s infinite;
}

.cta-caption {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-top: 0.75rem;
    animation: fadeSlideUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--terracotta);
    color: #FFFEFB;
    /* Force white text */
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 125, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. The Glowing SVG Blob */
.hero-visual::before {
    content: '';
    position: absolute; 
    inset: -10%; 
    background-image: url('images/customBlob.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(80px); 
    z-index: -2; 
    opacity: 0.7;
}

/* 3. The Textured Scanline Overlay */
.hero-visual::after {
    content: '';
    position: absolute; 
    width: 180%; 
    height: 150%;
    top: -25%; 
    left: -50%;
    background-image: repeating-linear-gradient(
        to bottom, 
        var(--cream) 0px,
        var(--cream) 2px,
        transparent 2px,
        transparent 5px
    );
    z-index: -1;
    pointer-events: none; 
    transition: background-image 0.4s ease; 
}

.hero-shapes {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    bottom: 5%;
    left: 10%;
    animation-delay: -2s;
}

.shape-3 {
    width: 30%;
    height: 30%;
    background: var(--gold-light);
    top: 5%;
    left: 20%;
    animation-delay: -4s;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    background: linear-gradient(180deg, var(--cream-dark), var(--sage-light));
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    width: 130%;
    height: 130%;
    object-fit: cover;
    /* object-position: center 10%;
    /* Lowered to ensure head isn't cut off */
    display: block;
    transition: transform 0.5s ease;
}

.hero-image svg {
    width: 60%;
    height: 60%;
    opacity: 0.6;
    color: var(--charcoal);
}

.hero-decoration {
    position: absolute;
    bottom: 15%;
    right: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    z-index: 1;
    opacity: 0.5;
}

/* Trust Indicators */
.trust-bar {
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-soft);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal-light);
    font-size: 0.9rem;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--sage);
}

/* About Section */
.about {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    /* Lowered to ensure head isn't cut off */
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-photo {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
    /* Ensure it stays above the decorative frame */
}

.about-floating-card span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--terracotta);
    display: block;
}

.about-floating-card p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.problem-agitation {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--terracotta);
    font-style: italic;
    border-left: 3px solid var(--terracotta);
    padding-left: 1.5rem;
}

.about-content h2 em {
    font-style: italic;
    color: var(--terracotta);
}

.about-content>p {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--cream-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terracotta);
}

.about-feature h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.btn-standing {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-standing:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 125, 94, 0.2);
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 2rem 5%;
    /* Keep dark even in light mode, but needs slight adjust for dark mode */
    background: linear-gradient(135deg, #3D3229, #5A4D40);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .lead-magnet {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.1;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lead-magnet-text h2 {
    color: #FFFEFB;
    /* Always light text on this dark section */
    margin-bottom: 1rem;
}

.lead-magnet-text h2 em {
    color: var(--gold);
    font-style: italic;
}

.lead-magnet-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.lead-magnet-benefits {
    list-style: none;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.lead-magnet-benefits li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.lead-magnet-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
}

.lead-magnet-form h3 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.lead-magnet-form>p {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.lead-magnet-form .form-group {
    margin-bottom: 1rem;
}

.lead-magnet-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--white);
}

.lead-magnet-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.lead-magnet-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--charcoal-light);
    margin-top: 1rem;
}

/* Services Section */
.services {
    padding: 4rem 5%;
    background: var(--white);
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.services-header h2 {
    margin-bottom: 1rem;
}

.services-header h2 em {
    font-style: italic;
    color: var(--sage);
}

.services-header p {
    color: var(--charcoal-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* Add relative positioning for image background layers */
    z-index: 1;
    will-change: transform;
}

/* Ensure content sits on top of background image */
.service-card>* {
    position: relative;
    z-index: 2;
}

/* Background Image Layer */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    /* Low opacity as requested */
    z-index: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
    pointer-events: none;
    filter: grayscale(20%);
    /* Optional: makes images blend slightly better */
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--terracotta);
    transition: height 0.4s ease;
    z-index: 3;
    /* Border on top */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::after {
    transform: scale(1.05);
    opacity: 0.12;
}

.service-card:hover::before {
    height: 100%;
}

.service-card.featured {
    background: linear-gradient(135deg, #3D3229, #5A4D40);
    /* Force dark in light mode */
    color: #F8F5F0;
}

[data-theme="dark"] .service-card.featured {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
}

.service-card.featured::before {
    background: var(--gold);
}

.service-card.featured h3,
.service-card.featured p {
    color: #F8F5F0;
}

/* Service Card Background Images */
.type-counselling::after {
    background-image: url('images/Integrative Counselling.jpg');
}

.type-coaching::after {
    background-image: url('images/Counselling Informed Coaching.jpg');
}

.type-hypno::after {
    background-image: url('images/Hypnotherapy.jpg');
}

.type-relationships::after {
    background-image: url('images/Relationship Coaching.jpg');
}

.service-card.featured .service-price {
    color: var(--gold-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

[data-theme="dark"] .service-icon {
    background: rgba(255, 255, 255, 0.05);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card>p {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-outcomes {
    margin-bottom: 1.5rem;
}

.service-outcomes strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-card.featured .service-outcomes strong {
    color: var(--gold-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
}

.service-card.featured .service-features li::before {
    background: var(--gold);
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.service-price span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.service-card.featured .service-price span {
    color: rgba(255, 255, 255, 0.6);
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

.service-card.featured .btn-primary {
    background: var(--gold);
    color: #3D3229;
}

.service-card.featured .btn-primary:hover {
    background: var(--gold-light);
}

/* Guarantee Section */
.guarantee {
    padding: 2.5rem 5%;
    background: var(--cream-dark);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--sage);
    box-shadow: var(--shadow-soft);
}

.guarantee h2 {
    margin-bottom: 1rem;
}

.guarantee h2 em {
    font-style: italic;
    color: var(--sage);
}

.guarantee p {
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Approach Section */
.approach {
    padding: 2rem 2.5%;
    position: relative;
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20vw;
    color: var(--cream-dark);
    white-space: nowrap;
    z-index: 0;
    opacity: 0.5;
}

.approach-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 2rem;
}

.approach-header h2 {
    margin-bottom: 1rem;
}

.approach-header h2 em {
    font-style: italic;
    color: var(--terracotta);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.approach-step {
    text-align: center;
    padding: 20px;
    position: relative;
    transition: background-color 0.4s ease;
    border-radius: 8px;
}

.approach-step:has(.step-number:hover) {
    background-color: rgba(255, 255, 255, 0.05);
}

.approach-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--cream-dark);
}

.approach-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--terracotta);
    box-shadow: var(--shadow-soft);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.step-number:hover {
    background: var(--terracotta);
    color: #FFFEFB;
    transform: scale(1.1);
}

.approach-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.approach-step p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* Testimonials */
.testimonials {
    padding: 4rem 5%;
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .testimonials {
    background: #000;
    color: #ddd;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-header h2 {
    margin-bottom: 1rem;
}

.testimonials-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .testimonials-header p {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--terracotta);
    line-height: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

[data-theme="dark"] .testimonial-text {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-outcome {
    background: rgba(139, 154, 125, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--sage-light);
}

[data-theme="dark"] .testimonial-outcome {
    color: #A8B89A;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #FFFEFB;
}

.testimonial-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq {
    padding: 4rem 5%;
    background: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.faq-header h2 {
    margin-bottom: 1rem;
}

.faq-header h2 em {
    font-style: italic;
    color: var(--terracotta);
}

.faq-header p {
    color: var(--charcoal-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--terracotta);
}

.faq-item.faq-active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.faq-active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--charcoal-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: #FFFEFB;
    margin-bottom: 1rem;
}

.cta h2 em {
    font-style: italic;
    opacity: 0.9;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--charcoal);
}

.cta .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.reflection-prompt {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px dashed var(--terracotta);
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.reflection-icon {
    color: var(--terracotta);
    background: var(--white);
    padding: 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.reflection-content h4 {
    margin-bottom: 0.3rem;
    color: var(--terracotta);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.reflection-content p {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-style: italic;
    margin: 0;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--terracotta);
}

.contact-info>p {
    color: var(--charcoal-light);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.contact-item a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--terracotta-dark);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    margin-top: 0.25rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: #3D3229;
    color: #F8F5F0;
    padding: 4rem 5% 2rem;
}

[data-theme="dark"] footer {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo,
.footer-brand .logo:visited,
.footer-brand .logo:hover,
.footer-brand .logo:active,
.footer-brand .logo-name {
    color: #F8F5F0 !important;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8F5F0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #F8F5F0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Privacy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    overflow-y: auto;
}

.modal.is-open {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: fit-content;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--charcoal);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--terracotta);
}

.policy-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--terracotta);
    font-weight: 600;
}

.policy-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-stats,
    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .lead-magnet-content,
    .services-grid,
    .testimonials-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr 1fr;
    }

    .approach-step::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        line-height: 1;
    }

    .logo-divider {
        display: none;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.01em;
    }

    .logo-mark {
        width: 28px;
        height: 28px;
    }

    body {
        padding-bottom: 70px;
    }

    h1 {
        font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
    }

    h3 {
        font-size: clamp(1.3rem, 6vw, 1.6rem) !important;
    }

    section {
        padding: 2.5rem 5% !important;
    }

    nav {
        padding: 0.75rem 5% !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.25rem !important;
        gap: 1rem !important;
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto !important;
        padding: 6.5rem 5% 2.5rem !important;
    }

    .hero-stats {
        gap: 1.5rem !important;
    }

    .trust-bar {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem !important;
    }

    .about-image-wrapper,
    .about-floating-card {
        display: none !important;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 2rem 1.5rem !important;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer-content {
        gap: 2.5rem !important;
    }
}