/* ============================================
   NIRVANA SOUND HEALING — Master Stylesheet
   Professional rewrite — warm wellness aesthetic
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Warm palette — never pure black */
    --text-primary: #2D1F14;       /* Deep warm brown — headings */
    --text-body: #5F5847;          /* Warm medium grey — body */
    --text-muted: #8B7355;         /* Muted secondary */
    --text-secondary: #8B7355;     /* Legacy alias */
    --bg-primary: #FAF5EF;         /* Cream — slightly warmer */
    --bg-soft: #F5EDE3;            /* Warm cream — cards / soft sections */
    --bg-alt: #FAF6F0;             /* Legacy alias */
    --accent: #C4956A;             /* Terracotta */
    --accent-gold: #D4A96A;        /* Gold */
    --accent-deep: #8B5E3C;        /* Deep terracotta — hover */
    --dark-bg: #2D1F14;            /* Deep warm brown — footer / quote strip */
    --white: #FDFAF6;              /* Cream-white */

    /* Type — defaults match the "editorial" preset, overridden by font picker */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    /* Legacy aliases (kept for any rule still using them) */
    --font-heading: var(--font-display);
    --font-accent: 'Crimson Pro', Georgia, serif;

    /* Geometry */
    --radius: 20px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Shadow — soft, warm-tinted */
    --shadow: 0 8px 30px rgba(45, 31, 20, 0.04);
    --shadow-hover: 0 16px 44px rgba(45, 31, 20, 0.10);
    --shadow-image: 0 20px 50px rgba(45, 31, 20, 0.08);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: -1px;
    line-height: 1.05;
    font-weight: 400;
}

h2 {
    font-size: clamp(36px, 4vw, 50px);
    letter-spacing: -0.5px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 16px;
}

h4 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    margin-bottom: 18px;
    color: var(--text-body);
    line-height: 1.75;
}

strong {
    font-weight: 700;
    color: var(--text-primary);
}

/* --- Section Eyebrow — elegant italic accent above titles --- */
.section-eyebrow {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: capitalize;
    margin-bottom: 12px;
    display: block;
    font-weight: 400;
}

/* --- Sections — generous padding, no alternating bg --- */
.section {
    padding: 140px 0;
    position: relative;
}

.section-alt {
    padding: 140px 0;
    position: relative;
}

/* Spacious variant for CTA / breathing-room sections */
.section-spacious {
    padding: 160px 0;
}

.section-spacious .text-container > * + * {
    margin-top: 24px;
}

.section-spacious .cta-buttons {
    margin-top: 48px;
}

/* Section images — constrained and soft */
.section-image {
    max-height: 480px;
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-image);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header,
.section-title-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.section-title-wrap .section-eyebrow {
    display: block;
}

.section-title-wrap h2 {
    margin-bottom: 0;
}

.section-header p {
    font-size: 17px;
    color: var(--text-body);
}

/* --- Accent Line (legacy, kept for compat) --- */
.accent-line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 16px auto;
    border: none;
    border-radius: 2px;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Default (on dark hero): cream text */
.site-header .nav-logo span,
.nav-logo-text,
.site-header .nav-links a {
    color: var(--white);
    transition: color var(--transition);
}

.site-header .nav-toggle span {
    background: var(--white);
    transition: background var(--transition);
}

/* Scrolled state: cream bg + dark text */
.site-header.nav-scrolled {
    background: rgba(250, 245, 239, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(196, 149, 106, 0.1);
}

.site-header.nav-scrolled .nav-logo span,
.site-header.nav-scrolled .nav-logo-text,
.site-header.nav-scrolled .nav-links a {
    color: var(--text-primary);
}

.site-header.nav-scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO — full color, NO FILTERS that strip color */
.nav-logo img {
    height: 180px;
    width: auto;
    background: transparent;
}

/* On dark hero — soft drop shadow only, full color preserved */
.site-header:not(.nav-scrolled) .nav-logo img {
    filter: drop-shadow(0 2px 8px rgba(45, 31, 20, 0.4));
}

/* Scrolled — smaller logo, still full color */
.site-header.nav-scrolled .nav-logo img {
    height: 128px;
    filter: none;
}

/* Logo file already contains "Nirvana Sound Healing" text — hide the span globally */
.nav-logo span,
.nav-logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

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

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile overlay nav */
.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 31, 20, 0.2), rgba(45, 31, 20, 0.55) 70%);
    z-index: 1;
}

