:root {
    --comfort-main-hue: 345;
    --comfort-accent: #E63946;
    --comfort-accent-dark: #A81B26;
    --comfort-surface: #FFFFFF;
    --comfort-surface-alt: #F8F9FA;
    --comfort-dark-bg: #1D3557;
    --comfort-ink-dark: #121A2F;
    --comfort-ink-light: #4A5568;
    --comfort-gradient: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-spacious: 16dvh;
    --radius-sharp: 4px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--comfort-surface-alt);
    color: var(--comfort-ink-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Global Interactive Elements */
.action-trigger {
    display: inline-block;
    background-color: var(--comfort-dark-bg);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-sharp);
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.action-trigger:hover {
    background-color: var(--comfort-accent-dark);
    transform: translateY(-2px);
}

.action-trigger.pill-format {
    border-radius: 999px; /* Requested exception in prompt for CTA strip */
}

/* Header */
.wellness-top-band {
    background: var(--comfort-gradient);
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.brand-spot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.navigation-zone {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggler-logic {
    display: none;
}

.nav-toggler-visual {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Index Hero (Preset C) */
.intro-splash-zone {
    min-height: 100vh;
    background: var(--comfort-gradient);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.splash-decorator-number {
    position: absolute;
    font-size: 20rem;
    opacity: 0.06;
    font-family: var(--font-display);
    font-weight: 900;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    pointer-events: none;
}

.splash-text-side {
    width: 50%;
    position: relative;
    z-index: 10;
}

.display-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.splash-lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.7;
}

.splash-shape-side {
    width: 50%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
}

.splash-shape-side::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.15);
    top: 20%;
    left: 10%;
}

.splash-shape-side::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    bottom: 20%;
    right: 15%;
    transform: rotate(45deg);
}

/* Index Content Poly-Clip (Preset C) */
.poly-clip-zone {
    width: 100%;
    min-height: 70vh;
    background-image: url('img/bg2.webp');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-spacious) 5%;
    position: relative;
}

.poly-overlay-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    max-width: 800px;
    text-align: center;
    border-radius: var(--radius-sharp);
}

.topic-heading {
    font-size: 2.5rem;
    color: var(--comfort-accent);
}

.poly-paragraph {
    font-size: 1.1rem;
    color: var(--comfort-ink-light);
    margin-bottom: 1rem;
}

/* Index Features (Preset C: 3 Col, Big Numbers, Borderless) */
.habits-grid-zone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: var(--spacing-spacious) 5%;
    background-color: var(--comfort-surface);
}

.habit-item-box {
    display: flex;
    flex-direction: column;
}

