/* ═══════════════════════════════════════════════════
   THE FOUNDATION SESSION — Design System
   Quiet Luxury · Deep Relief · Slow Exhale
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── Global Overrides for style.css conflicts ──
   style.css sets h1-h4 color to --dark-rust and img to 100% width/height.
   We override these within Foundation Session sections. */

.sanctuary h1,
.sanctuary h2,
.mirror h1,
.mirror h2,
.philosophy h1,
.philosophy h2,
.architecture h1,
.architecture h2,
.architecture h3,
.investment h1,
.investment h2,
.container-section h1,
.container-section h2 {
    color: inherit;
}

.sanctuary img,
.philosophy img,
.architecture img,
.investment img {
    width: auto;
    height: auto;
}

/* Force logo visible — this page doesn't load main.js */
.nav-logo {
    opacity: 1 !important;
}

/* ── Custom Properties ── */
:root {
    /* All three now match the §3 canonical values (were #2A2A2A / #F5F5F0 /
       #8A9A86 — three near-duplicates of the brand palette for no reason).
       This page's real need was never a different sage, it was a sage dark
       enough to read against cream: that now lives in style.css as
       --sage-deep and is shared, so nothing here conflicts with the brand. */
    --charcoal: #2C2C2C;
    --cream: #F9F8F2;
    --sage-green: #8A9A90;
    /* Named role, same value as the brand sage — which already reads 4.8 on
       charcoal. Kept so call sites stay explicit about which surface they are
       on, since that is the distinction that gets lost and breaks contrast. */
    --sage-on-dark: #8A9A90;
    --sage-dark: #6B7D67;
    --deep-earth: #2C211B;

    /* Typography Families */
    --font-anchor: 'Playfair Display', Georgia, serif;
    --font-guide: 'Inter', 'Helvetica Neue', sans-serif;

    /* Fluid Typography */
    --fs-display: clamp(2.4rem, 5vw + 1rem, 4.8rem);
    --fs-h2: clamp(1.8rem, 3vw + 0.6rem, 3rem);
    --fs-h3: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem);
    --fs-body: clamp(1rem, 0.6vw + 0.75rem, 1.125rem);
    --fs-whisper: clamp(1.05rem, 1vw + 0.5rem, 1.35rem);
    --fs-label: clamp(0.75rem, 0.3vw + 0.5rem, 0.85rem);  /* min was 0.65rem = 10.4px */

    /* Spacing */
    --rhythm-unit: clamp(4rem, 2rem + 5.5vw, 8rem);  /* converged on style.css */
    --content-max: 1080px;
    --gutter: clamp(1rem, 2vw, 2rem);

    /* Timing */
    --ease-somatic: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-gentle: cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-guide);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}


/* ═══════════════════════════════════════════════════
   TYPOGRAPHY ROLES
   ═══════════════════════════════════════════════════ */