.hero-half {
    min-height: 60vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 80px);
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.05;
}

.hero-content h2 {
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.92;
    color: var(--white);
    line-height: 1.7;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 22px;
    color: rgba(253, 250, 246, 0.9);
    letter-spacing: 1px;
    margin-top: 8px;
    margin-bottom: 24px;
    display: block;
}

/* HERO LOGO — full color, drop shadow only */
.hero-logo,
.hero-logo-icon {
    height: 160px;
    width: auto;
    margin: 0 auto 24px;
    background: transparent;
    filter: drop-shadow(0 4px 16px rgba(45, 31, 20, 0.3));
}

.hero .accent-line {
    background: var(--accent-gold);
    margin: 20px auto;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--white);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* --- Buttons — pill shape --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139, 94, 60, 0.28);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
}

/* --- Grid Layouts --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Split layout */
.split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: center;
}

.split-reverse {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    align-items: center;
}

/* Split image wrapper */
.split-img-wrap,
.split img,
.split-reverse img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.split img,
.split-reverse img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-image);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.split img:hover,
.split-reverse img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 56px rgba(45, 31, 20, 0.14);
}

/* --- Cards — softer, warm --- */
.card,
.grid-item {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(196, 149, 106, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.card:hover,
.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(196, 149, 106, 0.18);
}

.card img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -36px -32px 24px -32px;
    width: calc(100% + 64px);
    max-width: calc(100% + 64px);
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: var(--text-body);
}

.grid-item h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.grid-item p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--text-body);
}

/* --- Quote Strip — softer gradient, more breathing room --- */
.quote-strip {
    background: linear-gradient(135deg, #3a2818, #2D1F14);
    padding: 120px 24px;
    text-align: center;
}

.quote-strip blockquote {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-style: italic;
    color: rgba(253, 250, 246, 0.95);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    border: none;
    padding: 0;
    font-weight: 300;
}

.quote-strip cite {
    display: block;
    margin-top: 24px;
    font-size: 13px;
    font-style: normal;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* --- Blockquote (inline) --- */
blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 32px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 36px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* --- Location Carousel --- */
.location-showcase {
    padding: 0;
    margin-bottom: 100px;
}

.location-showcase .location-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.location-showcase .location-header h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.location-carousel-wrap {
    position: relative;
}

.location-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 0 24px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.location-carousel::-webkit-scrollbar {
    display: none;
}

.location-carousel:active {
    cursor: grabbing;
}

.location-carousel img {
    flex: 0 0 auto;
    width: 380px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    scroll-snap-align: start;
    box-shadow: 0 20px 50px rgba(45, 31, 20, 0.06);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.location-carousel img:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 56px rgba(45, 31, 20, 0.14);
}

/* Carousel prev/next buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(250, 245, 239, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(45, 31, 20, 0.12);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    border: none;
    font-size: 20px;
}

.carousel-btn:hover {
    background: var(--bg-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 24px rgba(45, 31, 20, 0.18);
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

/* --- Video Section --- */
.video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 31, 20, 0.3), rgba(45, 31, 20, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.video-overlay blockquote {
    border: none;
    padding: 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-style: italic;
    color: var(--white);
    max-width: 760px;
    margin: 0;
    border-radius: 0;
    line-height: 1.4;
    font-weight: 300;
}

.video-overlay blockquote cite {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Benefits List — two dots accent, bold intro --- */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 36px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 18px;
    position: relative;
}

.benefits-list li::before {
    content: '··';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
    font-size: 24px;
    letter-spacing: -2px;
    font-weight: bold;
}

.benefits-list li strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* --- Contact Form — softer inputs --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-soft);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 16px;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-message {
    text-align: center;
    padding: 16px;
    margin-top: 16px;
    font-size: 15px;
    border-radius: 16px;
}

.form-message.success {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
}

.form-message.error {
    color: #c62828;
    background: rgba(198, 40, 40, 0.08);
}

/* --- Pricing Page --- */
.pricing-category {
    margin-bottom: 56px;
}

.pricing-category h3 {
    font-size: 32px;
    margin-bottom: 4px;
}

.pricing-category .duration-tag {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    display: block;
    font-weight: 500;
}

.pricing-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 169, 106, 0.18);
}

.pricing-item .pricing-name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
}