.habit-big-number {
    font-size: 3.5rem;
    color: var(--comfort-accent);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.habit-title {
    font-size: 1.5rem;
    color: var(--comfort-dark-bg);
}

.habit-desc {
    color: var(--comfort-ink-light);
}

/* Index Steps (Preset C: Horizontal, Solid Connector) */
.process-path-zone {
    padding: var(--spacing-spacious) 5%;
    background-color: var(--comfort-surface-alt);
    text-align: center;
}

.path-main-title {
    margin-bottom: 5rem;
}

.path-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.path-step-item {
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.path-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.path-step-item:nth-child(odd) .path-circle {
    background: var(--comfort-accent);
    color: #fff;
}

.path-step-item:nth-child(even) .path-circle {
    background: var(--comfort-surface-alt);
    border: 4px solid var(--comfort-accent);
    color: var(--comfort-accent);
}

/* Solid connector line */
.path-step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: var(--comfort-accent);
    z-index: 1;
}

.path-step-label {
    font-size: 1.3rem;
    color: var(--comfort-dark-bg);
}

.path-step-desc {
    color: var(--comfort-ink-light);
    font-size: 0.95rem;
}

/* CTA Strip (Preset C: Dark bg, big text left, pill button right) */
.final-prompt-zone {
    background-color: var(--comfort-dark-bg);
    padding: var(--spacing-spacious) 5%;
    color: #fff;
}

.prompt-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.prompt-heading {
    font-size: 3rem;
    margin: 0;
    color: #fff;
    flex: 1;
}

/* Expert Hero */
.expert-splash-zone {
    background: var(--comfort-gradient);
    padding: var(--spacing-spacious) 5%;
    text-align: center;
    color: #fff;
}

.expert-prompt-zone {
    background: var(--comfort-dark-bg);
    padding: 4rem 5%;
    color: #fff;
}

/* Expert Grid */
.expert-bio-zone {
    display: flex;
    min-height: 70vh;
    background: var(--comfort-surface);
}

.expert-bio-text {
    width: 55%;
    padding: var(--spacing-spacious) 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-bio-img {
    width: 45%;
    background-image: url('img/bg2.webp');
    background-size: cover;
    background-position: center;
}

/* Stats row */
.expert-metrics-zone {
    display: flex;
    justify-content: space-around;
    padding: 6rem 5%;
    background: var(--comfort-accent);
    color: #fff;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.metric-digit {
    font-size: 4rem;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Expert Conclusion */
.expert-conclude-zone {
    background-image: url('img/bg3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-spacious) 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-conclude-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    max-width: 700px;
    text-align: center;
    border-radius: var(--radius-sharp);
}

/* Form Booking Layout */
.booking-split-zone {
    display: flex;
    padding: var(--spacing-spacious) 5%;
    gap: 5%;
    background: var(--comfort-surface);
}

.booking-form-box {
    width: 60%;
}

.booking-info-box {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-lead {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--comfort-ink-light);
}

.inquiry-form-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label-tag {
    font-weight: 600;
    color: var(--comfort-dark-bg);
}

.input-text-elem {
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sharp);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-text-elem:focus {
    outline: none;
    border-color: var(--comfort-accent);
}

.input-check-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-elem {
    margin-top: 0.25rem;
    cursor: pointer;
}

.check-label-tag {
    font-size: 0.9rem;
    color: var(--comfort-ink-light);
}

.submit-trigger {
    margin-top: 1rem;
    align-self: flex-start;
}

.email-contact-prompt {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--comfort-ink-light);
}

.mailto-link {
    color: var(--comfort-accent);
    font-weight: bold;
}

/* Info Cards */
.info-card-item {
    background: var(--comfort-surface-alt);
    padding: 2rem;
    border-radius: var(--radius-sharp);
    border-left: 4px solid var(--comfort-accent);
}

.info-card-title {
    font-size: 1.3rem;
    color: var(--comfort-dark-bg);
}

.info-card-desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--comfort-ink-light);
}

.info-card-markers {
    list-style: none;
    padding: 0;
}

.info-card-markers li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.info-card-markers li::before {
    content: "•";
    color: var(--comfort-accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* FAQ Zone */
.booking-faq-zone {
    padding: var(--spacing-spacious) 5%;
    background: var(--comfort-surface-alt);
}

.faq-group-wrapper {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-item {
    background: #fff;
    border-radius: var(--radius-sharp);
    border-left: 4px solid var(--comfort-dark-bg);
}

.inquiry-summary {
    padding: 1.5rem;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.inquiry-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--comfort-ink-light);
}

/* Legal Documents */
.legal-document-zone {
    padding: var(--spacing-spacious) 5%;
    background: var(--comfort-surface);
    min-height: 100vh;
}

.doc-content {
    max-width: 800px;
    margin: 0 auto;
}

.doc-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--comfort-ink-light);
}

/* Success Page */
.success-message-zone {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/bg3.webp');
    background-size: cover;
    background-position: center;
    padding: 0 5%;
}

.success-message-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: var(--radius-sharp);
    text-align: center;
    max-width: 700px;
}

/* Cookie Banner */
.consent-popup-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--comfort-dark-bg);
    color: #fff;
    padding: 1.5rem 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.consent-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
}

.consent-actions {
    display: flex;
    gap: 1rem;
}

.consent-trigger {
    background: var(--comfort-accent);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sharp);
    font-weight: bold;
    cursor: pointer;
}

.consent-trigger.alt-trigger {
    background: transparent;
    border: 1px solid #fff;
}

/* Footer */
.site-bottom-band {
    background: var(--comfort-ink-dark);
    color: #fff;
    padding: 4rem 5% 2rem 5%;
    text-align: center;
}

.bottom-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.bottom-navigation a {
    color: #A0AEC0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.bottom-navigation a:hover {
    color: #fff;
}

.legal-disclaimer {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.copyright-line {
    font-size: 0.8rem;
    color: #4A5568;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .splash-text-side { width: 70%; }
    .splash-shape-side { width: 30%; }
    .habits-grid-zone { grid-template-columns: repeat(2, 1fr); }
    .expert-bio-zone { flex-direction: column; }
    .expert-bio-text, .expert-bio-img { width: 100%; min-height: 40vh; }
    .booking-split-zone { flex-direction: column; }
    .booking-form-box, .booking-info-box { width: 100%; }
}

@media (max-width: 768px) {
    .display-heading { font-size: 2.5rem; }
    .nav-toggler-visual { display: flex; }
    .navigation-zone {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--comfort-dark-bg);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
    }
    .navigation-zone .nav-item {
        padding: 1rem 5%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-toggler-logic:checked ~ .navigation-zone {
        max-height: 300px;
    }
    .habits-grid-zone { grid-template-columns: 1fr; }
    
    .path-row { flex-direction: column; align-items: center; gap: 3rem; }
    .path-step-item:not(:last-child)::after { display: none; } /* Remove horiz line on mobile */
    
    .prompt-flex-row { flex-direction: column; text-align: center; }
    
    .consent-popup-box { flex-direction: column; gap: 1rem; text-align: center; }
    .consent-text { margin-right: 0; }
}