/* ===================================
   CLEARPATH.LOVE - QHHT PRACTICE
   Warm Earth & Light Design
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --cream: #faf6f0;
    --warm-white: #fffcf7;
    --terracotta: #c4704a;
    --terracotta-light: #e8a882;
    --sage: #7a8c6e;
    --sage-light: #b5c4a8;
    --clay: #d4a574;
    --espresso: #3d3229;
    --stone: #8b8378;
    --sand: #e8dfd3;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --transition-smooth: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.7;
    font-size: 16px;
}

/* === BACKGROUND SHAPES === */
.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.bg-shape-1 {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(ellipse at center, var(--sage-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.bg-shape-2 {
    bottom: 20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(ellipse at center, var(--terracotta-light) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--espresso);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--stone);
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #b5633d;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 50, 41, 0.08);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--espresso);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--espresso);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--espresso);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 246, 240, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(61, 50, 41, 0.08);
    }

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

    .nav-container {
        padding: 0 1.5rem;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--sage);
    border-radius: 2px;
}

.hero h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero p {
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    border-radius: 200px 200px 40px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand), var(--sage-light));
    aspect-ratio: 3/4;
    max-height: 600px;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, var(--terracotta-light) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, var(--sage-light) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-image-pattern {
    position: absolute;
    inset: 0;
    background-image: 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 0c1.657 0 3 1.343 3 3s-1.343 3-3 3-3-1.343-3-3 1.343-3 3-3zm0 54c1.657 0 3 1.343 3 3s-1.343 3-3 3-3-1.343-3-3 1.343-3 3-3z' fill='%233d3229' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.hero-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 20px 40px rgba(196, 112, 74, 0.3);
}

/* Page Header (inner pages) */
.page-header {
    position: relative;
    z-index: 1;
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(61, 50, 41, 0.08);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    animation: slideIn 0.8s ease-out;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--stone);
    animation: slideIn 0.8s ease-out 0.1s both;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--warm-white);
    box-shadow: 0 4px 20px rgba(196, 112, 74, 0.25);
}

.btn-primary:hover {
    background: #b5633d;
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 112, 74, 0.35);
}

.btn-secondary {
    background: var(--sand);
    color: var(--espresso);
}

.btn-secondary:hover {
    background: #ddd2c4;
    color: var(--espresso);
}

/* === SECTIONS === */
section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-full {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

/* Section Backgrounds */
.section-light {
    background-color: var(--warm-white);
}

.section-accent {
    background-color: var(--sand);
}

/* === INTRODUCTION CARD === */
.intro-section {
    background: var(--warm-white);
    border-radius: 30px;
    padding: 4rem;
    margin: 0 2rem;
    box-shadow: 0 20px 60px rgba(61, 50, 41, 0.06);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta), var(--clay));
}

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

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.intro-text p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--espresso);
}

/* === CARD GRID === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--terracotta);
    transition: height 0.4s ease;
    border-radius: 0 0 4px 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61, 50, 41, 0.1);
    border-color: rgba(61, 50, 41, 0.05);
}

.card:hover::before {
    height: 100%;
}

.card h3 {
    margin-bottom: 0.75rem;
    color: var(--espresso);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--sand);
    border-radius: 12px;
}

/* === BENEFITS GRID === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* === PROCESS SECTION === */
.process-section {
    background: var(--sage);
    margin: 4rem 0;
    border-radius: 40px;
    padding: 5rem;
    color: var(--warm-white);
}

.process-section .section-header h2,
.process-section .section-header p {
    color: var(--warm-white);
}

.process-section .section-header p {
    opacity: 0.9;
}

.process-section .section-title {
    color: var(--warm-white);
}

.process-section .section-title::after {
    background: linear-gradient(90deg, var(--warm-white), var(--clay));
}

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

.process-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sage);
    background: var(--warm-white);
    border-radius: 50%;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--warm-white);
}

.process-step p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--warm-white);
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--warm-white);
    border-radius: 40px;
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.5;
}

.cta-section::before {
    top: -50px;
    left: -50px;
    background: var(--sage-light);
}

.cta-section::after {
    bottom: -50px;
    right: -50px;
    background: var(--terracotta-light);
}

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

.cta-section p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* === FORMS === */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--espresso);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--warm-white);
    color: var(--espresso);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 112, 74, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--stone);
}

/* === BLOG === */
.blog-post-preview {
    background: var(--warm-white);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: 20px;
    border-left: 4px solid var(--sage);
    box-shadow: 0 5px 20px rgba(61, 50, 41, 0.05);
    transition: var(--transition-smooth);
}

.blog-post-preview:hover {
    box-shadow: 0 10px 40px rgba(61, 50, 41, 0.1);
    transform: translateX(5px);
}

.blog-meta {
    color: var(--stone);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.blog-post-preview h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--espresso);
}

.read-more {
    color: var(--terracotta);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    display: inline-block;
}

.read-more::after {
    content: ' →';
}

/* Blog Post Article */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-article-header .blog-meta {
    margin-bottom: 1rem;
}

