:root {
    --ink: #1d241f;
    --muted: #6c6259;
    --ivory: #fffaf0;
    --paper: #f8f1e5;
    --sand: #dfc49b;
    --gold: #c99a43;
    --terra: #a4573f;
    --teal: #0f6d75;
    --aqua: #83cbd3;
    --deep: #06364b;
    --line: rgba(29, 36, 31, .12);
    --shadow: 0 24px 80px rgba(49, 34, 18, .15);
    --glass: rgba(255, 250, 240, .72);
    --glass-line: rgba(255, 255, 255, .62);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(131,203,211,.16), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(201,154,67,.12), transparent 28%),
        linear-gradient(180deg, rgba(255,250,240,.96), rgba(248,241,229,.96)),
        url("../img/texture.jpg") center/780px repeat;
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

#repel-canvas {
    position: fixed;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    opacity: .62;
    mix-blend-mode: screen;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 {
    margin: 0 0 1rem;
    line-height: .98;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 600;
}
h1 { font-size: clamp(3rem, 9vw, 7.6rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4.6vw, 4.6rem); }
h3 { font-size: 1.55rem; }

.site-header {
    position: fixed;
    top: 1rem;
    left: clamp(.8rem, 3vw, 2rem);
    right: clamp(.8rem, 3vw, 2rem);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .58rem .7rem .58rem .78rem;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, .74), rgba(255, 255, 255, .34)),
        linear-gradient(90deg, rgba(15, 109, 117, .08), rgba(201, 154, 67, .08));
    border: 1px solid rgba(255, 255, 255, .62);
    border-top-color: rgba(255, 255, 255, .86);
    border-radius: 999px;
    box-shadow:
        0 22px 70px rgba(22, 27, 24, .16),
        inset 0 1px 0 rgba(255, 255, 255, .76),
        inset 0 -1px 0 rgba(15, 109, 117, .08);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .68rem;
    font-weight: 800;
    color: var(--deep);
    min-width: 0;
    padding: .22rem .8rem .22rem .24rem;
    border-radius: 999px;
    background: rgba(255, 250, 240, .5);
    border: 1px solid rgba(255, 255, 255, .52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(6,54,75,.14));
}
.brand span { white-space: nowrap; font-size: .95rem; }

.site-nav {
    display: flex;
    align-items: center;
    gap: .18rem;
    padding: .24rem;
    font-size: .9rem;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255, 255, 255, .26);
    border: 1px solid rgba(255, 255, 255, .44);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.site-nav a {
    position: relative;
    color: rgba(6,54,75,.86);
    padding: .66rem .82rem;
    border-radius: 999px;
    letter-spacing: .005em;
    transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.site-nav a:hover {
    color: var(--deep);
    background: rgba(255, 250, 240, .64);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px rgba(15,109,117,.1);
    transform: translateY(-1px);
}
.nav-cta {
    padding: .68rem 1rem !important;
    border: 1px solid rgba(15,109,117,.24);
    background:
        linear-gradient(135deg, rgba(15,109,117,.92), rgba(6,54,75,.9)) !important;
    color: white !important;
    box-shadow: 0 12px 28px rgba(6,54,75,.2), inset 0 1px 0 rgba(255,255,255,.22);
}
.nav-toggle { display: none; }

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 8rem clamp(1rem, 5vw, 5rem) 3rem;
    overflow: hidden;
    isolation: isolate;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 24%, rgba(131,203,211,.14) 32%, transparent 46% 100%),
        radial-gradient(ellipse at 38% 76%, rgba(255,250,240,.12), transparent 44%);
    mix-blend-mode: screen;
    opacity: .64;
    transform: translateX(-8%);
    animation: riverSheen 13s ease-in-out infinite alternate;
}
.hero-bg, .hero-flow, .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-bg {
    object-fit: cover;
    object-position: 42% 34%;
    z-index: -4;
    transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-flow {
    z-index: -3;
    object-fit: cover;
    object-position: center;
    opacity: .54;
    filter: saturate(.9) contrast(1.05);
}
.hero-overlay {
    z-index: -2;
    background:
        radial-gradient(circle at 74% 44%, rgba(15,109,117,.12), transparent 34%),
        linear-gradient(90deg, rgba(10, 21, 18, .88), rgba(10, 21, 18, .54) 48%, rgba(10, 21, 18, .32)),
        linear-gradient(0deg, rgba(29, 36, 31, .5), transparent 44%);
}
.hero-content { max-width: 890px; color: white; padding-top: 6vh; }
.hero-content h1 {
    max-width: 780px;
    font-size: clamp(3rem, 7vw, 5.9rem);
}
.hero-content p { max-width: 670px; color: rgba(255,255,255,.88); font-size: 1.12rem; }
.hero-note {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    bottom: 2.5rem;
    width: min(330px, calc(100% - 2rem));
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,250,240,.84), rgba(255,255,255,.48));
    border: 1px solid var(--glass-line);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.hero-note span, .course-card span { display: block; color: var(--teal); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.hero-note strong { display: block; font-family: Georgia, serif; font-size: 1.2rem; margin: .25rem 0 .5rem; }
.hero-note a, .text-link, .post-card a, .card a { color: var(--teal); font-weight: 700; }

@keyframes heroDrift {
    0% { transform: scale(1.04) translate3d(-.6%, -.2%, 0); }
    100% { transform: scale(1.08) translate3d(.8%, .35%, 0); }
}

@keyframes riverSheen {
    0% { transform: translateX(-10%) translateY(0); opacity: .46; }
    100% { transform: translateX(8%) translateY(1.4%); opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-flow,
    .hero::after,
    .well-orbit span {
        animation: none;
    }
    .hero-flow { display: none; }
    .js-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.eyebrow {
    margin-bottom: .75rem;
    color: var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 800;
}
.actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .85rem 1.2rem;
    border: 1px solid var(--line);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(15,109,117,.18); }
.btn.primary { background: var(--teal); color: white; border-color: var(--teal); }
.btn.light { background: rgba(255,250,240,.88); color: var(--ink); }

.section { padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem); }
.section:nth-of-type(odd):not(.warm-band):not(.quote-section):not(.sanctuary) {
    background: linear-gradient(180deg, rgba(255,250,240,.5), rgba(248,241,229,.72));
}
.narrow { max-width: 960px; margin: 0 auto; }
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: start;
}
.intro-copy p {
    color: var(--deep);
    font-size: 1.12rem;
}
.intro-copy p + p {
    color: var(--muted);
    margin-top: 1rem;
}

