/* ============================================================
   TAPESTRY HOLISTIC HEALING — STYLESHEET
   Palette: Crimson #7D1F1F · Gold #C4853A · Cream #F2E5D0
   Typography: Lora (serif headings) + Raleway (sans body)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    /* Brand Colors */
    --crimson:        #7D1F1F;
    --crimson-dark:   #521414;
    --crimson-deep:   #1E0808;
    --crimson-bg:     #FBF3F0;
    --gold:           #C4853A;
    --gold-light:     #D4956A;
    --gold-pale:      #E8C9A0;
    --cream:          #F2E5D0;
    --cream-light:    #FAF5EE;
    --warm-white:     #FEFBF7;

    /* Text */
    --text-dark:        #2C1208;
    --text-medium:      #6B4534;
    --text-light:       #9B7B6A;
    --text-on-dark:     #F2E5D0;
    --text-on-dark-dim: rgba(242, 229, 208, 0.72);

    /* Typography */
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans:  'Raleway', system-ui, -apple-system, sans-serif;

    /* Spacing scale (4px base) */
    --s-1: 0.25rem;   /* 4px  */
    --s-2: 0.5rem;    /* 8px  */
    --s-3: 0.75rem;   /* 12px */
    --s-4: 1rem;      /* 16px */
    --s-5: 1.25rem;   /* 20px */
    --s-6: 1.5rem;    /* 24px */
    --s-8: 2rem;      /* 32px */
    --s-10: 2.5rem;   /* 40px */
    --s-12: 3rem;     /* 48px */
    --s-16: 4rem;     /* 64px */
    --s-20: 5rem;     /* 80px */
    --s-24: 6rem;     /* 96px */

    /* Layout */
    --max-w: 1200px;
    --nav-h: 72px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 18, 8, 0.08);
    --shadow-md: 0 8px 24px rgba(44, 18, 8, 0.12);
    --shadow-lg: 0 16px 48px rgba(44, 18, 8, 0.18);
    --shadow-crimson: 0 8px 28px rgba(125, 31, 31, 0.25);
    --shadow-gold: 0 8px 28px rgba(196, 133, 58, 0.35);

    /* Transitions */
    --t-fast: 150ms ease;
    --t-base: 250ms ease;
    --t-slow: 400ms ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

address { font-style: normal; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1.05rem; }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 68ch;
}

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-8);
}

@media (max-width: 768px) {
    .container { padding: 0 var(--s-5); }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--s-4); }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: var(--s-4) var(--s-8);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--t-base), box-shadow var(--t-base), background-color var(--t-base), border-color var(--t-base), color var(--t-base);
    white-space: nowrap;
    min-height: 48px;
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.btn:active { transform: translateY(1px) scale(0.985); }

.btn-gold {
    background: #ea8207;
    color: #FEFBF7;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(234, 130, 7, 0.32);
}
.btn-gold:hover {
    background: #d57306;
    box-shadow: 0 12px 36px rgba(234, 130, 7, 0.45);
    transform: translateY(-2px);
    color: #FEFBF7;
}

.btn-crimson {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--cream-light);
    box-shadow: var(--shadow-crimson);
}
.btn-crimson:hover {
    background: linear-gradient(135deg, #8F2424 0%, var(--crimson) 100%);
    box-shadow: 0 12px 36px rgba(125, 31, 31, 0.35);
    transform: translateY(-2px);
    color: var(--cream-light);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: rgba(242, 229, 208, 0.5);
}
.btn-outline-cream:hover {
    background: rgba(242, 229, 208, 0.12);
    border-color: var(--cream);
    transform: translateY(-2px);
    color: var(--cream);
}

/* ── Eyebrow labels ────────────────────────────────────────── */
.eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s-3);
}

.eyebrow--light {
    color: var(--gold);
}

