@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Mulish:wght@300;400;600;700&display=swap');

:root {
    --nutri-paper: #FFFCF7;
    --nutri-ink: #11131A;
    --nutri-shade: #F2EFE9;
    --nutri-vibrant1: #FF4D4D; /* Coral Red - Accent 1 */
    --nutri-vibrant2: #219EBC; /* Bright Teal - Accent 2 */
    --nutri-vibrant3: #FFB703; /* Yellow Highlights */
    --nutri-gradient: linear-gradient(135deg, var(--nutri-vibrant1), var(--nutri-vibrant3));
    
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Mulish', sans-serif;
    
    --pad-spacious: 16dvh;
    --rad-pill: 999px;
    --shadow-raised: 0 12px 35px rgba(17, 19, 26, 0.08);
}

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

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

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

/* =========================================================
   HEADER & NAVIGATION (Magazine Editorial Preset E)
   ========================================================= */
.top-bar-editorial {
    background: var(--nutri-paper);
    border-bottom: 1px solid var(--nutri-shade);
    padding: 3dvh 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.site-brand-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--nutri-ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-brand-logo span {
    letter-spacing: 0.05em;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
}

.mobile-toggle-hide {
    display: none;
}

.mobile-burger-icon {
    display: none;
    cursor: pointer;
}

.nav-links-menu {
    display: flex;
    gap: 3rem;
}

.nav-links-menu a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links-menu a:hover {
    color: var(--nutri-vibrant1);
}

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

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

/* =========================================================
   TYPOGRAPHY & BUTTONS
   ========================================================= */
.caps-heading {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--nutri-ink);
}

.body-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--nutri-ink);
}

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

.action-pill-btn {
    display: inline-block;
    background: var(--nutri-gradient);
    color: var(--nutri-paper);
    padding: 1.2rem 3rem;
    border-radius: var(--rad-pill);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-raised);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-pill-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.3);
}

.action-pill-btn-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: var(--rad-pill);
    border: 2px solid var(--nutri-vibrant2);
    color: var(--nutri-ink);
    font-weight: bold;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.action-pill-btn-outline:hover {
    background: var(--nutri-vibrant2);
    color: var(--nutri-paper);
}

/* =========================================================
   INDEX: EDITORIAL SPLIT
   ========================================================= */
.editorial-split-view {
    display: flex;
    height: 85svh;
}

.slogan-stripe {
    width: 32%;
    background: var(--nutri-vibrant1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-words {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 6.5rem);
    color: var(--nutri-paper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}

.photo-stripe {
    width: 68%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 26, 0.25);
}

.photo-words {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 10%;
    color: var(--nutri-paper);
}

.headline-max {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 800px;
}

.sub-headline-max {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

/* =========================================================
   INDEX: QUOTE BAND
   ========================================================= */
.quote-band-full {
    padding: var(--pad-spacious) 5%;
    background: var(--nutri-ink);
    color: var(--nutri-paper);
    text-align: center;
}

.wisdom-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
    position: relative;
}

.wisdom-quote::before {
    content: '“';
    color: var(--nutri-vibrant3);
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 10px;
}
.wisdom-quote::after {
    content: '”';
    color: var(--nutri-vibrant3);
    font-size: 1.5em;
    vertical-align: middle;
    margin-left: 10px;
}

/* =========================================================
   STORY SPLIT (Image + Text)
   ========================================================= */
.nutri-story-split {
    display: flex;
    padding: var(--pad-spacious) 5%;
    align-items: center;
    gap: 5%;
}

.reverse-split {
    flex-direction: row-reverse;
    background: var(--nutri-shade);
}

.story-visual {
    width: 45%;
    aspect-ratio: 1/1;
    border-radius: var(--rad-pill);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-raised);
}

.story-words {
    width: 50%;
}

/* =========================================================
   MAGAZINE GRID (Features)
   ========================================================= */
.nutri-methods-matrix {
    display: flex;
    padding: var(--pad-spacious) 5%;
    gap: 3rem;
    background: var(--nutri-shade);
}

.method-major {
    flex: 1.2;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: var(--rad-pill);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.method-major-head {
    color: var(--nutri-paper);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.5rem);
    text-transform: uppercase;
    z-index: 2;
}

