/* ==========================================================================
   CSS Custom Properties & Color Palette
   ========================================================================== */
:root {
    --color-dark: #0d1405;
    --color-forest: #294410;
    --color-gold: #f0a938;
    --color-gold-hover: #d6942c;
    --color-beige: #f4e9cd;
    --color-card-beige: #f3efe6;
    --color-light: #F7F5F4;
    --color-sage-line: #7a8c6e;
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Container & Alignment Scale */
    --container-max-width: 940px;
    --container-wide-max-width: 1080px;
    --header-column-width: 220px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.font-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
}

h1.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Hero "YOURSELF" wrapper & exact-width thin divider line */
.hero-yourself {
    display: inline-block;
    position: relative;
}

.hero-yourself::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 0.85rem;
}

/* Section headers base reset */
.section-header {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: clamp(1.8rem, 2.64vw, 2.34rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
}

h2 em {
    font-style: italic;
}

h3.text-block-title {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.15rem;
}
p:last-child {
    margin-bottom: 0;
}

.caps-bold {
    font-size: clamp(0.725rem, 0.8vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.text-forest { color: var(--color-forest); }
.text-gold { color: var(--color-gold); }
.text-subtle { color: var(--color-forest); font-size: 0.875rem; }
.text-center { text-align: center; }

.mb-md { margin-bottom: 1.25rem; }
.mb-lg { margin-bottom: 2rem; }
.mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 1.5rem; }

/* ==========================================================================
   Strict Alternating Color Classes
   ========================================================================== */
.bg-dark { background-color: var(--color-dark); }
.bg-light { background-color: var(--color-light); }
.bg-beige { background-color: var(--color-beige); }

.text-light { color: var(--color-light); }
.text-dark { color: var(--color-dark); }

/* ==========================================================================
   Desktop Grid & Compact Layout Alignment
   ========================================================================== */
section {
    padding: clamp(2.5rem, 4.5vw, 4rem) 1.25rem;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.container-wide {
    max-width: var(--container-wide-max-width);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .section-grid {
        grid-template-columns: var(--header-column-width) 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    /* Centers CTA buttons across the full section/page width on Desktop */
    .section-grid > .section-cta-wrap {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
}

/* Standard Section Title Accent Lines (Left-aligned) */
.accent-line {
    width: 72px;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 0.75rem;
}

/* Responsive Centered Accent Lines (Matches width & thickness of "YOURSELF" line) */
.accent-line-hero {
    width: 170px;
    max-width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    margin: 0.625rem auto 1.25rem auto;
}

@media (min-width: 800px) {
    .accent-line-hero {
        width: 260px;
    }
}

/* ==========================================================================
   Buttons (Uniform Centered Alignment & Styling)
   ========================================================================== */
.section-cta-wrap {
    text-align: center;
    width: 100%;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(0.75rem, 0.8vw, 0.825rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.95rem 1.85rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(13, 20, 5, 0.08);
}

.btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 20, 5, 0.12);
}

.btn:active {
    transform: scale(0.99) translateY(0);
    box-shadow: 0 2px 8px rgba(13, 20, 5, 0.08);
}

.btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* ==========================================================================
   Hero Section (Textured Ambient BG)
   ========================================================================== */
.hero {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5rem) 1.25rem;
    overflow: hidden;
    background-color: var(--color-dark);
    /* Soft ambient lighting glow */
    background-image: radial-gradient(circle at 50% 30%, rgba(41, 68, 16, 0.25) 0%, rgba(13, 20, 5, 1) 75%);
}

/* Organic Grain Texture Overlay (Mobile default: baseFrequency='1') */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 800px) {
    .hero {
        padding-top: clamp(1.75rem, 3vw, 2.5rem);
    }

    /* Desktop override: baseFrequency='1.15' */
    .hero::before {
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    margin: 0 auto;
}

.hero-description {
    font-size: clamp(0.975rem, 1.15vw, 1.1rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.hero-description:first-of-type {
    font-weight: 500;
}

.hero-description:last-of-type {
    margin-bottom: 2rem;
}

@media (min-width: 800px) {
    .hero-description {
        font-size: calc(clamp(0.975rem, 1.15vw, 1.1rem) + 4pt);
    }
}

.hero-badge-text {
    font-size: calc(clamp(0.725rem, 0.8vw, 0.8rem) + 1pt);
}

.hero-price {
    font-size: clamp(2.25rem, 3.2vw, 2.75rem);
    margin: 0.4rem 0 1.15rem 0;
}

@media (min-width: 800px) {
    .hero-badge-text {
        font-size: calc(clamp(0.9rem, 1vw, 1rem) + 3pt);
    }
}

/* ==========================================================================
   Highlight & Checklists
   ========================================================================== */
.highlight-callout {
    padding: 0;
    margin: 0;
    font-family: var(--font-heading);
}

.highlight-callout .accent-line-hero:first-child {
    margin-top: 0.1rem;
    margin-bottom: 1.25rem;
}

.highlight-callout .accent-line-hero:last-child {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.highlight-callout p {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.highlight-callout p:last-of-type {
    margin-bottom: 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 650px) {
    .checklist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 2rem;
    }
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 0.22rem;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.check-item p {
    margin-bottom: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Card Layout for "What You Receive" Section
   ========================================================================== */
.receive-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 650px) {
    .receive-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.receive-card {
    padding: 2.25rem 1.75rem 1.5rem 1.75rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(13, 20, 5, 0.05);
    border: 1px solid rgba(122, 140, 110, 0.15);
}

.card-number-wrap {
    margin-bottom: 1.25rem;
}

.card-number {
    font-size: 1.35rem;
    color: var(--color-gold);
    line-height: 1;
}

.card-number-line {
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 0.35rem;
}

.card-title {
    font-size: clamp(1.2rem, 1.5vw, 1.35rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.card-subhead {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
    color: #294410;
}

.card-bullets {
    margin-bottom: 1.75rem;
}

.card-bullets li {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 20, 5, 0.12);
}

.card-format {
    font-size: 0.7rem;
    font-weight: 700;
    color: #294410;
}

/* Standard Bullet Lists */
.bullet-list-dark {
    list-style-type: none;
    padding: 0;
}

.bullet-list-dark li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.5rem;
}

.bullet-list-dark li::before {
    content: '•';
    color: var(--color-forest);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ==========================================================================
   Centered Quote Banner
   ========================================================================== */
.quote-banner-strip {
    padding-top: 0.5rem;
}

.quote-banner-title {
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    line-height: 1.35;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* ==========================================================================
   Section 6: "What This Practice Is Not" Grid
   ========================================================================== */
.not-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .not-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .not-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.not-card {
    background-color: var(--color-card-beige);
    padding: 2.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(13, 20, 5, 0.05);
    border: 1px solid rgba(240, 169, 56, 0.15);
}

.not-card-title {
    font-size: clamp(1.15rem, 1.3vw, 1.3rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.not-card-line {
    width: 28px;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.not-card p {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    color: var(--color-dark);
}

.not-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Guide Section
   ========================================================================== */
.guide-profile-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

.guide-photo {
    width: 100%;
    max-width: 230px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.guide-details {
    flex: 1;
}

.guide-name {
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.guide-role {
    font-size: 0.725rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    color: #4a5243;
}

.guide-details p {
    font-size: 0.925rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.guide-details p:last-child {
    margin-bottom: 0;
}

@media (min-width: 650px) {
    .guide-profile-wrapper {
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .guide-photo {
        width: 100%;
        height: 100%;
        max-width: 100%;
        aspect-ratio: auto;
    }
}

/* ==========================================================================
   Final Hero & FAQ Accordion
   ========================================================================== */
.final-title {
    font-size: clamp(1.5rem, 2.75vw, 2.25rem);
    max-width: 680px;
    margin: 0 auto;
}

/* Increased font size: +1pt on mobile default, +2pt on desktop */
.final-desc-block p {
    margin-bottom: 0.5rem;
    font-size: calc(clamp(0.95rem, 1vw, 1.05rem) + 1pt);
}

@media (min-width: 800px) {
    .final-desc-block p {
        font-size: calc(clamp(0.95rem, 1vw, 1.05rem) + 2pt);
    }

    /* Section 9 product badge text: reduced by 2pt on desktop only */
    .final-badge-text {
        font-size: calc(clamp(0.9rem, 1vw, 1rem) + 1pt);
    }
}

/* FAQ Accordion (Light Section) */
.faq-accordion-light {
    border-top: 1px solid var(--color-beige);
}

.faq-accordion-light .faq-item {
    border-bottom: 1px solid var(--color-beige);
}

.faq-item summary {
    padding: 1.15rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    font-weight: 500;
    padding-right: 1rem;
    color: var(--color-dark);
}

.faq-plus {
    color: var(--color-forest);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

/* FAQ Answer Color: Muted olive tone */
.faq-answer {
    padding-bottom: 1.15rem;
    font-size: 0.95rem;
    color: #4a5243;
}

/* ==========================================================================
   Accessibility & Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}