/* The Anchor — Massive Serif Headlines */
.anchor {
    font-family: var(--font-anchor);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* The Whisper — Italic Serif Sub-headlines */
.whisper {
    font-family: var(--font-anchor);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* The Guide — Clean Sans-Serif Body */
.guide {
    font-family: var(--font-guide);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.8;
}

/* The Label — Tiny Exclusive Tag */
.label {
    font-family: var(--font-guide);
    font-weight: 300;
    font-size: var(--fs-label);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════
   CONTENT WRAPPER
   ═══════════════════════════════════════════════════ */

.section-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}


/* ═══════════════════════════════════════════════════
   ANIMATION SYSTEM
   ═══════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-in, transform 1.5s var(--ease-somatic);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for sequenced reveals */
.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}


/* ═══════════════════════════════════════════════════
   SECTION 1 — THE SANCTUARY (Hero)
   ═══════════════════════════════════════════════════ */

.sanctuary {
    position: relative;
    background: var(--deep-earth);
    color: var(--cream);
    padding: var(--rhythm-unit) 0;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Film grain texture — thick, tactile, dark matte paper feel */
.sanctuary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.sanctuary .section-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.sanctuary__label {
    color: var(--sage-on-dark);   /* sits on --deep-earth */
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in 0.3s forwards;
}

.sanctuary__headline {
    font-size: var(--fs-display);
    color: var(--cream);
    max-width: 14ch;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in 0.6s forwards;
}

.sanctuary__whisper {
    font-size: var(--fs-whisper);
    color: rgba(245, 245, 240, 0.75);
    max-width: 52ch;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in 0.9s forwards;
}

/* Cinematic Video Frame */
.sanctuary__video-frame {
    position: relative;
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: fadeInUp 1.5s ease-in 0.8s forwards;
}

.sanctuary__video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Play icon placeholder. Suppressed once the real player is in — it would
   otherwise float over Bunny's own controls. is-vsl-live is set by
   vsl-embed.js at the moment the iframe is injected. */
.sanctuary__video-frame.is-vsl-live::after {
    display: none;
}

.sanctuary__video-frame::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(245, 245, 240, 0.5);
    pointer-events: none;
    transition: var(--transition-slow);
}

.sanctuary__video-frame:hover::after {
    color: rgba(245, 245, 240, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* "Explore 1:1 Care ↓" text link */
.sanctuary__scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-guide);
    font-weight: 300;
    font-size: var(--fs-body);
    color: rgba(245, 245, 240, 0.55);
    border-bottom: 1px solid rgba(245, 245, 240, 0.25);
    padding-bottom: 4px;
    transition: color 0.6s var(--ease-somatic), border-color 0.6s var(--ease-somatic);
    opacity: 0;
    animation: fadeInUp 1.5s ease-in 1.5s forwards;
}

.sanctuary__scroll-link:hover {
    color: rgba(245, 245, 240, 0.9);
    border-color: rgba(245, 245, 240, 0.6);
}


/* ═══════════════════════════════════════════════════
   SECTION 2 — THE MIRROR (Validation)
   ═══════════════════════════════════════════════════ */

.mirror {
    background: var(--cream);
    color: var(--charcoal);
    padding: var(--rhythm-unit) 0 20px;
}

.mirror .section-inner {
    text-align: center;
}

.mirror__headline {
    font-size: var(--fs-h2);
    color: var(--charcoal);
    margin-bottom: 3.5rem;
}

.mirror__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Editorial Vertical Divider — stitches Mirror ↔ Philosophy */
.vertical-thread {
    width: 1px;
    height: 80px;
    background-color: var(--charcoal);
    opacity: 0.15;
    margin: 0 auto;
}

.mirror__item {
    font-size: var(--fs-whisper);
    font-family: var(--font-anchor);
    font-style: italic;
    font-weight: 400;
    color: rgba(42, 42, 42, 0.75);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   SECTION 3 — THE PHILOSOPHY (Building Trust)
   ═══════════════════════════════════════════════════ */

.philosophy {
    background: var(--cream);
    color: var(--charcoal);
    padding: 40px 0 var(--rhythm-unit);
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .philosophy__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.philosophy__headline {
    font-size: var(--fs-h2);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.philosophy__body {
    color: rgba(42, 42, 42, 0.8);
    max-width: 50ch;
}

.philosophy__media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
}

.philosophy__media video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* Ken Burns "Somatic Breath" animation */
@keyframes subtleBreath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.philosophy-video {
    animation: subtleBreath 18s infinite ease-in-out;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ═══════════════════════════════════════════════════
   SECTION 4 — THE MOVEMENT ARCHITECTURE (Timeline)
   ═══════════════════════════════════════════════════ */

.architecture {
    background: var(--charcoal);
    color: var(--cream);
    padding: var(--rhythm-unit) 0;
}

.architecture__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.architecture__intro-headline {
    font-size: var(--fs-h2);
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.architecture__intro-body {
    color: rgba(245, 245, 240, 0.7);
}

/* Timeline Layout */
.architecture__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .architecture__layout {
        grid-template-columns: 1fr 340px;
        gap: 4rem;
    }
}

/* Vertical Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

/* Vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(245, 245, 240, 0.15);
}

.timeline__phase {
    position: relative;
    padding-bottom: 3rem;
}

.timeline__phase:last-child {
    padding-bottom: 0;
}

/* Elegant ring markers */
.timeline__phase::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(245, 245, 240, 0.5);
    background: transparent;
    transform: translateX(0);
}

.timeline__phase-title {
    font-family: var(--font-anchor);
    font-size: var(--fs-h3);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.timeline__phase-time {
    font-family: var(--font-guide);
    font-weight: 300;
    font-size: var(--fs-label);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-on-dark);   /* sits on --charcoal */
    margin-bottom: 0.75rem;
    display: block;
}

.timeline__phase-desc {
    color: rgba(245, 245, 240, 0.65);
    max-width: 46ch;
    line-height: 1.75;
}

/* Floating serene image */
.architecture__image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.architecture__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}


/* ═══════════════════════════════════════════════════
   SECTION 5 — THE INVESTMENT (Pricing Card)
   ═══════════════════════════════════════════════════ */

.investment {
    background: var(--cream);
    padding: var(--rhythm-unit) 0;
}

.investment .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: var(--sage-deep);
    color: var(--cream);
    border-radius: 20px;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 24px 80px rgba(90, 100, 87, 0.28),
        0 8px 32px rgba(44, 44, 44, 0.08);
}

.pricing-card__label {
    /* 0.7 -> 0.9: at 10.4px uppercase this is the card's smallest type and
       needs the contrast more than it needs the recession (4.95 vs 3.71). */
    display: block;
    color: rgba(245, 245, 240, 0.9);
    margin-bottom: 0.625rem;
}

.pricing-card__price {
    font-family: var(--font-guide);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

/* Thin separator */
.pricing-card__divider {
    width: 50px;
    height: 1px;
    background: rgba(245, 245, 240, 0.25);
    margin: 0 auto 2.5rem;
}

.pricing-card__includes {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card__includes li {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--fs-body);
    font-weight: 300;
    color: rgba(245, 245, 240, 0.92);   /* 0.85 -> 0.92 (5.10) */
    line-height: 1.6;
}

.pricing-card__includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.45);
    line-height: 2.8;
}