/* ── Section headers ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--s-12);
}

.section-title {
    color: var(--cream-light);
    margin-bottom: var(--s-4);
}

.section-subtitle {
    color: var(--text-on-dark-dim);
    max-width: 58ch;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    transition: background var(--t-slow), box-shadow var(--t-slow);
}

.navbar.scrolled {
    background: var(--cream-light);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--max-w);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--s-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
}

/* Brand / Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--r-sm);
    border: 2px solid rgba(242, 229, 208, 0.2);
    transition: border-color var(--t-base);
}

.navbar.scrolled .nav-logo-img {
    border-color: rgba(125, 31, 31, 0.15);
}

.nav-brand-words {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-main {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream-light);
    letter-spacing: 0.02em;
    transition: color var(--t-base);
}

.nav-brand-sub {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-pale);
    transition: color var(--t-base);
}

.navbar.scrolled .nav-brand-main { color: var(--crimson); }
.navbar.scrolled .nav-brand-sub  { color: var(--gold); }

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--s-6);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-on-dark);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--t-base);
}

.navbar.scrolled .nav-link { color: var(--text-dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--t-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover { color: var(--gold-pale); }
.navbar.scrolled .nav-link:hover { color: var(--crimson); }

/* Book Now button in nav */
.nav-book {
    background: #ea8207;
    color: var(--warm-white) !important;
    padding: var(--s-2) var(--s-5);
    border-radius: var(--r-full);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(234, 130, 7, 0.3);
    transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base) !important;
}

.nav-book::after { display: none; }

.nav-book:hover {
    background: #d57306 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(234, 130, 7, 0.45) !important;
    color: var(--warm-white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s-2);
    border-radius: var(--r-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--cream-light);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base);
}

.navbar.scrolled .hamburger span { background: var(--crimson); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%, #A52A2A 0%, #7D1F1F 55%, #5A1515 100%);
}

/* Mandala container */
.hero-mandala {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mandala-svg {
    width: min(900px, 130vw);
    height: min(900px, 130vw);
    animation: mandala-spin 90s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .mandala-svg { animation: none; }
}

@keyframes mandala-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14, 4, 4, 0.08) 0%, rgba(14, 4, 4, 0.42) 100%);
    pointer-events: none;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 760px;
    padding: calc(var(--nav-h) + var(--s-8)) var(--s-8) var(--s-8);
}

.hero-location {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: var(--s-5);
}

.hero-title {
    color: var(--cream-light);
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: var(--s-5);
    text-shadow: 0 2px 20px rgba(14, 4, 4, 0.5);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--gold-pale);
    font-weight: 400;
    margin-bottom: var(--s-4);
    max-width: none;
}

.hero-descriptor {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-on-dark-dim);
    margin-bottom: var(--s-10);
    max-width: none;
}

.hero-actions {
    display: flex;
    gap: var(--s-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--s-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-on-dark-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    transition: color var(--t-base);
    animation: bounce-down 2.5s ease-in-out infinite;
}

.hero-scroll:hover { color: var(--gold-pale); }

@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll { animation: none; }
}

/* ============================================================
   WELCOME / PHILOSOPHY
   ============================================================ */
.welcome {
    padding: var(--s-24) 0;
    background: var(--warm-white);
}

.welcome-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--s-16);
    align-items: center;
}

.welcome-emblem {
    position: relative;
}

.welcome-logo-img {
    width: 100%;
    max-width: 320px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}

.welcome-text .eyebrow { margin-bottom: var(--s-3); }

.welcome-text h2 {
    margin-bottom: var(--s-6);
    color: var(--text-dark);
}

.welcome-lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: var(--s-4);
}

.welcome-text p + p {
    margin-top: var(--s-4);
    margin-bottom: var(--s-8);
}

/* Five Pillars */
.welcome-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3) var(--s-6);
    margin-bottom: var(--s-8);
}

.pillar {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--crimson);
}

.pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ============================================================
   HEALING MODALITIES
   ============================================================ */
.modalities {
    padding: var(--s-24) 0;
    background: linear-gradient(160deg, var(--cream-light) 0%, #FEF9F3 50%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.modalities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(196, 133, 58, 0.07) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(125, 31, 31, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.modalities .section-header  { position: relative; }
.modalities .section-title   { color: var(--text-dark); }
.modalities .section-subtitle { color: var(--text-medium); }
.modalities .eyebrow--light  { color: var(--gold); }

/* Grid */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
    position: relative;
}

/* Card */
.modality-card {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
    padding: var(--s-10) var(--s-8);
    background: #fff;
    border: 1px solid rgba(125, 31, 31, 0.1);
    border-radius: var(--r-xl);
    text-decoration: none;
    transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity var(--t-base);
}

.modality-card:hover {
    background: var(--cream-light);
    border-color: rgba(125, 31, 31, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.modality-card:hover::before { opacity: 1; }

.modality-card:focus-visible {
    outline: 3px solid var(--crimson);
    outline-offset: 4px;
}

/* Mandala background per tile */
.modality-mandala {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    color: var(--gold);
    opacity: 0.07;
    transition: opacity var(--t-slow);
}

.modality-card:hover .modality-mandala { opacity: 0.13; }

/* Small accent bar replacing icon */
.card-accent {
    width: 44px;
    height: 3px;
    background: linear-gradient(to right, var(--crimson), var(--gold));
    border-radius: 2px;
    margin-bottom: var(--s-1);
    flex-shrink: 0;
}

/* Card text */
.modality-card h3 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3;
}

.modality-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: none;
    flex: 1;
}

.modality-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-top: auto;
    transition: gap var(--t-base), color var(--t-base);
}