.vision-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,250,240,.92), rgba(225,239,241,.76)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.vision-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}
.vision-copy {
    max-width: 620px;
    padding: clamp(1.1rem, 2.5vw, 1.8rem);
    background: linear-gradient(135deg, rgba(255,250,240,.68), rgba(255,255,255,.42));
    border: 1px solid rgba(255,255,255,.64);
    box-shadow: 0 14px 44px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.vision-copy p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}
.vision-lines {
    display: grid;
    gap: .75rem;
}
.vision-lines span {
    display: block;
    padding: 1rem 1.1rem;
    color: var(--ink);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,250,240,.76), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 42px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.resonance-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(201,154,67,.16), transparent 28%),
        radial-gradient(circle at 88% 84%, rgba(131,203,211,.18), transparent 32%),
        linear-gradient(180deg, rgba(248,241,229,.96), rgba(255,250,240,.84));
}
.resonance-panel {
    display: grid;
    grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.2rem, 3vw, 2.3rem);
    background:
        linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.46));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 24px 80px rgba(49, 34, 18, .1), inset 0 1px 0 rgba(255,255,255,.74);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
}
.resonance-intro {
    position: sticky;
    top: 7.5rem;
}
.resonance-intro p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.05rem;
}
.resonance-intro .btn {
    margin-top: .7rem;
}
.resonance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin: 0;
}
.resonance-list span {
    position: relative;
    display: grid;
    align-content: start;
    gap: .85rem;
    min-height: 170px;
    padding: 1.1rem;
    overflow: hidden;
    color: var(--deep);
    font-weight: 800;
    line-height: 1.45;
    background: linear-gradient(135deg, rgba(255,250,240,.82), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 16px 48px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.resonance-list span:hover {
    transform: translateY(-4px);
    border-color: rgba(201,154,67,.34);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .13), inset 0 1px 0 rgba(255,255,255,.7);
}
.resonance-list span::before {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.28), transparent 68%);
}
.resonance-list strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--teal);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    background: rgba(131,203,211,.2);
    border: 1px solid rgba(15,109,117,.16);
}

.gallery-band {
    display: grid;
    grid-template-columns: 1fr 1.2fr .9fr 1fr;
    gap: .75rem;
    padding: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}
.gallery-band img {
    width: 100%;
    height: clamp(280px, 36vw, 560px);
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(49, 34, 18, .12);
}
.gallery-band img:nth-child(1) { margin-top: 4rem; object-position: center top; }
.gallery-band img:nth-child(2) { height: clamp(340px, 42vw, 660px); }
.gallery-band img:nth-child(3) { margin-top: 7rem; }
.gallery-band img:nth-child(4) { margin-top: 2rem; object-position: center top; }
.wellness-gallery img:nth-child(1) { object-position: center; }
.wellness-gallery img:nth-child(2) { object-position: center; }
.wellness-gallery img:nth-child(3) { object-position: center; }
.wellness-gallery img:nth-child(4) { object-position: center; }

.js-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .78s ease, transform .78s ease;
    will-change: opacity, transform;
}
.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.split {
    display: grid;
    grid-template-columns: minmax(260px, 500px) minmax(0, 1fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1fr) minmax(260px, 500px); }
.image-frame {
    overflow: hidden;
    border: 1px solid var(--glass-line);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.65);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.image-frame img { width: 100%; height: 620px; object-fit: cover; }
.image-frame.tall img { height: 720px; object-position: center top; }
.copy-stack { max-width: 720px; }
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin: 1.5rem 0;
}
.stat-row span {
    padding: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.stat-row strong { display: block; color: var(--deep); font-size: 1.7rem; }

.warm-band {
    background:
        linear-gradient(135deg, rgba(6,54,75,.92), rgba(15,109,117,.84)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: white;
}
.warm-band p { color: rgba(255,255,255,.78); }
.steps, .cards, .post-grid, .payment-grid, .principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.steps article, .card, .post-card, .payment-grid article, .principles article, .form-panel, .course-card {
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.62);
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 16px 60px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.64);
}
.card, .post-card, .payment-grid article, .principles article, .form-panel, .course-card {
    backdrop-filter: blur(10px);
}
.card:hover, .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14);
}
.card, .post-card { transition: transform .22s ease, box-shadow .22s ease; }
.warm-band .steps article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); box-shadow: none; }
.steps span { color: var(--gold); font-weight: 900; }
.steps.large article { min-height: 260px; }

