/* ── SELF-HOSTED FONTS ── */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal; font-weight: 300; font-display: swap;
    src: url('fonts/cormorant-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal; font-weight: 400; font-display: swap;
    src: url('fonts/cormorant-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal; font-weight: 500; font-display: swap;
    src: url('fonts/cormorant-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic; font-weight: 300; font-display: swap;
    src: url('fonts/cormorant-300-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic; font-weight: 400; font-display: swap;
    src: url('fonts/cormorant-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal; font-weight: 300; font-display: swap;
    src: url('fonts/inter-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal; font-weight: 400; font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal; font-weight: 500; font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}

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

:root {
    --white:      #FFFFFF;
    --off-white:  #F8F6F3;
    --stone:      #E8E4DE;
    --text:       #1A1A18;
    --muted:      #6B6460;
    --light:      #9B948F;
    --gold:       #C9AA49;
    --gold-lt:    #C9AA49;
    --gold-accent: #C9AA49;
    --forest:     #1E3526;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 28px 0;
    transition: background .4s, padding .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom-color: var(--stone);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo svg, .nav-logo img { height: 50px; width: auto; transition: height .3s; }
nav.scrolled .nav-logo svg, nav.scrolled .nav-logo img { height: 38px; }
/* White logo on dark hero */
nav:not(.scrolled) .nav-logo { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 12px; font-weight: 400; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none;
    color: rgba(255,255,255,.85); transition: opacity .2s;
}
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: var(--gold-accent); opacity: 1; }
nav.scrolled .nav-links a:not(.nav-cta):hover,
nav.scrolled .nav-links a:not(.nav-cta).active { color: var(--gold); }
.nav-links .nav-cta:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }

.nav-cta {
    font-size: 11px; font-weight: 500; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,.5); color: white;
    transition: all .2s; border-radius: 4px;
}
nav.scrolled .nav-cta { border-color: var(--text); color: var(--text); }
.nav-cta:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }
nav.scrolled .nav-cta:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }

.nav-mobile-right {
    display: none; align-items: center; gap: 16px;
}
.nav-cta-mobile {
    font-size: 11px; font-weight: 500; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none;
    padding: 9px 18px;
    background: var(--gold); color: var(--text);
    transition: background .2s; border-radius: 4px;
}
.nav-cta-mobile:hover { background: var(--gold-accent); }
.burger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
}
.burger span {
    display: block; width: 22px; height: 1.5px;
    background: white; transition: all .3s;
    border-radius: 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
nav.scrolled .burger span { background: var(--text); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: var(--forest); z-index: 99;
    padding: 110px 48px 48px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; display: block; }
.mobile-nav a {
    display: block; font-family: var(--serif); font-size: 34px;
    font-weight: 300; color: white; text-decoration: none;
    padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
    height: 100vh; min-height: 680px;
    position: relative; display: flex;
    align-items: center; justify-content: center;
    background: var(--forest); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #1E3526 0%, #2C4A38 45%, #121E16 100%);
}
/* Image placeholder — swap src="" once images arrive */
.hero-img {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(14,28,18,.25) 0%, rgba(8,18,11,.65) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: white;
    max-width: 920px; padding: 0 24px;
}
.eyebrow-hero {
    font-family: var(--sans); font-size: 11px; font-weight: 400;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-lt); margin-bottom: 36px;
}
.hero h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(60px, 9.5vw, 124px);
    line-height: .92; letter-spacing: -.01em;
    margin-bottom: 44px;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(
        105deg,
        var(--gold-lt) 0%,
        var(--gold-lt) 35%,
        #f5e9b8 48%,
        #fffae8 54%,
        var(--gold-lt) 65%,
        var(--gold-lt) 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
    0%   { background-position: 150% center; }
    100% { background-position: -50% center; }
}
.hero-meta {
    font-family: var(--sans); font-size: 13px; font-weight: 400;
    letter-spacing: .14em; color: rgba(255,255,255,.7);
    margin-bottom: 52px; text-transform: uppercase;
}
.hero .btn-outline-white {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.scroll-hint {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 9px; letter-spacing: .2em;
    text-transform: uppercase; color: rgba(255,255,255,.3);
}
.scroll-line {
    width: 1px; height: 44px; background: rgba(255,255,255,.25);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.25} 50%{opacity:.7} }

/* ── BUTTONS ── */
.btn {
    display: inline-block; font-family: var(--sans);
    font-size: 11px; font-weight: 500; letter-spacing: .13em;
    text-transform: uppercase; text-decoration: none;
    padding: 15px 38px; transition: all .22s;
    border-radius: 4px;
}
.btn-outline-white { border: 1px solid rgba(255,255,255,.5); color: white; }
.btn-outline-white:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }
.btn-dark { background: var(--text); border: 1px solid var(--text); color: white; }
.btn-dark:hover { background: transparent; color: var(--text); }
.btn-outline-dark { border: 1px solid var(--text); color: var(--text); }
.btn-outline-dark:hover { background: var(--gold-accent); color: var(--text); border-color: var(--gold-accent); }
.btn-forest { background: var(--forest); border: 1px solid var(--forest); color: white; }
.btn-forest:hover { background: transparent; color: var(--forest); }
.btn-outline-forest { border: 1px solid rgba(255,255,255,.4); color: white; }
.btn-outline-forest:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-xl { padding: 144px 0; }
.section-lg { padding: 112px 0; }
.section-md { padding: 80px 0; }

.eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 400;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-lt); }

h2.display {
    font-family: var(--serif); font-size: clamp(42px, 5.5vw, 74px);
    font-weight: 300; line-height: 1.04; letter-spacing: -.01em;
    color: var(--text);
}
h2.display.center { text-align: center; }
h2.display.white { color: white; }
h2.display em { font-style: italic; color: var(--gold); }
h2.display.white em { color: var(--gold-lt); }

h3.section-h {
    font-family: var(--serif); font-size: clamp(28px, 3vw, 44px);
    font-weight: 300; line-height: 1.15; color: var(--text);
}

.rule { width: 36px; height: 1px; background: var(--gold); margin: 28px 0; }
.rule.center { margin: 28px auto; }

p.lead {
    font-size: 18px; font-weight: 300; line-height: 1.82;
    color: var(--muted);
}
p.body {
    font-size: 15px; font-weight: 300; line-height: 1.78;
    color: var(--muted);
}

/* ── HOOK ── */
.hook-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 88px; align-items: start; margin-top: 72px;
}
.hook-tagline {
    font-family: var(--serif); font-size: 24px; font-style: italic;
    font-weight: 300; color: var(--text); margin-top: 40px; line-height: 1.5;
}
.sidebar-box {
    background: var(--off-white); padding: 48px;
    border-left: 2px solid var(--gold);
}
.sidebar-box h4 {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--text); margin-bottom: 28px;
}
.dot-list { list-style: none; }
.dot-list li {
    font-size: 15px; font-weight: 300; color: var(--muted);
    padding: 13px 0 13px 20px;
    border-bottom: 1px solid var(--stone);
    position: relative;
}
.dot-list li:last-child { border-bottom: none; }
.dot-list li::before {
    content: ''; position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 7px; height: 1px; background: var(--gold);
}

/* ── WINGS ── */
.wing .img-placeholder { align-items: stretch; }
.wing .img-placeholder img { display: block; }
.wings-bg { background: var(--off-white); }
.wings-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--stone); margin-top: 72px;
}
.wing { background: var(--white); padding: 64px 56px; }
.wing-num {
    font-family: var(--serif); font-size: 88px; font-weight: 300;
    color: var(--stone); line-height: 1; margin-bottom: 20px;
}
.wing h3 {
    font-family: var(--serif); font-size: 34px; font-weight: 300;
    color: var(--text); margin-bottom: 8px;
}
.wing-teacher {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
}
.wing .person-cred {
    font-size: 0.75rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
    margin-top: 4px; margin-bottom: 16px;
}
.wings-footer {
    text-align: center; margin-top: 56px;
    font-family: var(--serif); font-size: 22px;
    font-style: italic; font-weight: 500; color: var(--text);
}