.modality-card:hover .modality-link { gap: var(--s-3); color: var(--gold); }

.modality-link .arrow {
    transition: transform var(--t-base);
}

.modality-card:hover .arrow { transform: translateX(4px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: var(--s-24) 0;
    background: linear-gradient(160deg, var(--cream-light) 0%, #FEF9F4 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--s-16);
    align-items: start;
}

.about-text .eyebrow { margin-bottom: var(--s-3); }

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: var(--s-6);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.credentials {
    font-family: var(--font-sans);
    font-size: 0.8em;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--crimson);
    margin-bottom: var(--s-5) !important;
}

.about-text p + p { margin-top: var(--s-4); }

/* Credentials list */
.about-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
    margin-top: var(--s-8);
}

.credential-item {
    display: flex;
    gap: var(--s-3);
    align-items: flex-start;
    padding: var(--s-4);
    background: var(--crimson-bg);
    border-radius: var(--r-md);
    border-left: 3px solid var(--gold);
}

.credential-badge {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--crimson);
    min-width: 44px;
    flex-shrink: 0;
    line-height: 1.4;
}

.credential-desc {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
    max-width: none;
}

/* About side panel */
.about-side {
    display: flex;
    flex-direction: column;
    gap: var(--s-6);
    position: sticky;
    top: calc(var(--nav-h) + var(--s-8));
}

.about-quote {
    background: var(--crimson);
    color: var(--cream-light);
    border-radius: var(--r-xl);
    padding: var(--s-10) var(--s-8);
    position: relative;
}

.quote-mark {
    width: 36px;
    height: 28px;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: var(--s-4);
}

.about-quote p {
    color: rgba(242, 229, 208, 0.9);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.0rem;
    line-height: 1.75;
    max-width: none;
}

.about-quote cite {
    display: block;
    margin-top: var(--s-5);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold-pale);
    font-style: normal;
    text-transform: uppercase;
}

/* Location block */
.about-location {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    padding: var(--s-5) var(--s-6);
    background: var(--crimson-bg);
    border-radius: var(--r-md);
    border: 1px solid rgba(125, 31, 31, 0.1);
}

.about-location svg {
    color: var(--crimson);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-location strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: var(--s-1);
}

.about-location span {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: var(--s-24) 0;
    background: var(--warm-white);
}

.faq .section-header .eyebrow { color: var(--gold); }
.faq .section-title { color: var(--text-dark); }
.faq .section-subtitle { color: var(--text-medium); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
    max-width: 1060px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream-light);
    border: 1px solid rgba(125, 31, 31, 0.1);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item[open] {
    border-color: rgba(196, 133, 58, 0.35);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-5) var(--s-6);
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    user-select: none;
    transition: color var(--t-fast);
}

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

.faq-question:hover { color: var(--crimson); }
.faq-item[open] .faq-question { color: var(--crimson); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--t-base);
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    padding: 0 var(--s-6) var(--s-5);
    border-top: 1px solid rgba(125, 31, 31, 0.08);
}

.faq-answer p {
    font-size: 0.93rem;
    color: var(--text-medium);
    line-height: 1.75;
    max-width: none;
    padding-top: var(--s-4);
}

.faq-answer p + p { margin-top: var(--s-3); }

/* ============================================================
   BOOK CTA
   ============================================================ */
.book-cta {
    position: relative;
    padding: var(--s-24) 0;
    background: linear-gradient(140deg, var(--cream) 0%, #F5E8D5 50%, var(--cream-light) 100%);
    overflow: hidden;
    text-align: center;
}

.book-cta-mandala {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.6;
}

.book-cta-mandala svg {
    width: min(600px, 90vw);
    height: min(600px, 90vw);
}

.book-cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.book-cta-content .eyebrow--light { margin-bottom: var(--s-4); }

.book-cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--crimson);
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--s-6);
}

.book-cta-content p {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: none;
    margin: 0 auto var(--s-10);
}