.section-heading { max-width: 820px; margin-bottom: 2rem; }
.section-heading.inline {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.resources-hero {
    background:
        linear-gradient(135deg, rgba(255,250,240,.92), rgba(223,196,155,.38)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.resources-hero h1,
.post-hero h1 {
    max-width: 980px;
}
.resources-hero p,
.post-hero p {
    max-width: 720px;
}
.resources-feature {
    padding-bottom: 1rem;
}
.featured-post {
    max-width: 1120px;
    min-height: 390px;
    display: grid;
    align-items: end;
    padding: clamp(1.35rem, 4vw, 3rem);
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(6,54,75,.9), rgba(15,109,117,.72)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: white;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.24);
}
.featured-post::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255,255,255,.2);
    pointer-events: none;
}
.featured-post > div {
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.featured-post span,
.post-card span {
    display: block;
    margin-bottom: .7rem;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.featured-post h2 {
    color: white;
    margin-bottom: .75rem;
}
.featured-post p {
    color: rgba(255,255,255,.82);
}
.featured-post .btn {
    margin-top: 1rem;
}
.resources-list {
    padding-top: 2rem;
}
.home-resources {
    background:
        radial-gradient(circle at 88% 12%, rgba(131,203,211,.18), transparent 28%),
        linear-gradient(180deg, rgba(248,241,229,.5), rgba(255,250,240,.82));
}
.home-resources .post-grid {
    align-items: stretch;
}
.post-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-card p {
    color: var(--muted);
}
.post-card a {
    margin-top: auto;
}
.empty-state {
    max-width: 760px;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(255,250,240,.84), rgba(255,255,255,.55));
    border: 1px solid rgba(15,109,117,.16);
    box-shadow: 0 18px 60px rgba(49,34,18,.09), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
}
.empty-state.compact {
    padding: clamp(1.1rem, 3vw, 1.75rem);
}

.post-hero {
    background:
        radial-gradient(circle at 86% 14%, rgba(131,203,211,.2), transparent 32%),
        linear-gradient(135deg, rgba(255,250,240,.92), rgba(223,196,155,.34)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.post-shell {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(0, 860px);
    gap: clamp(1.5rem, 6vw, 5rem);
    align-items: start;
}
.post-meta-card {
    position: sticky;
    top: 7rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.5));
    border: 1px solid rgba(15,109,117,.16);
    box-shadow: 0 16px 54px rgba(49,34,18,.08), inset 0 1px 0 rgba(255,255,255,.68);
    backdrop-filter: blur(10px);
}
.post-meta-card strong {
    display: block;
    color: var(--deep);
    margin: .35rem 0 1rem;
}
.post-body {
    padding: clamp(1.2rem, 4vw, 2.4rem);
    background: rgba(255,250,240,.52);
    border-left: 1px solid rgba(201,154,67,.34);
    box-shadow: inset 1px 0 0 rgba(255,255,255,.7);
}
.post-body.prose {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #342b25;
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 8vw, 7rem);
    background:
        linear-gradient(135deg, rgba(17,26,23,.92), rgba(6,54,75,.84)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: white;
}
.quote-section img { width: 100%; height: 560px; object-fit: cover; }
blockquote { margin: 0; }
blockquote p {
    color: white;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1;
}
cite { color: var(--sand); font-style: normal; }

.offerings-preview {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(131,203,211,.22), transparent 30%),
        linear-gradient(135deg, rgba(255,250,240,.88), rgba(225,239,241,.72)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.offerings-preview .section-heading {
    max-width: 860px;
}
.offerings-preview .section-heading p:not(.eyebrow) {
    max-width: 640px;
    font-size: 1.08rem;
}

.testimonial-preview {
    background:
        radial-gradient(circle at 8% 14%, rgba(201,154,67,.16), transparent 30%),
        radial-gradient(circle at 92% 82%, rgba(131,203,211,.2), transparent 32%),
        linear-gradient(180deg, rgba(255,250,240,.9), rgba(248,241,229,.94));
}
.testimonial-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: clamp(1.5rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2.4rem);
    background:
        linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.46));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 24px 80px rgba(49, 34, 18, .12), inset 0 1px 0 rgba(255,255,255,.74);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
}
.testimonial-copy {
    max-width: 620px;
}
.testimonial-copy p:not(.eyebrow) {
    font-size: 1.05rem;
}
.testimony-stack {
    display: grid;
    gap: 1rem;
}
.testimony-stories {
    display: grid;
    gap: 1rem;
}
.testimony-story {
    position: relative;
    overflow: hidden;
    padding: clamp(1.15rem, 2.4vw, 1.8rem);
    background:
        linear-gradient(135deg, rgba(255,250,240,.88), rgba(255,255,255,.58));
    border: 1px solid rgba(255,255,255,.74);
    box-shadow: 0 16px 42px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .22s ease, box-shadow .22s ease;
}
.testimony-story:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14), inset 0 1px 0 rgba(255,255,255,.72);
}
.testimony-story::before {
    content: "";
    position: absolute;
    right: -2.4rem;
    top: -2.4rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.22), transparent 68%);
}
.story-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.2rem;
    height: 2.4rem;
    margin-bottom: .9rem;
    padding: 0 .9rem;
    border-radius: 999px;
    color: var(--deep);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    background: rgba(131,203,211,.2);
    border: 1px solid rgba(15,109,117,.16);
}
.story-lead {
    position: relative;
    margin-bottom: 1rem;
    color: var(--deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    line-height: 1.12;
}
.testimony-story details {
    position: relative;
}
.testimony-story summary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .62rem .9rem;
    border-radius: 999px;
    color: var(--teal);
    font-size: .92rem;
    font-weight: 900;
    cursor: pointer;
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.testimony-story summary::-webkit-details-marker {
    display: none;
}
.testimony-story summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
}
.testimony-story details[open] summary::after {
    content: "-";
}
.story-body {
    display: grid;
    gap: .85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(29,36,31,.1);
}
.story-body p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.75;
}
.testimony-stack blockquote {
    position: relative;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,250,240,.88), rgba(255,255,255,.58));
    border: 1px solid rgba(255,255,255,.74);
    border-left: 4px solid var(--gold);
    box-shadow: 0 16px 42px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .22s ease, box-shadow .22s ease;
}
.testimony-stack blockquote:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14), inset 0 1px 0 rgba(255,255,255,.72);
}
.testimony-stack blockquote::before {
    content: "";
    position: absolute;
    right: -1.4rem;
    bottom: -1.4rem;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.3), transparent 68%);
}
.testimony-stack blockquote p {
    position: relative;
    margin-bottom: 1rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--deep);
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    line-height: 1.12;
}
.testimonial-preview .btn.primary {
    margin-top: .6rem;
}

.sanctuary {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 520px);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: end;
    background:
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(223,196,155,.42)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.sanctuary p:last-child { font-size: 1.18rem; }
.immersive-well {
    min-height: 74svh;
    isolation: isolate;
}
.immersive-well::before {
    content: "";
    position: absolute;
    inset: 8% 7%;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 48%, rgba(131,203,211,.44), transparent 18%),
        radial-gradient(circle at 50% 48%, rgba(15,109,117,.22), transparent 32%),
        radial-gradient(circle at 50% 48%, rgba(201,154,67,.16), transparent 48%);
    filter: blur(2px);
}
.well-orbit {
    position: absolute;
    right: clamp(1rem, 8vw, 9rem);
    top: 50%;
    width: min(42vw, 520px);
    aspect-ratio: 1;
    translate: 0 -50%;
    z-index: -1;
    opacity: .72;
}
.well-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(15,109,117,.26);
    border-radius: 50%;
    animation: wellPulse 7s ease-in-out infinite;
    box-shadow: inset 0 0 46px rgba(131,203,211,.16), 0 0 70px rgba(201,154,67,.08);
}
.well-orbit span:nth-child(2) {
    inset: 13%;
    animation-delay: -2s;
    border-color: rgba(201,154,67,.28);
}
.well-orbit span:nth-child(3) {
    inset: 26%;
    animation-delay: -4s;
    border-color: rgba(255,255,255,.46);
}
@keyframes wellPulse {
    0%, 100% { transform: scale(.92); opacity: .5; }
    50% { transform: scale(1.06); opacity: 1; }
}