/* ── RHYTHM ── */
.rhythm-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--stone); margin-top: 72px;
}
.rhythm-step { background: var(--white); padding: 56px 48px; }
.rhythm-time {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.rhythm-step h3 {
    font-family: var(--serif); font-size: 30px; font-weight: 300;
    color: var(--text); margin-bottom: 16px;
}
.rhythm-step .rhythm-subtitle {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.rhythm-note {
    margin-top: 56px; max-width: 620px;
    margin-left: auto; margin-right: auto;
    text-align: center; font-family: var(--serif);
    font-size: 24px; font-style: italic; font-weight: 500;
    color: var(--text); line-height: 1.8;
}

/* ── TESTIMONIALS ── */
.proof-bg {
    background-color: var(--forest);
    background-image: url('images/sattva-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 48px; margin-top: 72px;
}
.testimonial {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15);
}
.quote {
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    font-style: italic; line-height: 1.5;
    color: rgba(255,255,255,.88); margin-bottom: 24px;
}
.author {
    font-family: var(--sans); font-size: 11px; font-weight: 400;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-lt);
}
.stats-row {
    display: flex; gap: 72px; margin-top: 88px;
    padding-top: 56px; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
    font-family: var(--serif); font-size: 68px; font-weight: 300;
    color: white; line-height: 1; margin-bottom: 8px;
}
.stat-label {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.45); letter-spacing: .04em;
}

/* ── LOCATION ── */
.loc-grid {
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 80px; align-items: center; margin-top: 72px;
}
.img-placeholder {
    background: var(--stone); display: flex;
    align-items: flex-end; padding: 20px; overflow: hidden;
}
.img-placeholder.ratio-4-3 { aspect-ratio: 4/3; }
.img-placeholder.ratio-3-4 { aspect-ratio: 3/4; }
.img-placeholder span {
    font-family: var(--sans); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--light);
}
.feat-list { list-style: none; margin-top: 36px; }
.feat-list li {
    font-size: 15px; font-weight: 300; color: var(--muted);
    padding: 13px 0 13px 20px;
    border-bottom: 1px solid var(--stone);
    position: relative;
}
.feat-list li:first-child { border-top: 1px solid var(--stone); }
.feat-list li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 7px; height: 1px;
    background: var(--gold);
}

/* ── GALLERY ── */
.gallery-bg { background: var(--off-white); }
.masonry-grid {
    columns: 3;
    column-gap: 10px;
    margin-top: 56px;
}
.masonry-grid img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
}
@media (max-width: 1024px) { .masonry-grid { columns: 2; } }
@media (max-width: 640px)  { .masonry-grid { columns: 1; } }

/* ── INCLUDED ── */
.included-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: var(--stone); margin-top: 72px;
}
.inc-item { background: var(--white); padding: 36px 32px; }
.inc-rule { width: 24px; height: 1px; background: var(--gold); margin-bottom: 18px; }

/* ── FOR YOU ── */
.for-you-bg { background: var(--off-white); }
.for-you-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 72px;
}
.for-you-col h3 {
    font-family: var(--serif); font-size: 28px; font-weight: 300;
    color: var(--text); margin-bottom: 28px;
}
.check-list { list-style: none; }
.check-list li {
    font-size: 15px; font-weight: 300; color: var(--muted);
    padding: 13px 0 13px 20px;
    border-bottom: 1px solid var(--stone); position: relative;
}
.check-list li:first-child { border-top: 1px solid var(--stone); }
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 7px; height: 1px; background: var(--gold);
}
.check-list.dim li::before { background: var(--light); }
.check-list.dim li { color: var(--light); }
.apply-note {
    margin-top: 64px; padding: 44px 48px;
    background: var(--white); border-left: 2px solid var(--gold);
}
.apply-note p {
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    font-style: italic; color: var(--text); line-height: 1.6;
}
.apply-note strong { font-style: normal; font-weight: 500; color: var(--gold); }

