:root {
    --flex-bg: #FAFAF9;
    --flex-surface: #FFFFFF;
    --flex-ink: #292524;
    --flex-ink-mute: #57534E;
    --flex-accent: #0D9488;
    --flex-accent-hover: #0F766E;
    --flex-accent-light: #CCFBF1;
    --flex-line: #E7E5E4;
    --flex-gradient: linear-gradient(135deg, #0D9488, #14B8A6);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --pad-section: 10dvh;
    --br-radius: 16px;
    --sh-lifted: 0 10px 25px rgba(0,0,0,0.06);
    --sh-subtle: 0 4px 6px rgba(0,0,0,0.04);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--flex-bg);
    color: var(--flex-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--flex-ink);
    line-height: 1.2;
}

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

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

/* Announcement Bar */
.wellness-notice-bar {
    background-color: var(--flex-accent);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.notice-link {
    text-decoration: underline;
    font-weight: 700;
}
.notice-link:hover {
    color: var(--flex-accent-light);
}

/* Header Config */
.wellness-top-bar {
    background-color: var(--flex-surface);
    border-bottom: 1px solid var(--flex-line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}
.wellness-top-bar:focus-within {
    box-shadow: var(--sh-lifted);
}

.wellness-nav-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wellness-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--flex-ink);
}
.brand-emblem {
    width: 28px;
    height: 28px;
    color: var(--flex-accent);
}

.wellness-menu-area {
    display: flex;
    gap: 24px;
    align-items: center;
}
.menu-item {
    font-weight: 700;
    font-size: 1rem;
    color: var(--flex-ink-mute);
}
.menu-item:hover {
    color: var(--flex-accent);
}
.action-tint {
    color: var(--flex-accent);
    border-bottom: 2px solid var(--flex-accent);
    padding-bottom: 2px;
}

.navigation-trigger {
    display: none;
}
.hamburger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--flex-ink);
    transition: 0.3s;
}

/* Split Hero Config */
.split-intro-stage {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}
.intro-verbiage-zone {
    flex: 1;
    background-color: var(--flex-surface);
    padding: var(--pad-section) 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-text-cluster {
    max-width: 600px;
    width: 100%;
}
.primary-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}
.supporting-headline {
    font-size: 1.125rem;
    color: var(--flex-ink-mute);
    margin-bottom: 40px;
}
.primary-action-pill {
    display: inline-block;
    background-color: var(--flex-accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--br-radius);
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.primary-action-pill:hover {
    background-color: var(--flex-accent-hover);
    transform: translateY(-2px);
}
.intro-visual-zone {
    flex: 1;
    height: 50vh;
}
.visual-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Magazine Journal Config */
.journal-spread-band {
    width: 100%;
    height: 45vh;
}
.spread-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journal-columns-area {
    max-width: 1200px;
    margin: 40px auto var(--pad-section);
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.journal-col {
    border-top: 3px solid var(--flex-accent);
    padding-top: 24px;
}
.col-headline {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.col-paragraph {
    color: var(--flex-ink-mute);
}

/* Masonry Features */
.pillars-masonry-zone {
    background-color: var(--flex-surface);
    padding: var(--pad-section) 24px;
}
.masonry-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.section-focus-title {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
}
.masonry-grid-layout {
    column-count: 1;
    column-gap: 24px;
}
.masonry-brick {
    background-color: var(--flex-bg);
    border-radius: var(--br-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--sh-subtle);
    break-inside: avoid;
    border: 1px solid var(--flex-line);
}
.brick-emblem {
    width: 40px;
    height: 40px;
    color: var(--flex-accent);
    margin-bottom: 20px;
}
.brick-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.brick-text {
    color: var(--flex-ink-mute);
    font-size: 0.95rem;
}
.img-brick {
    background: var(--flex-gradient);
    color: #fff;
    border: none;
}
.img-brick .brick-text {
    color: rgba(255,255,255,0.9);
}

/* Horizontal Track Config */
.progression-mechanism-zone {
    padding: var(--pad-section) 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.center-align {
    text-align: center;
}
.mechanism-horizontal-track {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}
.mechanism-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 24px;
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    box-shadow: var(--sh-subtle);
}
.highlight-step {
    border: 2px solid var(--flex-accent);
    box-shadow: var(--sh-lifted);
}
.step-orb {
    width: 48px;
    height: 48px;
    background-color: var(--flex-bg);
    border: 2px solid var(--flex-accent);
    color: var(--flex-accent);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.highlight-step .step-orb {
    background-color: var(--flex-accent);
    color: #fff;
}
.step-heading {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.step-details {
    color: var(--flex-ink-mute);
    font-size: 0.95rem;
}
.step-connector {
    display: none;
}

/* CTA Strip */
.conversion-emphasis-strip {
    background-color: var(--flex-accent);
    color: #fff;
    padding: var(--pad-section) 24px;
    text-align: center;
}
.conversion-content-cluster {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.conversion-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
}
.conversion-action-pill {
    background-color: var(--flex-surface);
    color: var(--flex-ink);
    padding: 18px 40px;
    border-radius: var(--br-radius);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--sh-lifted);
}
.conversion-action-pill:hover {
    background-color: var(--flex-bg);
    transform: translateY(-2px);
}

/* Expert / Teacher Config */
.specialist-stage {
    padding: var(--pad-section) 24px;
    background-color: var(--flex-surface);
}
.specialist-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.specialist-portrait {
    width: 100%;
    border-radius: var(--br-radius);
    object-fit: cover;
    box-shadow: var(--sh-lifted);
}
.specialist-bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.specialist-tag {
    color: var(--flex-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.metrics-horizontal-band {
    max-width: 1200px;
    margin: 0 auto var(--pad-section);
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.metric-block {
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--sh-subtle);
    border-top: 4px solid var(--flex-accent);
}
.metric-figure {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--flex-ink);
    margin-bottom: 8px;
}
.metric-label {
    color: var(--flex-ink-mute);
    font-weight: 700;
}

.methods-accordion-zone {
    max-width: 800px;
    margin: 0 auto var(--pad-section);
    padding: 0 24px;
}
.method-drawer {
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    margin-bottom: 16px;
    box-shadow: var(--sh-subtle);
    padding: 24px;
}
.method-drawer summary {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: var(--flex-ink);
}
.method-drawer summary::-webkit-details-marker {
    display: none;
}
.method-drawer p {
    margin-top: 16px;
    color: var(--flex-ink-mute);
}

/* Reserve Config */
.booking-arena {
    padding: var(--pad-section) 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.booking-info-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-card-module {
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    padding: 24px;
    box-shadow: var(--sh-subtle);
    border-left: 4px solid var(--flex-accent);
}
.info-card-module h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}
.info-bullet-list {
    list-style: none;
}
.info-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--flex-ink-mute);
}
.info-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--flex-accent);
}

.booking-form-module {
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    padding: 40px;
    box-shadow: var(--sh-lifted);
}
.form-heading {
    margin-bottom: 24px;
    font-size: 1.8rem;
}
.input-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-field {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--flex-line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--flex-bg);
}
.input-field:focus {
    outline: none;
    border-color: var(--flex-accent);
    box-shadow: 0 0 0 3px var(--flex-accent-light);
}
.check-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--flex-ink-mute);
}
.contact-mail {
    display: inline-block;
    margin-top: 16px;
    color: var(--flex-accent);
    font-weight: 700;
}