.pricing-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-guide);
    font-size: var(--fs-body);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--sage-deep);
    background: var(--cream);
    border-radius: 999px;
    transition: var(--transition-slow);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    background: #fff;
}

.pricing-card__cta span {
    transition: transform 0.6s var(--ease-somatic);
}

.pricing-card__cta:hover span {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════
   SECTION 6 — THE CONTAINER (FAQ + Footer)
   ═══════════════════════════════════════════════════ */

.container-section {
    position: relative;
    background: var(--charcoal);
    color: var(--cream);
    padding: var(--rhythm-unit) 0;
    overflow: hidden;
}

/* Green Dehradun background — blended into charcoal */
.container-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('PageWiseAssets_rs/Private1_1/Green_dehradun.webp') center / cover no-repeat;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.container-section .section-inner {
    position: relative;
    z-index: 1;
}

.container-section__headline {
    font-size: var(--fs-h2);
    color: var(--cream);
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Accordion */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    font-family: var(--font-anchor);
    font-size: var(--fs-h3);
    font-weight: 400;
    color: rgba(245, 245, 240, 0.85);
    cursor: pointer;
    list-style: none;
    transition: color 0.4s var(--ease-somatic);
}

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

/* Plus/Minus indicator */
.faq-item summary::after {
    content: '+';
    font-family: var(--font-guide);
    font-weight: 200;
    font-size: 1.5rem;
    color: rgba(245, 245, 240, 0.35);
    flex-shrink: 0;
    transition: transform 0.5s var(--ease-somatic), color 0.4s var(--ease-somatic);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--sage-deep);
}

.faq-item summary:hover {
    color: var(--cream);
}

/* Answer body */
.faq-item__answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s var(--ease-gentle), opacity 0.5s var(--ease-gentle) 0.1s;
    padding: 0;
}

.faq-item[open] .faq-item__answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-item__answer p {
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
    line-height: 1.8;
    max-width: 56ch;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.fs-footer {
    background: var(--charcoal);
    color: rgba(245, 245, 240, 0.3);
    padding: 3rem 0;
    text-align: center;
    font-size: var(--fs-label);
    font-weight: 300;
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(245, 245, 240, 0.05);
}

.fs-footer p+p {
    margin-top: 0.5rem;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE REFINEMENTS
   ═══════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .sanctuary {
        padding: clamp(100px, 18vw, 140px) 0 var(--rhythm-unit);
        min-height: auto;
    }

    .sanctuary__headline {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .architecture__image {
        max-width: 320px;
        margin: 0 auto;
    }

    .pricing-card {
        margin: 0 var(--gutter);
    }

    .faq-item summary {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
        padding: 1.25rem 0;
    }

    .pricing-card__cta {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════
   FOCUS STATES (Accessibility)
   ═══════════════════════════════════════════════════ */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--sage-deep);
    outline-offset: 4px;
    border-radius: 4px;
}


/* ─── INVESTMENT HEADER ─── */
.investment__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 var(--gutter);
}
.investment__eyebrow {
    display: block;
    color: var(--sage-deep);
    margin-bottom: 0.85rem;
}
.investment__title {
    font-family: var(--font-anchor);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.investment__sub {
    font-family: var(--font-guide);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(42, 42, 42, 0.67);
    max-width: 40ch;
    margin: 0 auto;
    line-height: 1.7;
}
.investment__trust {
    margin-top: 1.75rem;
    font-family: var(--font-guide);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(42, 42, 42, 0.67);
    text-align: center;
    max-width: 38ch;
    line-height: 1.6;
}
.investment__trust a {
    color: var(--sage-deep);
    text-decoration: none;
    border-bottom: 1px solid rgba(90, 100, 87, 0.35);
}

/* The shared benediction (style.css) colours its closing line with
   --sage-green, which this page deliberately darkens for cream backgrounds.
   The benediction sits on charcoal, so it needs the on-dark sage instead. */
.benediction__meaning--closing {
    color: var(--sage-on-dark);
}


/* Reduced motion — see style.css for the authoritative sitewide block.
   Repeated here so this stylesheet is self-consistent if loaded alone. */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Focus — keyboard affordance for this page's interactive elements. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--sage-deep, #5A6457);
  outline-offset: 3px;
}


/* ── Short viewport (phone in landscape) — see style.css for the full why ── */
@media (max-height: 480px) and (orientation: landscape) {
  .sanctuary {
    min-height: 0;
    padding-block: clamp(1.5rem, 6svh, 2.5rem) clamp(1rem, 4svh, 1.5rem);
  }

  .sanctuary__video-frame {
    width: min(100%, calc(60svh * 16 / 9));
    margin-inline: auto;
  }
}