.book-cta-actions {
    display: flex;
    gap: var(--s-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA section has light bg — override outline button for dark-on-light */
.book-cta .btn-outline-cream {
    color: var(--crimson);
    border-color: rgba(125, 31, 31, 0.4);
}
.book-cta .btn-outline-cream:hover {
    background: rgba(125, 31, 31, 0.07);
    border-color: var(--crimson);
    color: var(--crimson);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--crimson-dark);
    color: var(--text-on-dark);
    padding: var(--s-20) 0 var(--s-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 240px repeat(3, 1fr);
    gap: var(--s-10);
    margin-bottom: var(--s-12);
    padding-bottom: var(--s-10);
    border-bottom: 1px solid rgba(242, 229, 208, 0.1);
}

/* Brand column */
.footer-brand {}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--r-md);
    margin-bottom: var(--s-4);
    border: 2px solid rgba(196, 133, 58, 0.3);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-on-dark-dim);
    line-height: 1.5;
    margin-bottom: var(--s-5);
    max-width: 20ch;
}

.footer-social {
    display: flex;
    gap: var(--s-3);
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(242, 229, 208, 0.15);
    color: var(--text-on-dark-dim);
    transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
}

.social-icon-link:hover {
    color: var(--gold);
    border-color: rgba(196, 133, 58, 0.4);
    background: rgba(196, 133, 58, 0.08);
}

.social-icon-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Footer columns */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-pale);
    margin-bottom: var(--s-5);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-on-dark-dim);
    transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-links a:hover { color: var(--gold-light); padding-left: var(--s-2); }

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--s-4);
    font-size: 0.85rem;
    color: var(--text-on-dark-dim);
    border-bottom: 1px solid rgba(242, 229, 208, 0.06);
    padding-bottom: var(--s-3);
}

.footer-hours li:last-child { border-bottom: none; }

.footer-hours li span:first-child {
    font-weight: 600;
    color: var(--cream-light);
    flex-shrink: 0;
}

.footer-address p,
.footer-meta li {
    font-size: 0.85rem;
    color: var(--text-on-dark-dim);
    margin-bottom: var(--s-2);
    max-width: none;
}

.footer-meta {
    margin-top: var(--s-4);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
}

.footer-meta li {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    margin-bottom: 0;
}

.footer-meta li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
    text-align: center;
    padding-top: var(--s-6);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(242, 229, 208, 0.4);
    max-width: none;
    margin: 0 auto;
}

/* ============================================================
   SCROLL ANIMATIONS — triggered via JS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   RESPONSIVE — 1024px tablet landscape
   ============================================================ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-8);
    }
}

/* ============================================================
   RESPONSIVE — 768px tablet portrait
   ============================================================ */
@media (max-width: 900px) {
    .welcome-inner {
        grid-template-columns: 1fr;
        gap: var(--s-10);
    }

    .welcome-emblem {
        display: flex;
        justify-content: center;
    }

    .welcome-logo-img { max-width: 260px; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: var(--s-10);
    }

    .about-side {
        position: static;
    }

    .modalities-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: var(--s-6) var(--s-6) var(--s-8);
        gap: var(--s-2);
        background: var(--cream-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t-slow), opacity var(--t-slow);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1rem;
        padding: var(--s-3) var(--s-4);
        border-radius: var(--r-sm);
    }

    .nav-link:hover { background: var(--crimson-bg); }

    .nav-book {
        text-align: center;
        margin-top: var(--s-3);
    }

    /* Sections */
    .welcome     { padding: var(--s-16) 0; }
    .modalities  { padding: var(--s-16) 0; }
    .about       { padding: var(--s-16) 0; }
    .faq         { padding: var(--s-16) 0; }
    .book-cta    { padding: var(--s-16) 0; }
    .footer      { padding: var(--s-16) 0 var(--s-8); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-8);
    }

    .modality-card {
        padding: var(--s-8) var(--s-6);
    }
}

/* ============================================================
   RESPONSIVE — 480px mobile
   ============================================================ */
@media (max-width: 480px) {
    :root { --nav-h: 64px; }

    .hero-title {
        font-size: 2rem;
    }

    .hero-descriptor {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--s-8);
    }

    .footer-hours li {
        flex-direction: column;
        gap: var(--s-1);
    }

    .book-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-header { margin-bottom: var(--s-8); }

    .modality-card { padding: var(--s-6) var(--s-5); }
    .modality-mandala { width: 180px; height: 180px; }
}