/* ── ABOUT ── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; margin-top: 72px;
}
.person-name {
    font-family: var(--serif); font-size: 44px;
    font-weight: 300; color: var(--text); margin-bottom: 8px;
}
.person-cred {
    font-family: var(--sans); font-size: 11px; font-weight: 400;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.about-note {
    text-align: center; margin-top: 72px;
    font-family: var(--serif); font-size: 24px;
    font-style: italic; font-weight: 300; color: var(--muted);
    max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ── PRICING ── */
.pricing-bg { background: var(--off-white); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 72px;
    max-width: 980px; margin-left: auto; margin-right: auto;
}
.price-card {
    background: var(--white); padding: 48px 40px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.price-card.featured { background: var(--forest); }
.price-card:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    position: relative; z-index: 1;
}
.price-tier {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.price-card.featured .price-tier { color: var(--gold-lt); }
.price-amount {
    font-family: var(--serif); font-size: 58px; font-weight: 300;
    color: var(--text); line-height: 1; margin-bottom: 4px;
}
.price-card.featured .price-amount { color: white; }
.price-period {
    font-size: 13px; font-weight: 300; color: var(--muted);
    margin-bottom: 32px;
}
.price-card.featured .price-period { color: rgba(255,255,255,.5); }
.price-hr { width: 100%; height: 1px; background: var(--stone); margin-bottom: 28px; }
.price-card.featured .price-hr { background: rgba(255,255,255,.15); }
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
    font-size: 14px; font-weight: 300; color: var(--muted);
    padding: 10px 0 10px 16px;
    border-bottom: 1px solid var(--stone);
    position: relative;
}
.price-card.featured .price-features li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); }
.price-features li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 6px; height: 1px; background: var(--gold);
}
.price-card.featured .price-features li::before { background: var(--gold-lt); }
.pricing-note {
    max-width: 620px; margin: 44px auto 0;
    text-align: center; font-size: 13px; font-weight: 300;
    color: var(--muted); line-height: 1.8;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 72px auto 0; }