.method-minor-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-minor {
    border-top: 3px solid var(--nutri-vibrant2);
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-ico {
    flex-shrink: 0;
}

.minor-head {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.minor-desc {
    color: #444;
}

/* =========================================================
   HOW IT WORKS (Horizontal Steps)
   ========================================================= */
.nutri-journey {
    padding: var(--pad-spacious) 5%;
    background: var(--nutri-paper);
}

.journey-track {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
}

.step-bg-num {
    font-family: var(--font-display);
    font-size: 10rem;
    opacity: 0.04;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    line-height: 1;
    color: var(--nutri-ink);
    z-index: 0;
}

.step-head {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--nutri-vibrant1);
}

.step-desc {
    position: relative;
    z-index: 1;
}

.step-line {
    width: 2px;
    background: var(--nutri-shade);
    margin: 2rem 0;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.action-band-editorial {
    padding: var(--pad-spacious) 5%;
    background: var(--nutri-shade);
    text-align: center;
}

.action-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--nutri-ink);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

/* =========================================================
   EXPERT PAGE SPECIFICS
   ========================================================= */
.expert-top-view {
    height: 60svh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.expert-top-words {
    position: relative;
    z-index: 2;
    color: var(--nutri-paper);
    padding: 0 5%;
}

.expert-stats-row {
    display: flex;
    padding: 6dvh 5%;
    justify-content: space-around;
    background: var(--nutri-paper);
    border-bottom: 1px solid var(--nutri-shade);
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--nutri-vibrant2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: #666;
}

/* =========================================================
   RESERVE PAGE SPECIFICS
   ========================================================= */
.reserve-info-strip {
    display: flex;
    padding: 6dvh 5%;
    gap: 3rem;
    background: var(--nutri-shade);
}

.reserve-info-item {
    flex: 1;
    border-top: 4px solid var(--nutri-vibrant1);
    padding-top: 1.5rem;
}

.info-ico {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.info-head {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.info-points {
    list-style: none;
    margin-top: 1.5rem;
}

.info-points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.point-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--rad-pill);
    background: var(--nutri-vibrant2);
    display: inline-block;
}

.form-holding-area {
    padding: var(--pad-spacious) 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--nutri-paper);
}

.form-head-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--nutri-vibrant1);
}

.nutri-booking-form {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nutri-booking-form input, 
.nutri-booking-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: var(--rad-pill);
    border: 1px solid #CCC;
    background: #FFF;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.nutri-booking-form textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 140px;
}

.nutri-booking-form input:focus, 
.nutri-booking-form textarea:focus {
    outline: none;
    border-color: var(--nutri-vibrant2);
}

.policy-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.policy-check-wrap input {
    width: auto;
    margin-top: 5px;
}

.policy-text a {
    color: var(--nutri-vibrant2);
    text-decoration: underline;
}

.form-submit-btn {
    margin-top: 1rem;
    width: 100%;
}

.mailto-link-wrap {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.mailto-link-wrap a {
    color: var(--nutri-vibrant2);
    font-weight: bold;
}

.faq-editorial-area {
    padding: var(--pad-spacious) 5%;
    background: var(--nutri-shade);
    max-width: 100%;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    border-bottom: 1px solid #DDD;
    padding-bottom: 1.5rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--nutri-ink);
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: #444;
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-doc-area {
    padding: var(--pad-spacious) 10%;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 60vh;
}

/* =========================================================
   FOOTER
   ========================================================= */
.bottom-info-area {
    background: var(--nutri-ink);
    color: var(--nutri-shade);
    padding: 6dvh 5% 3dvh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--nutri-paper);
}

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

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 600px;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    width: 100%;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-notice-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--nutri-ink);
    color: var(--nutri-paper);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-acts {
    display: flex;
    gap: 1rem;
}

.cookie-act-btn {
    background: var(--nutri-vibrant3);
    color: var(--nutri-ink);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--rad-pill);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.cookie-act-btn.outline-btn {
    background: transparent;
    border: 1px solid var(--nutri-shade);
    color: var(--nutri-paper);
}

/* =========================================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================================= */
@media (max-width: 900px) {
    .nutri-story-split, .nutri-story-split.reverse-split {
        flex-direction: column;
        gap: 3rem;
    }
    .story-visual, .story-words {
        width: 100%;
    }
    .story-visual {
        aspect-ratio: 16/9;
        border-radius: 40px; /* Adapting pill for wide image */
    }
    
    .nutri-methods-matrix {
        flex-direction: column;
    }
    .method-major {
        aspect-ratio: 16/9;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-burger-icon {
        display: block;
        z-index: 1001;
        position: relative;
    }
    
    .nav-links-menu {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--nutri-paper);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        gap: 2.5rem;
    }
    
    .nav-links-menu a {
        font-size: 1.5rem;
    }
    
    .mobile-toggle-hide:checked ~ .nav-links-menu {
        transform: translateY(0);
    }
    
    .editorial-split-view {
        flex-direction: column;
        height: auto;
    }
    
    .slogan-stripe, .photo-stripe {
        width: 100%;
    }
    
    .slogan-stripe {
        padding: 2rem 0;
    }
    
    .vertical-words {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.5rem;
    }
    
    .photo-stripe {
        height: 60vh;
    }
    
    .journey-track {
        flex-direction: column;
    }
    
    .step-line {
        width: 100%;
        height: 2px;
        margin: 1rem 0;
    }
    
    .reserve-info-strip {
        flex-direction: column;
    }
    
    .cookie-notice-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .expert-top-view {
        height: 50vh;
    }
}