.page-hero {
    min-height: 78svh;
    padding: 8rem clamp(1rem, 5vw, 5rem) 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 18%, rgba(15,109,117,.18), transparent 34%),
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(223,196,155,.34)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: clamp(1rem, 5vw, 5rem);
    right: clamp(1rem, 5vw, 5rem);
    bottom: 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,154,67,.8), transparent);
}
.page-hero.compact { min-height: 50svh; display: flex; align-items: end; }
.page-hero img { width: 100%; height: 640px; object-fit: cover; box-shadow: var(--shadow); position: relative; z-index: 1; }
.course-hero img, .contact-hero img { object-position: center; }

.portrait-rhythm, .course-strip {
    display: grid;
    grid-template-columns: .9fr 1.15fr .9fr;
    gap: .75rem;
    padding: .75rem clamp(1rem, 5vw, 5rem) 0;
    background: #111a17;
}
.portrait-rhythm img, .course-strip img {
    width: 100%;
    height: clamp(260px, 34vw, 520px);
    object-fit: cover;
    opacity: .92;
}
.portrait-rhythm img:nth-child(2), .course-strip img:nth-child(2) {
    height: clamp(320px, 40vw, 620px);
    margin-top: -3rem;
    opacity: 1;
}
.about-rhythm {
    position: relative;
    isolation: isolate;
    grid-template-columns: .82fr 1.12fr .9fr .96fr;
    align-items: start;
    padding-top: 1.15rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(131,203,211,.18), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(201,154,67,.18), transparent 32%),
        linear-gradient(135deg, #111a17, #06364b);
}
.about-rhythm::before {
    content: "";
    position: absolute;
    inset: 1rem clamp(1rem, 5vw, 5rem);
    z-index: -1;
    border: 1px solid rgba(255,255,255,.1);
    pointer-events: none;
}
.about-rhythm img {
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 22px 70px rgba(0,0,0,.18);
    filter: saturate(.96) contrast(1.02);
    transition: transform .42s ease, filter .42s ease, opacity .42s ease, box-shadow .42s ease;
}
.about-rhythm img:hover {
    opacity: 1;
    filter: saturate(1.06) contrast(1.05);
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 34px 90px rgba(0,0,0,.26), 0 0 0 1px rgba(201,154,67,.16);
}
.about-rhythm img:nth-child(1) {
    margin-top: 3.2rem;
    object-position: center top;
}
.about-rhythm img:nth-child(2) {
    height: clamp(340px, 41vw, 640px);
    margin-top: -2.4rem;
    object-position: center top;
}
.about-rhythm img:nth-child(3) {
    margin-top: 5.4rem;
    object-position: center top;
}
.about-rhythm img:nth-child(4) {
    height: clamp(310px, 38vw, 590px);
    margin-top: 1.4rem;
    object-position: center;
}

.approach-visual, .service-feature {
    display: grid;
    grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}