.faq-item { border-top: 1px solid var(--stone); }
.faq-item:last-child { border-bottom: 1px solid var(--stone); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0; cursor: pointer; user-select: none;
}
.faq-q span {
    font-family: var(--serif); font-size: 20px; font-weight: 300;
    color: var(--text); flex: 1; padding-right: 24px;
}
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background: var(--gold);
    transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-icon::after  { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item.open .faq-icon::before { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
    font-size: 15px; font-weight: 300; color: var(--muted);
    line-height: 1.8; max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 28px; }

/* ── FINAL CTA ── */
.cta-bg {
    background-color: var(--forest);
    background-image: url('images/sattva-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    text-align: center;
}
.cta-bg h2 { color: white; margin-bottom: 28px; }
.cta-meta {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 52px;
}
.cta-sub {
    margin-top: 36px; font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.35); line-height: 1.85;
}

/* ── FOOTER ── */
footer {
    background: var(--white); padding: 52px 0;
    border-top: 1px solid var(--stone);
}
.footer-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
    font-family: var(--serif); font-size: 18px;
    font-weight: 300; color: var(--text);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
    font-size: 13px; font-weight: 300; color: var(--muted);
    text-decoration: none; letter-spacing: .04em; transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; font-weight: 300; color: var(--light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hook-grid, .loc-grid, .about-grid, .for-you-grid { grid-template-columns: 1fr; gap: 48px; }
    .wings-grid, .rhythm-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
    .included-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .stats-row { flex-wrap: wrap; gap: 40px; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 1024px) {
    .nav-inner { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-mobile-right { display: flex; }
    .burger { display: flex; }
    .mobile-nav { display: block; }
}
@media (max-width: 768px) {
    .section-xl { padding: 88px 0; }
    .section-lg { padding: 72px 0; }
    .section-md { padding: 56px 0; }
    .container { padding: 0 20px; }
    .hero h1 { font-size: clamp(52px, 13vw, 76px); }
    .included-grid { grid-template-columns: 1fr; }
    .sidebar-box, .apply-note { padding: 32px 24px; }

    /* Headlines mobile größer */
    h2.display { font-size: clamp(52px, 12vw, 74px); }
    h3.section-h { font-size: clamp(34px, 8vw, 44px); }
    .wing h3 { font-size: clamp(30px, 7vw, 40px); }
    #system .container { padding: 0 8px; }
    .wing { padding: 48px 24px; }
    .rhythm-step h3 { font-size: clamp(28px, 6vw, 36px); }

    /* 15px texte auf mobile etwas größer */
    p.body,
    .dot-list li,
    .check-list li,
    .feat-list li,
    .price-features li { font-size: 16px; }
}

/* ── MODAL ── */
.modal-overlay {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(30, 53, 38, 0.92);
    overflow-y: auto;
    padding: 40px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-box {
    background: #fff;
    width: 100%;
    max-width: 600px;
    padding: 56px 48px;
    position: relative;
    border-radius: 4px;
    margin: auto;
    transform: translateY(24px);
    transition: transform 1s ease;
}
.modal-overlay.open .modal-box {
    transform: translateY(0);
}
@media (max-width: 640px) { .modal-box { padding: 40px 24px; } }
.modal-package-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 28px;
}
.modal-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 8px;
}
.modal-sub {
    font-size: 0.9rem;
    color: var(--text-lt);
    margin-bottom: 36px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-lt);
    line-height: 1;
    padding: 4px 8px;
}
.modal-close:hover { color: var(--forest); }
.modal-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 6px;
    margin-top: 24px;
}
.modal-form label:first-of-type { margin-top: 0; }
.modal-form input,
.modal-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
    outline: none;
    resize: none;
    transition: border-color .2s;
}
.modal-form input:focus,
.modal-form textarea:focus { border-bottom-color: var(--forest); }
.modal-form textarea { min-height: 80px; }
.btn-submit {
    margin-top: 36px;
    background: var(--forest);
    color: white;
    border: none;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s;
}
.btn-submit:hover { background: var(--gold); }

/* ── PRIVACY MODAL ── */
.privacy-box {
    max-width: 780px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 64px 64px 56px;
}
@media (max-width: 640px) { .privacy-box { padding: 48px 24px 40px; } }

.privacy-content h4 {
    font-family: var(--sans);
    font-size: 10px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-top: 40px; margin-bottom: 12px;
}
.privacy-content h4:first-child { margin-top: 0; }
.privacy-content p {
    font-family: var(--serif);
    font-size: 17px; font-weight: 300;
    line-height: 1.85; color: var(--muted);
    margin-bottom: 12px;
}
.privacy-content strong { font-weight: 500; color: var(--text); font-style: normal; }
.privacy-content ul {
    list-style: none; margin: 8px 0 16px;
}
.privacy-content ul li {
    font-family: var(--serif);
    font-size: 17px; font-weight: 300;
    line-height: 1.85; color: var(--muted);
    padding: 6px 0 6px 20px; position: relative;
}
.privacy-content ul li::before {
    content: ''; position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 7px; height: 1px; background: var(--gold);
}
.privacy-content a {
    color: var(--forest); text-decoration: none;
    border-bottom: 1px solid var(--stone); transition: border-color .2s;
}
.privacy-content a:hover { border-bottom-color: var(--gold); }


/* ============================================================
   RETREAT SERIES SECTION
   ============================================================ */
.series-bg { background: var(--off-white); }

.series-sub {
    text-align: center;
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    color: var(--muted);
    margin-top: 16px;
    margin-bottom: 64px;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--stone);
}

.series-card {
    background: var(--off-white);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.series-card--active {
    background: var(--white);
}

.series-date {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.series-theme {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.series-status {
    margin-top: auto;
    padding-top: 24px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.series-status--open {
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: color .2s;
}

.series-status--open:hover,
.series-status--open a:hover {
    color: var(--gold);
}

.series-status--open a {
    color: inherit;
    text-decoration: none;
}

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