/* Document Pages Config */
.document-plate {
    max-width: 800px;
    margin: var(--pad-section) auto;
    padding: 40px;
    background-color: var(--flex-surface);
    border-radius: var(--br-radius);
    box-shadow: var(--sh-subtle);
}
.document-plate h1 {
    margin-bottom: 32px;
}
.document-plate h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}
.document-plate p {
    margin-bottom: 16px;
    color: var(--flex-ink-mute);
}

/* Footer Config */
.wellness-bottom-bar {
    background-color: var(--flex-ink);
    color: var(--flex-surface);
    padding: 64px 24px;
    margin-top: 40px;
}
.bottom-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}
.bottom-brand-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.bottom-brand-area svg {
    color: var(--flex-accent-light);
}
.bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.bottom-links a {
    color: #A8A29E;
}
.bottom-links a:hover {
    color: var(--flex-surface);
}
.bottom-disclaimer {
    color: #78716C;
    font-size: 0.85rem;
    max-width: 600px;
}
.bottom-disclaimer p {
    margin-bottom: 8px;
}

/* Consent Cookie Component */
.consent-floating-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--flex-surface);
    padding: 24px;
    border-radius: var(--br-radius);
    box-shadow: var(--sh-lifted);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--flex-line);
}
.consent-message {
    font-size: 0.95rem;
    color: var(--flex-ink);
}
.consent-actions {
    display: flex;
    gap: 12px;
}
.consent-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.primary-consent {
    background-color: var(--flex-accent);
    color: #fff;
}
.secondary-consent {
    background-color: var(--flex-bg);
    color: var(--flex-ink);
    border: 1px solid var(--flex-line);
}

/* Responsive Table */
@media (min-width: 768px) {
    .split-intro-stage {
        flex-direction: row;
    }
    .intro-visual-zone {
        height: auto;
    }
    .journal-columns-area {
        grid-template-columns: repeat(3, 1fr);
    }
    .masonry-grid-layout {
        column-count: 3;
    }
    .mechanism-horizontal-track {
        flex-direction: row;
        align-items: flex-start;
    }
    .step-connector {
        display: block;
        flex: 1;
        border-top: 2px dashed var(--flex-line);
        margin-top: 48px;
    }
    .metrics-horizontal-band {
        grid-template-columns: repeat(4, 1fr);
    }
    .specialist-layout {
        grid-template-columns: 1fr 1fr;
    }
    .booking-arena {
        grid-template-columns: 4fr 5fr;
    }
    .consent-floating-bar {
        left: auto;
        right: 24px;
        bottom: 24px;
        width: 400px;
    }
    .conversion-content-cluster {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .conversion-headline {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .wellness-menu-area {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--flex-surface);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--sh-lifted);
        border-top: 1px solid var(--flex-line);
    }
    .hamburger-icon {
        display: flex;
    }
    .navigation-trigger:checked ~ .wellness-menu-area {
        display: flex;
    }
    .bottom-layout {
        text-align: center;
    }
    .intro-verbiage-zone {
        text-align: center;
    }
}