.pricing-item .pricing-desc {
    font-size: 14px;
    color: var(--text-body);
    flex: 1;
    padding: 0 24px;
    line-height: 1.6;
}

.pricing-item .pricing-price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent);
    white-space: nowrap;
}

.pricing-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

/* --- Page Header (non-hero pages) --- */
.page-header {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* --- Site Footer --- */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 32px;
}

/* --- Footer Minimal --- */
.footer-minimal {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
}

/* FOOTER LOGO — full color, white glow only for legibility */
.footer-minimal img {
    height: 90px;
    width: auto;
    background: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: rgba(253, 250, 246, 0.75);
    line-height: 1.5;
}

.footer-ig {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 500;
}

.footer-ig a {
    color: var(--accent-gold);
    transition: opacity var(--transition);
}

.footer-ig a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(253, 250, 246, 0.4);
    padding-top: 24px;
    border-top: 1px solid rgba(253, 250, 246, 0.1);
    letter-spacing: 1px;
}

/* --- Fade-in Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }

/* --- Text Containers — reading columns --- */
.text-container {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.text-wide {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* --- Subtitle Tag (legacy) --- */
.subtitle-tag {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

/* --- Offerings Grid --- */
.offerings-grid {
    margin-top: 48px;
}

/* --- CTA Buttons --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-cream { color: var(--white); }
.text-body { color: var(--text-body); }
.text-muted { color: var(--text-muted); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ============================================
   Responsive — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .section,
    .section-alt {
        padding: 100px 0;
    }

    .section-spacious {
        padding: 120px 0;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .split-reverse {
        gap: 48px;
    }

    .section-header,
    .section-title-wrap {
        margin-bottom: 64px;
    }

    /* Disable parallax on tablet for performance */
    .hero {
        background-attachment: scroll;
    }
}

/* ============================================
   Responsive — 768px
   ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(36px, 8vw, 48px);
    }

    h2 {
        font-size: clamp(28px, 6vw, 36px);
    }

    h3 {
        font-size: clamp(22px, 5vw, 26px);
    }

    .section,
    .section-alt {
        padding: 70px 0;
    }

    .section-spacious {
        padding: 80px 0;
    }

    .section-header,
    .section-title-wrap {
        margin-bottom: 48px;
    }

    .container {
        width: 92%;
    }

    /* Navigation — hamburger */
    .nav-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 50px;
    }

    .site-header.nav-scrolled .nav-logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
    }

    .nav-open .nav-links {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-family: var(--font-heading);
        font-size: 30px;
        text-transform: none;
        letter-spacing: 0;
        font-weight: 400;
        color: var(--white) !important;
    }

    /* Grids — all collapse */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split,
    .split-reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Split images on mobile */
    .split img,
    .split-reverse img {
        max-height: 380px;
    }

    /* Buttons full width */
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
    }

    /* Cards — less inner padding */
    .card,
    .grid-item {
        padding: 28px 24px;
    }

    .card img {
        margin: -28px -24px 20px -24px;
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        max-height: 220px;
    }

    /* Quote */
    .quote-strip {
        padding: 80px 24px;
    }

    .quote-strip blockquote {
        font-size: 24px;
    }

    .video-overlay blockquote {
        font-size: 22px;
    }

    /* Location carousel */
    .location-carousel img {
        width: 80vw;
        height: 240px;
    }

    .location-showcase {
        margin-bottom: 60px;
    }

    /* Carousel buttons smaller on mobile */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: 4px;
    }

    .carousel-btn.next {
        right: 4px;
    }

    /* CTA buttons stack */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* Pricing */
    .pricing-item {
        flex-wrap: wrap;
        gap: 4px;
        padding: 18px 0;
    }

    .pricing-item .pricing-desc {
        flex-basis: 100%;
        padding: 4px 0 0;
        order: 3;
    }

    /* Hero — disable parallax on mobile */
    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-logo,
    .hero-logo-icon {
        height: 110px;
    }

    /* Page header */
    .page-header {
        padding-top: 130px;
        padding-bottom: 50px;
    }

    /* Section eyebrow smaller */
    .section-eyebrow {
        font-size: 16px;
    }

    /* Benefits list */
    .benefits-list li {
        padding-left: 32px;
        font-size: 15px;
    }

    /* Footer */
    .site-footer {
        padding: 60px 0 24px;
    }

    .footer-minimal img {
        height: 70px;
    }

    .footer-tagline {
        font-size: 17px;
    }

    /* Blockquote */
    blockquote {
        padding-left: 24px;
        font-size: 22px;
        margin: 28px 0;
    }
}