.approach-visual img, .service-feature img {
    width: 100%;
    height: clamp(420px, 48vw, 700px);
    object-fit: cover;
    box-shadow: var(--shadow);
}
.approach-visual div, .service-feature div {
    max-width: 720px;
}
.approach-opening {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
    background:
        radial-gradient(circle at 88% 8%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.82), rgba(248,241,229,.88));
}
.approach-opening-copy {
    max-width: 760px;
}
.approach-opening-copy p:not(.eyebrow),
.approach-god-copy p {
    font-size: 1.08rem;
}
.approach-opening-image,
.approach-god-image {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.72);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.approach-opening-image img,
.approach-god-image img {
    width: 100%;
    height: clamp(420px, 48vw, 680px);
    object-fit: cover;
    transition: transform .7s ease;
}
.approach-opening-image:hover img,
.approach-god-image:hover img {
    transform: scale(1.04);
}
.approach-uncover {
    background:
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(225,239,241,.68)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.approach-uncover .section-heading p:not(.eyebrow) {
    max-width: 680px;
    font-size: 1.06rem;
}
.approach-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .85rem;
}
.approach-card-grid article {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.45rem);
    background: linear-gradient(135deg, rgba(255,250,240,.84), rgba(255,255,255,.5));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 16px 48px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease;
}
.approach-card-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14);
}
.approach-card-grid article::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.28), transparent 68%);
}
.approach-card-grid span {
    display: inline-flex;
    margin-bottom: 1.1rem;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .12em;
}
.approach-card-grid h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.approach-card-grid p {
    position: relative;
    margin: 0;
    font-size: .95rem;
}
.approach-shift .section-heading {
    max-width: 960px;
}
.approach-god {
    display: grid;
    grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
}
.approach-god-image img {
    object-position: center;
}
.approach-god-copy {
    max-width: 760px;
}
.approach-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 1.5rem 0 1rem;
}
.approach-checks span {
    position: relative;
    padding: .95rem 1rem .95rem 2.7rem;
    color: var(--deep);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 42px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.approach-checks span::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(201,154,67,.12);
}
.approach-role {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 560px);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(17,26,23,.92), rgba(6,54,75,.86)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: white;
}
.approach-role h2,
.approach-role p {
    color: white;
}
.approach-role-copy {
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.approach-role-copy p {
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
}
.service-feature {
    background: linear-gradient(135deg, rgba(6,54,75,.94), rgba(29,36,31,.92));
    color: white;
}
.service-feature p { color: rgba(255,255,255,.78); }
.service-feature-main {
    background:
        radial-gradient(circle at 82% 12%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(135deg, rgba(6,54,75,.94), rgba(29,36,31,.92)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.service-feature-main img {
    object-position: center;
}
.service-list,
.offering-card ul {
    display: grid;
    gap: .55rem;
    margin: 1.2rem 0 1.4rem;
    padding: 0;
    list-style: none;
}
.service-list li,
.offering-card li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(255,255,255,.82);
}
.service-list li::before,
.offering-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65rem;
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(201,154,67,.13);
}
.offerings-catalog {
    background:
        radial-gradient(circle at 12% 12%, rgba(201,154,67,.12), transparent 30%),
        radial-gradient(circle at 92% 72%, rgba(131,203,211,.18), transparent 32%),
        linear-gradient(180deg, rgba(255,250,240,.9), rgba(248,241,229,.94));
}
.offerings-catalog .section-heading p:not(.eyebrow) {
    max-width: 760px;
    font-size: 1.06rem;
}
.offering-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.offering-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: clamp(1.15rem, 2.5vw, 1.8rem);
    background:
        linear-gradient(135deg, rgba(255,250,240,.84), rgba(255,255,255,.5));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 16px 48px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease;
}
.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14);
}
.offering-card::after {
    content: "";
    position: absolute;
    right: -2.2rem;
    bottom: -2.2rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.26), transparent 68%);
}
.offering-card.featured {
    grid-column: span 2;
    background:
        linear-gradient(135deg, rgba(6,54,75,.94), rgba(15,109,117,.8)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.offering-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .14em;
}
.offering-card h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}
.offering-card p {
    position: relative;
}
.offering-card strong {
    display: block;
    position: relative;
    margin: 1.2rem 0 .35rem;
    color: var(--deep);
    font-size: 1rem;
}
.offering-card a {
    position: relative;
    display: inline-flex;
    margin-top: .5rem;
    color: var(--teal);
    font-weight: 900;
}
.offering-card li {
    color: var(--muted);
    font-size: .95rem;
}
.offering-card.featured h3,
.offering-card.featured p,
.offering-card.featured strong,
.offering-card.featured li {
    color: white;
}
.offering-card.featured p,
.offering-card.featured li {
    color: rgba(255,255,255,.82);
}
.offering-card.featured a {
    color: white;
}
.service-pathway {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255,250,240,.88), rgba(225,239,241,.68)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.service-pathway-copy {
    padding: clamp(1.1rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 44px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.service-pathway-copy p {
    font-size: 1.06rem;
}
.booking-intro,
.contact-form-section,
.contact-payment-band {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}
.booking-intro {
    background:
        radial-gradient(circle at 88% 12%, rgba(131,203,211,.16), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.86), rgba(248,241,229,.92));
}
.booking-intro-copy {
    padding: clamp(1.1rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 44px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.booking-intro-copy p {
    font-size: 1.06rem;
}
.package-section {
    background:
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(225,239,241,.68)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.family-package-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(201,154,67,.14), transparent 28%),
        linear-gradient(180deg, rgba(248,241,229,.96), rgba(255,250,240,.84));
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .85rem;
}
.package-grid.family {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.package-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: clamp(1rem, 2.2vw, 1.45rem);
    background: linear-gradient(135deg, rgba(255,250,240,.84), rgba(255,255,255,.5));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 16px 48px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease;
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(49, 34, 18, .14);
}
.package-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,203,211,.26), transparent 68%);
}
.package-card span {
    display: inline-flex;
    margin-bottom: .95rem;
    color: var(--teal);
    font-size: 1.25rem;
    font-weight: 900;
}
.package-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.package-card small {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.package-card h3 {
    position: relative;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.package-card p {
    position: relative;
    margin-bottom: 0;
    font-size: .96rem;
}
.contact-form-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.86), rgba(248,241,229,.92));
}
.contact-form-copy {
    position: sticky;
    top: 7.5rem;
}
.contact-form-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
}
.payment-mini {
    margin-top: 1.4rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 44px rgba(49, 34, 18, .08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.payment-mini strong {
    display: block;
    color: var(--deep);
    margin-bottom: .3rem;
}
.payment-mini p {
    margin: 0;
    font-size: .94rem;
}
.payment-mini a {
    color: var(--teal);
    font-weight: 800;
}
.contact-payment-band {
    background:
        linear-gradient(135deg, rgba(255,250,240,.92), rgba(225,239,241,.88)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: var(--ink);
}
.contact-payment-band h2 {
    color: var(--deep);
}
.contact-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    grid-column: 1 / -1;
}
.contact-payment-grid .payment-card {
    min-height: 100%;
    padding: clamp(1.1rem, 2.5vw, 1.45rem);
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(15,109,117,.22);
    box-shadow: 0 18px 48px rgba(49,34,18,.1), inset 0 1px 0 rgba(255,255,255,.78);
}
.contact-payment-grid .payment-provider {
    min-height: 2.2rem;
    margin-bottom: 1rem;
}
.contact-payment-grid .payment-card-header h3 {
    color: var(--deep);
}
.article-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 850px);
    gap: clamp(2rem, 8vw, 7rem);
}
.article-layout aside p {
    position: sticky;
    top: 7rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
}
.article-layout div p, .prose { font-size: 1.12rem; }

.bessie-heart {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: start;
    background:
        radial-gradient(circle at 88% 12%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.72), rgba(248,241,229,.88));
}
.bessie-heart .section-heading { position: sticky; top: 7rem; }
.bessie-heart-copy {
    padding: clamp(1.25rem, 4vw, 2.6rem);
    background: linear-gradient(135deg, rgba(255,250,240,.8), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
}
.bessie-heart-copy p {
    font-size: 1.12rem;
    line-height: 1.85;
}
.qualification-heading { margin-bottom: 1.5rem; }
.qualification-list { display: grid; gap: .85rem; }
.qualification-list article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: linear-gradient(135deg, rgba(255,250,240,.8), rgba(255,255,255,.5));
    border: 1px solid rgba(15,109,117,.14);
    box-shadow: 0 16px 48px rgba(49,34,18,.08), inset 0 1px 0 rgba(255,255,255,.7);
}
.qualification-list article > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: white;
    background: var(--teal);
    font-size: .78rem;
    font-weight: 900;
}
.qualification-list h3 { margin-bottom: .35rem; }
.qualification-list article p { margin: 0; font-size: 1rem; }