.blog-article-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.blog-article-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    margin: 0 auto;
    border-radius: 2px;
}

.blog-article-content {
    line-height: 1.8;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
    color: var(--stone);
}

.blog-article-content p:first-of-type {
    font-size: 1.15rem;
    color: var(--espresso);
}

.blog-article-content h2 {
    color: var(--terracotta);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-article-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--stone);
}

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

.blog-article-content blockquote {
    background: var(--sand);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    text-align: center;
    color: var(--espresso);
}

.blog-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--sand);
    border-radius: 20px;
    text-align: center;
}

.blog-cta h3 {
    margin-bottom: 1rem;
}

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

.blog-back {
    margin-top: 3rem;
    text-align: center;
}

.blog-back a {
    color: var(--terracotta);
    font-weight: 600;
}

/* === FOOTER === */
footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(61, 50, 41, 0.08);
    background: var(--cream);
}

footer p {
    color: var(--stone);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--terracotta);
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 4rem;
    }

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

    .hero-decoration {
        width: 90px;
        height: 90px;
        font-size: 0.75rem;
        bottom: -20px;
        left: -10px;
    }

    .intro-section {
        padding: 2.5rem;
        margin: 0 1rem;
    }

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

    .intro-icon {
        margin: 0 auto;
    }

    .intro-text p {
        font-size: 1.15rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

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

    .cta-section {
        margin: 1rem;
        padding: 3rem 1.5rem;
    }

    .page-header {
        padding: 8rem 1.5rem 3rem;
    }

    .blog-article {
        padding: 6rem 1.5rem 3rem;
    }
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}

/* === PRACTITIONER SECTION (About Page) === */
.practitioner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--terracotta-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 50px rgba(61, 50, 41, 0.15);
    margin: 0 auto 2rem;
}

.practitioner-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.approach-card {
    margin-top: 2rem;
    background: var(--sand);
    border: none;
}

.approach-card::before {
    display: none;
}

/* QHHT Info Cards */
.qhht-info-card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(61, 50, 41, 0.05);
}

.qhht-info-card h3 {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.qhht-unique-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
    color: var(--stone);
}

.qhht-unique-list li {
    margin-bottom: 0.5rem;
}

.legacy-card {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--warm-white);
    border-radius: 20px;
}

.legacy-card h3 {
    margin-bottom: 1rem;
}

.legacy-card p {
    max-width: 700px;
    margin: 0 auto;
}

/* === CONTACT PAGE === */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    text-align: center;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 50, 41, 0.1);
}

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

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.next-steps-card {
    margin-top: 2rem;
    background: var(--warm-white);
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
}

.next-steps-card h3 {
    margin-bottom: 1rem;
}

.next-steps-card p {
    max-width: 600px;
    margin: 0 auto;
}

.faq-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 10px 30px rgba(61, 50, 41, 0.08);
}

.faq-card h3 {
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Form Messages */
.form-success {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--sage-light);
    color: var(--espresso);
    border-radius: 12px;
    text-align: center;
}

.form-error {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--terracotta-light);
    color: var(--espresso);
    border-radius: 12px;
    text-align: center;
}

/* === SERVICES PAGE === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61, 50, 41, 0.12);
    border-color: rgba(122, 140, 110, 0.2);
}

.service-card.featured {
    border-color: var(--terracotta);
    box-shadow: 0 15px 40px rgba(196, 112, 74, 0.15);
}

.service-card.featured:hover {
    box-shadow: 0 25px 60px rgba(196, 112, 74, 0.25);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.service-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--espresso);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-price .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--terracotta);
}

.service-price .duration {
    font-size: 0.95rem;
    color: var(--stone);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--espresso);
    margin-bottom: 2rem;
}

.service-includes {
    background: var(--sand);
    padding: 1.75rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-includes h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sage);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* Discovery Call Callout */
.discovery-callout {
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.discovery-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.discovery-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.discovery-content h3 {
    color: var(--warm-white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.discovery-content p {
    color: var(--warm-white);
    opacity: 0.95;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.discovery-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.discovery-duration,
.discovery-price {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    color: var(--warm-white);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Session Timeline */
.session-timeline {
    position: relative;
    padding-left: 2rem;
}

.session-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--sage), var(--terracotta));
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--terracotta);
    border: 3px solid var(--warm-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--terracotta-light);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--espresso);
}

.timeline-time {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone);
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-white);
    padding: 2.25rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--sage);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(61, 50, 41, 0.08);
}

.faq-item h3 {
    color: var(--terracotta);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--sand);
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 30px;
}

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

.testimonial p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}

.testimonial footer {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--stone);
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .service-price .price {
        font-size: 2rem;
    }

    .discovery-callout {
        padding: 3rem 1.5rem;
    }

    .session-timeline {
        padding-left: 1.5rem;
    }

    .session-timeline::before {
        left: 0;
    }

    .timeline-marker {
        left: -1.5rem;
    }

    .faq-item {
        padding: 1.75rem;
    }

    .testimonial p {
        font-size: 1.15rem;
    }
}