/* ============================================
   Responsive — 480px (small phones)
   ============================================ */
@media (max-width: 480px) {
    .section,
    .section-alt {
        padding: 56px 0;
    }

    .hero-logo,
    .hero-logo-icon {
        height: 90px;
    }

    .quote-strip blockquote {
        font-size: 22px;
    }

    .nav-logo img {
        height: 44px;
    }
}

/* --- Instrument Icons --- */
.instrument-icon {
    color: var(--accent);
    margin: 0 auto 20px;
    opacity: 0.85;
    transition: transform 0.6s ease, color 0.4s ease;
}

.grid-item:hover .instrument-icon {
    transform: scale(1.08);
    color: var(--accent-deep);
}

.grid-item.text-center .instrument-icon {
    display: block;
}

/* --- Video Audio Toggle Button --- */
.video-audio-toggle {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(250, 245, 239, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-audio-toggle:hover {
    background: var(--bg-primary);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .video-audio-toggle {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* --- Reduce vertical rhythm on practitioner location list --- */
.split + .split,
.split + .split-reverse,
.split-reverse + .split,
.split-reverse + .split-reverse {
    margin-top: 80px;
}

/* --- Location showcase rhythm --- */
.location-showcase {
    margin-bottom: 100px;
}

.location-showcase:last-of-type {
    margin-bottom: 0;
}

.location-showcase .location-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.location-showcase .location-header h3 {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.location-showcase .location-header p {
    font-size: 17px;
    color: var(--text-body);
    font-style: italic;
    font-family: var(--font-accent);
    line-height: 1.6;
}

/* --- Split layout — let text breathe more --- */
.split,
.split-reverse {
    align-items: center;
    gap: 80px;
}

.split-text > h2,
.split-text > .section-title-wrap {
    text-align: left;
    margin-bottom: 24px;
}

.split-text .section-title-wrap {
    margin-left: 0;
    max-width: none;
}

@media (max-width: 768px) {
    .split,
    .split-reverse {
        gap: 48px;
    }
}

/* --- Journal (Blog) --- */
.blog-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.blog-featured {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-featured img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-image);
}

.blog-featured .meta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-featured .cat-tag {
    background: var(--bg-soft);
    color: var(--accent-deep);
    padding: 4px 12px;
    border-radius: 999px;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-featured h3 {
    font-size: clamp(28px, 3vw, 38px);
    margin: 0;
}

.blog-featured p {
    font-size: 17px;
    line-height: 1.7;
}

.blog-featured .more {
    color: var(--accent-deep);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition);
}

.blog-featured .more:hover { color: var(--accent); }

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blog-item:hover { transform: translateX(4px); }

.blog-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
}

.blog-item .date {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.blog-item .title {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .blog-featured img { height: 280px; }
    .blog-item { grid-template-columns: 96px 1fr; }
    .blog-item img { width: 96px; height: 96px; }
}

/* --- Individual Post Page --- */
.post-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.post-page .post-cat {
    display: inline-block;
    margin-bottom: 16px;
    background: var(--bg-soft);
    color: var(--accent-deep);
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.post-page h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.post-page .post-date {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.post-page .post-lede {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-body);
    margin: 0 0 40px;
}

.post-page .post-cover {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-image);
    margin-bottom: 48px;
}

.post-page .post-body {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-body);
}

.post-page .post-body p { margin: 0 0 20px; }
.post-page .post-body h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin: 48px 0 16px;
}
.post-page .post-body h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 40px 0 12px;
}
.post-page .post-body blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 22px;
    color: var(--text-primary);
}

.post-page .post-callout {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 32px;
    margin: 40px 0;
    border-left: 3px solid var(--accent);
}

.post-page .post-back {
    display: inline-block;
    margin-top: 64px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-deep);
}

/* --- Offering Preview Cards (Home page) --- */
.offering-card {
    display: block;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.offering-card-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: var(--bg-soft);
}

.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.offering-card:hover .offering-card-image img {
    transform: scale(1.04);
}

.offering-card-body {
    padding: 32px 28px;
}

.offering-card-body h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.2vw, 28px);
}

.offering-card-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0;
}

@media (max-width: 768px) {
    .offering-card-image { height: 260px; }
    .offering-card-body { padding: 24px 20px; }
}