.team-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 8%, rgba(131,203,211,.2), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(201,154,67,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.78), rgba(248,241,229,.92));
}
.team-section::before {
    content: "";
    position: absolute;
    inset: 1.2rem clamp(1rem, 5vw, 5rem);
    border: 1px solid rgba(201,154,67,.18);
    pointer-events: none;
}
.team-section > * {
    position: relative;
    z-index: 1;
}
.team-visionary {
    display: grid;
    grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: clamp(3rem, 7vw, 5.5rem);
    padding: clamp(1rem, 2vw, 1.4rem);
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.46));
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.68);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.team-visionary-image {
    overflow: hidden;
    min-height: 520px;
    background: var(--deep);
}
.team-visionary-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    transition: transform .55s ease, filter .55s ease;
}
.team-visionary:hover .team-visionary-image img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.03);
}
.team-visionary h3 {
    font-size: clamp(2.2rem, 4.8vw, 4.8rem);
}
.team-visionary span,
.team-card span {
    display: block;
    margin-bottom: .85rem;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.team-group-heading {
    max-width: 760px;
    margin-bottom: 1.35rem;
}
.team-group-heading-wide {
    max-width: 900px;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.team-group-heading h3 {
    font-size: clamp(1.65rem, 3vw, 2.6rem);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}
.team-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(255,250,240,.82), rgba(255,255,255,.5));
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 58px rgba(49, 34, 18, .1), inset 0 1px 0 rgba(255,255,255,.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,154,67,.42);
    box-shadow: 0 30px 78px rgba(49, 34, 18, .16), inset 0 1px 0 rgba(255,255,255,.72);
}
.team-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--deep);
}
.team-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6,54,75,.36), transparent 42%);
    opacity: .72;
    transition: opacity .28s ease;
}
.team-card:hover .team-card-image::after { opacity: .38; }
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease, filter .5s ease;
}
.team-card:hover .team-card-image img {
    transform: scale(1.06);
    filter: saturate(1.06) contrast(1.04);
}
.team-card > div:last-child {
    padding: clamp(1.1rem, 3vw, 1.75rem);
}
.team-card h3 {
    margin-bottom: .65rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}
.team-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.course-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: clamp(2rem, 7vw, 5rem);
}
.course-resource-hero {
    min-height: 72svh;
    align-items: center;
}
.course-resource-hero > div {
    max-width: 820px;
}
.course-resource-hero h1 {
    max-width: 9ch;
}
.course-hero-card {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.5));
    border: 1px solid rgba(15,109,117,.2);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.course-hero-card span {
    display: block;
    color: var(--teal);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.course-hero-card strong {
    display: block;
    margin: .25rem 0 1.15rem;
    color: var(--deep);
    font-family: Georgia, serif;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.25;
}
.course-hero-card strong:last-child {
    margin-bottom: 0;
}
.course-program {
    background:
        radial-gradient(circle at 86% 12%, rgba(131,203,211,.16), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.86), rgba(248,241,229,.92));
}
.course-card { align-self: start; position: sticky; top: 7rem; }
.course-card strong { display: block; margin: .2rem 0 1.2rem; font-size: 1.2rem; }
.course-structure {
    background:
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(225,239,241,.72)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.week-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}
.week-card {
    min-height: 170px;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(15,109,117,.18);
    box-shadow: 0 16px 44px rgba(49,34,18,.08), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.week-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,154,67,.42);
    box-shadow: 0 22px 62px rgba(49,34,18,.13), inset 0 1px 0 rgba(255,255,255,.78);
}
.week-card span {
    display: block;
    margin-bottom: 1rem;
    color: var(--teal);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.week-card h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}
.course-includes {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    gap: clamp(2rem, 7vw, 5rem);
    align-items: start;
    background:
        radial-gradient(circle at 10% 8%, rgba(201,154,67,.14), transparent 28%),
        linear-gradient(180deg, rgba(248,241,229,.96), rgba(255,250,240,.84));
}
.include-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
.include-list article {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,250,240,.78), rgba(255,255,255,.48));
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 14px 44px rgba(49,34,18,.08), inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.include-list span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: white;
    background: var(--teal);
    border-radius: 50%;
    font-weight: 900;
}
.include-list p {
    margin: 0;
    font-weight: 800;
}
.course-register {
    background:
        radial-gradient(circle at 88% 10%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,240,.86), rgba(248,241,229,.92));
}
.resource-hub {
    background:
        radial-gradient(circle at 88% 10%, rgba(131,203,211,.18), transparent 30%),
        linear-gradient(135deg, rgba(255,250,240,.94), rgba(225,239,241,.86)),
        url("../img/blue-gold-texture.jpg") center/cover;
    color: var(--ink);
}
.resource-hub h2,
.resource-hub h3 {
    color: var(--deep);
}
.resource-hub .section-heading p {
    color: var(--muted);
}
.resource-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 1rem;
}
.resource-card {
    padding: clamp(1.1rem, 3vw, 1.8rem);
    background: linear-gradient(135deg, rgba(255,250,240,.86), rgba(255,255,255,.58));
    border: 1px solid rgba(15,109,117,.18);
    box-shadow: 0 18px 56px rgba(49,34,18,.1), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.resource-card.featured {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.resource-card p,
.resource-card li {
    color: var(--muted);
}
.resource-card .eyebrow {
    color: var(--teal);
}
.resource-card ul {
    margin: 1rem 0 1.4rem 1.1rem;
}
.resource-card a:not(.btn) {
    color: var(--teal);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(15,109,117,.36);
    text-underline-offset: .25em;
}
.payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    background:
        linear-gradient(135deg, rgba(255,250,240,.9), rgba(225,239,241,.84)),
        url("../img/blue-gold-texture.jpg") center/cover;
}
.payment-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: end;
    gap: 1rem 3rem;
    margin-bottom: .75rem;
}
.payment-intro .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.payment-intro h2 { margin-bottom: 0; }
.payment-intro p:last-child { margin-bottom: .35rem; }
.payment-card {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.payment-card::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 11rem;
    aspect-ratio: 1;
    border: 1px solid rgba(15,109,117,.12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2.2rem rgba(131,203,211,.06);
    pointer-events: none;
}
.payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,154,67,.46);
    box-shadow: 0 24px 70px rgba(49,34,18,.14), inset 0 1px 0 rgba(255,255,255,.72);
}
.payment-card-header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.1rem;
}
.payment-card-header h3 { margin: 0; }
.payment-card-header small {
    display: block;
    margin-bottom: .1rem;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.payment-icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: white;
    background: linear-gradient(135deg, var(--teal), var(--deep));
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(6,54,75,.18), inset 0 1px 0 rgba(255,255,255,.25);
}
.payment-icon svg,
.copy-payment svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.payment-provider {
    min-height: 3.2rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: .9rem;
}
.payment-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 38px;
    align-items: center;
    gap: .7rem;
    padding: .72rem 0;
    border-top: 1px solid var(--line);
}
.payment-item span { color: var(--muted); font-size: .82rem; font-weight: 700; }
.payment-item strong {
    color: var(--deep);
    font-size: .92rem;
    text-align: right;
    overflow-wrap: anywhere;
}
.copy-payment {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(15,109,117,.18);
    border-radius: 50%;
    color: var(--teal);
    background: rgba(255,255,255,.62);
    cursor: pointer;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.copy-payment:hover,
.copy-payment.copied {
    color: white;
    background: var(--teal);
    transform: translateY(-1px);
}
.copy-payment svg { width: 16px; height: 16px; }

.form-panel label { display: grid; gap: .4rem; margin-bottom: 1rem; color: var(--ink); font-weight: 800; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.78);
    padding: .9rem 1rem;
    font: inherit;
    color: var(--ink);
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,109,117,.11); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-note { margin-top: 1rem; font-size: .9rem; }
.notice { padding: 1rem; margin-bottom: 1rem; border: 1px solid var(--line); }
.notice.success { background: rgba(15,109,117,.1); }
.notice.error { background: rgba(164,87,63,.12); }

.site-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem clamp(1rem, 5vw, 5rem);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(17,26,23,.92), rgba(6,54,75,.86)),
        url("../img/blue-gold-texture.jpg") center/cover,
        linear-gradient(135deg, rgba(17,26,23,.98), rgba(6,54,75,.95));
    color: white;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: .65rem clamp(.65rem, 3vw, 2rem);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    pointer-events: none;
}
.footer-brand,
.footer-glass {
    position: relative;
    z-index: 1;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.footer-brand a {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: white;
    font-weight: 900;
    white-space: nowrap;
}
.footer-brand img { width: 42px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
.footer-brand small { display: block; color: rgba(255,255,255,.68); white-space: nowrap; }
.footer-copy {
    color: rgba(255,255,255,.52) !important;
    font-size: .78rem;
}
.footer-glass {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}
.footer-note {
    display: block;
}
.footer-note a {
    display: inline-flex;
    padding: .62rem .88rem;
    border-radius: 999px;
    background: white;
    color: var(--deep);
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
        border: 1px solid rgba(255,255,255,.56);
        border-radius: 999px;
        background: rgba(255,250,240,.62);
        padding: .68rem .95rem;
        font-weight: 900;
        color: var(--deep);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
    .site-nav {
        position: fixed;
        inset: 5.45rem .9rem auto .9rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .45rem;
        padding: 1rem;
        border-radius: 28px;
        background:
            radial-gradient(circle at 10% 0%, rgba(131,203,211,.26), transparent 34%),
            linear-gradient(135deg, rgba(255,250,240,.9), rgba(255,255,255,.62)),
            linear-gradient(90deg, rgba(15,109,117,.1), rgba(201,154,67,.12));
        box-shadow: 0 30px 90px rgba(22,27,24,.24), inset 0 1px 0 rgba(255,255,255,.86);
        border: 1px solid rgba(255,255,255,.76);
        backdrop-filter: blur(30px) saturate(160%);
        -webkit-backdrop-filter: blur(30px) saturate(160%);
    }
    .site-nav::before {
        content: "Menu";
        padding: .1rem .2rem .55rem;
        color: var(--gold);
        font-size: .75rem;
        font-weight: 900;
        letter-spacing: .18em;
        text-transform: uppercase;
    }
    .site-nav a {
        padding: .95rem 1rem;
        border-radius: 18px;
        background: rgba(255,255,255,.32);
        border: 1px solid rgba(255,255,255,.42);
        color: var(--deep);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
    }
    .site-nav .nav-cta {
        margin-top: .2rem;
        text-align: center;
        justify-content: center;
    }
    body.nav-open .site-nav { display: flex; }
    .intro-grid, .vision-grid, .split, .split.reverse, .quote-section, .page-hero, .course-detail, .course-includes, .resource-grid, .article-layout, .post-shell, .sanctuary, .approach-visual, .service-feature, .testimonial-panel, .resonance-panel, .approach-opening, .approach-god, .approach-role, .service-pathway, .booking-intro, .contact-form-section, .contact-payment-band {
        grid-template-columns: 1fr;
    }
    .approach-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .offering-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .package-grid,
    .package-grid.family {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .offering-card.featured {
        grid-column: 1 / -1;
    }
    .steps, .cards, .post-grid, .principles, .payment-grid, .contact-payment-grid, .week-grid, .include-list, .resonance-list, .testimony-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-visionary {
        grid-template-columns: 1fr;
    }
    .team-visionary-image,
    .team-visionary-image img {
        min-height: 460px;
    }
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .payment-grid > div { grid-column: span 2; }
    .hero-note { position: relative; right: auto; bottom: auto; margin-top: 1rem; }
    .hero-content { padding-top: 0; }
    .resonance-intro {
        position: static;
    }
    .testimonial-panel {
        padding: 1.1rem;
    }
    .gallery-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-band img:nth-child(n) { margin-top: 0; height: clamp(280px, 58vw, 520px); }
    .well-orbit {
        position: relative;
        right: auto;
        top: auto;
        translate: 0;
        width: min(78vw, 420px);
        margin: 1rem auto 0;
        grid-column: 1;
    }
    .site-footer {
        grid-template-columns: 1fr;
    }
    .post-meta-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .brand span { max-width: 170px; white-space: normal; line-height: 1.1; }
    .brand img { width: 40px; height: 40px; }
    .site-header {
        top: .7rem;
        left: .7rem;
        right: .7rem;
        padding: .5rem;
    }
    .site-nav { inset: 5rem .7rem auto .7rem; }
    .hero {
        min-height: 96svh;
        padding: 7.25rem 1rem 1.15rem;
        align-items: end;
    }
    .hero-bg { object-position: 43% center; }
    .hero-flow {
        object-position: 46% center;
        opacity: .42;
        filter: saturate(.86) contrast(1.05) brightness(.92);
    }
    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(10,21,18,.88), rgba(10,21,18,.52) 46%, rgba(10,21,18,.18)),
            linear-gradient(90deg, rgba(10,21,18,.42), transparent);
    }
    .hero-content {
        align-self: end;
        padding-top: 0;
        padding-bottom: .35rem;
    }
    .hero-content h1 {
        max-width: none;
        font-size: clamp(2.55rem, 13vw, 4.05rem);
    }
    .hero-content p { font-size: 1rem; line-height: 1.55; }
    .hero .actions { gap: .55rem; margin-top: 1.1rem; }
    .hero .btn { width: 100%; min-height: 44px; }
    h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
    h2 { font-size: clamp(2rem, 11vw, 3.25rem); }
    .steps, .cards, .post-grid, .principles, .payment-grid, .contact-payment-grid, .week-grid, .include-list, .form-grid, .stat-row, .resonance-list, .testimony-grid {
        grid-template-columns: 1fr;
    }
    .resources-feature {
        padding-top: 1rem;
    }
    .featured-post {
        min-height: auto;
        padding: 1.15rem;
    }
    .featured-post::after {
        inset: .55rem;
    }
    .featured-post h2 {
        font-size: clamp(1.8rem, 10vw, 2.65rem);
    }
    .post-card {
        min-height: auto;
    }
    .resources-list .section-heading.inline {
        align-items: start;
    }
    .post-shell {
        gap: 1rem;
    }
    .post-meta-card,
    .post-body {
        padding: 1rem;
    }
    .post-body.prose {
        font-size: 1rem;
        line-height: 1.78;
    }
    .contact-form-copy {
        position: static;
    }
    .approach-card-grid,
    .approach-checks,
    .offering-grid,
    .package-grid,
    .package-grid.family {
        grid-template-columns: 1fr;
    }
    .offering-card.featured {
        grid-column: auto;
    }
    .offering-card {
        min-height: auto;
    }
    .package-card {
        min-height: auto;
    }
    .approach-card-grid article {
        min-height: auto;
    }
    .approach-opening-image img,
    .approach-god-image img {
        height: auto;
        max-height: 520px;
    }
    .intro-copy p {
        font-size: 1.02rem;
    }
    .offerings-preview .section-heading p:not(.eyebrow),
    .testimonial-copy p:not(.eyebrow) {
        font-size: 1rem;
    }
    .testimony-stack blockquote {
        padding: 1.15rem;
    }
    .testimony-story {
        padding: 1rem;
    }
    .story-lead {
        font-size: clamp(1.35rem, 8vw, 1.85rem);
    }
    .story-body p {
        font-size: .95rem;
        line-height: 1.7;
    }
    .vision-grid {
        gap: 1rem;
    }
    .vision-lines span {
        padding: .9rem;
    }
    .resonance-list span {
        min-height: auto;
    }
    .resonance-panel {
        padding: 1rem;
    }
    .team-section {
        padding-inline: 1rem;
    }
    .team-section::before {
        inset: .75rem;
    }
    .team-section .section-heading.inline {
        align-items: start;
    }
    .team-visionary {
        gap: 1rem;
        padding: .75rem;
        margin-bottom: 2.5rem;
    }
    .team-visionary-image,
    .team-visionary-image img {
        min-height: 390px;
    }
    .team-visionary > div:last-child {
        padding: .25rem .15rem .45rem;
    }
    .team-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 82vw);
        grid-template-columns: none;
        gap: .85rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        padding: .1rem 1rem 1rem 0;
        margin-right: -1rem;
    }
    .team-grid::-webkit-scrollbar { height: 6px; }
    .team-grid::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(15,109,117,.35);
    }
    .team-card {
        scroll-snap-align: start;
    }
    .payment-grid > div { grid-column: auto; }
    .payment-intro {
        grid-template-columns: 1fr;
        gap: .45rem;
    }
    .payment-intro .eyebrow { grid-column: auto; }
    .payment-provider { min-height: 0; }
    .payment-item {
        grid-template-columns: minmax(0, 1fr) 38px;
        gap: .15rem .65rem;
    }
    .payment-item span,
    .payment-item strong { grid-column: 1; text-align: left; }
    .payment-item .copy-payment {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .image-frame img, .image-frame.tall img, .quote-section img, .page-hero img { height: auto; max-height: 560px; }
    .page-hero { min-height: auto; padding-top: 7rem; }
    .site-footer {
        align-items: center;
        flex-direction: column;
        gap: .9rem;
        padding: 1.35rem 1rem;
        text-align: center;
    }
    .site-footer::before { inset: .55rem; border-radius: 22px; }
    .footer-brand {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: .45rem;
        width: 100%;
    }
    .footer-brand a {
        justify-content: center;
        white-space: normal;
    }
    .footer-brand img { width: 38px; }
    .footer-brand a span {
        max-width: 210px;
        line-height: 1.12;
    }
    .footer-brand small {
        white-space: normal;
        text-align: center;
        max-width: 260px;
        line-height: 1.25;
    }
    .footer-copy {
        max-width: none !important;
        text-align: center !important;
        font-size: .72rem;
    }
    .footer-glass {
        width: 100%;
        align-items: stretch;
        justify-content: center;
    }
    .footer-note a {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding-block: .78rem;
    }
    .home-heart {
        padding-top: 2.8rem;
    }
    .home-heart .image-frame { order: -1; }
    .bessie-heart { grid-template-columns: 1fr; gap: 1rem; }
    .bessie-heart .section-heading { position: static; }
    .bessie-heart-copy { padding: 1rem; }
    .bessie-heart-copy p { font-size: 1rem; }
    .qualification-list article { grid-template-columns: 44px minmax(0, 1fr); padding: 1rem; }
    .wellness-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
        padding-bottom: 1.5rem;
    }
    .wellness-gallery img:nth-child(n) {
        height: 178px;
        margin-top: 0;
    }
    .wellness-gallery img:nth-child(1) {
        grid-column: 1 / -1;
        height: 190px;
    }
    .wellness-gallery img:nth-child(2) {
        height: 230px;
    }
    .wellness-gallery img:nth-child(3) {
        height: 160px;
        margin-top: 2rem;
    }
    .wellness-gallery img:nth-child(4) {
        grid-column: 1 / -1;
        height: 210px;
    }
    .portrait-rhythm, .course-strip {
        grid-template-columns: 1fr;
    }
    .portrait-rhythm img:nth-child(2), .course-strip img:nth-child(2) {
        margin-top: 0;
        height: auto;
    }
    .about-rhythm {
        display: flex;
        grid-template-columns: none;
        gap: .75rem;
        overflow-x: auto;
        padding: .8rem 1rem 1.65rem;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .about-rhythm::-webkit-scrollbar {
        display: none;
    }
    .about-rhythm::before {
        inset: .55rem 1rem;
    }
    .about-rhythm img:nth-child(n) {
        flex: 0 0 78vw;
        width: 78vw;
        height: 360px;
        margin-top: 0;
        opacity: 1;
        scroll-snap-align: center;
        transform: none;
    }
    .about-rhythm img:hover {
        transform: none;
    }
    .about-rhythm img:nth-child(2),
    .about-rhythm img:nth-child(4) {
        flex-basis: 84vw;
        width: 84vw;
    }
}
