/* ══════════════════════════════════════════════════
   Being & Mind — Global Stylesheet
   ══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1E2348;
    background: #F0ECD8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Palette ── */
:root {
    --ivory: #F0ECD8;
    --white: #FFFFFF;
    --saffron: #C89810;
    --gold: #E8B820;
    --saffron-dark: #A87808;
    --stone: #A09878;
    --sand: #E8E2CC;
    --blue: #5A6878;
    --blue-light: #8A9AA8;
    --indigo: #1E2348;
    --ink: #5E5848;
    --mist: #686050;
    --border: #D4CEB8;
    --on-dark: #F0ECD8;
    --on-dark-secondary: #D0C8B8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

/* ── Typography ── */
.serif, h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--indigo); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--indigo); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 1rem;
    display: block;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--ink);
}

/* ── Layout ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav.scrolled {
    background: rgba(240, 236, 216, 0.97);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    padding: 0.75rem 2rem;
    backdrop-filter: blur(12px);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--indigo);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.nav-hero .nav-brand { color: var(--white); }
.nav-hero.scrolled .nav-brand { color: var(--indigo); }

/* Logo swap: light logo default, dark logo on hero pages before scroll */
.nav-hero .nav-logo-light { display: none !important; }
.nav-hero .nav-logo-dark { display: block !important; }
.nav-hero.scrolled .nav-logo-light { display: block !important; }
.nav-hero.scrolled .nav-logo-dark { display: none !important; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--saffron); }

.nav-hero .nav-links a { color: rgba(255,255,255,0.85); }
.nav-hero .nav-links a:hover { color: var(--white); }
.nav-hero.scrolled .nav-links a { color: var(--ink); }
.nav-hero.scrolled .nav-links a:hover { color: var(--saffron); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--saffron);
    color: var(--white) !important;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--saffron-dark); transform: translateY(-1px); }

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

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--indigo);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hero .nav-hamburger span { background: var(--white); }
.nav-hero.scrolled .nav-hamburger span { background: var(--indigo); }

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

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ivory);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--indigo);
    transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--saffron); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--saffron);
    color: var(--white);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-dark {
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
}
.btn-outline-dark:hover { background: var(--saffron); color: var(--white); }

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--indigo);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30,35,72,0.4) 0%,
        rgba(30,35,72,0.2) 40%,
        rgba(30,35,72,0.5) 100%
    );
}

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

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero .lead {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.trust-bar p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mist);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-bar span { color: var(--saffron); }

/* ── Tension Section ── */
.tension {
    background: var(--indigo);
    color: var(--on-dark);
    padding: 7rem 0;
}

.tension h2 {
    color: var(--on-dark);
    margin-bottom: 2rem;
}

.tension p {
    color: var(--on-dark-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.tension .transition-line {
    color: var(--stone);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 2.5rem;
}

/* ── Offerings ── */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.offering-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.offering-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.offering-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.offering-card .card-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--saffron);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.offering-card p {
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.offering-card .card-detail {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ── Differentiators ── */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.diff-item {
    padding: 2rem;
    border-left: 3px solid var(--saffron);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.diff-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--indigo);
}

.diff-item p {
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ── About Preview ── */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-photo {
    aspect-ratio: 4/5;
    background: var(--sand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1rem;
    font-weight: 500;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--ink);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-pullquote {
    border-left: 3px solid var(--saffron);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--saffron-dark);
    line-height: 1.6;
}

.about-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ── Testimonials ── */
.testimonials {
    background: var(--sand);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card .quote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--indigo);
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-card .quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--stone);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-card .attribution {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--indigo);
}

.testimonial-card .role {
    font-size: 0.8rem;
    color: var(--mist);
}

/* ── Kailash Section ── */
.kailash {
    position: relative;
    overflow: hidden;
}

.kailash-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kailash-photo {
    aspect-ratio: 3/4;
    background: var(--indigo);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.kailash-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kailash-text h2 {
    margin-bottom: 1rem;
}

.kailash-text p {
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.kailash-excerpt {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--saffron-dark);
    border-left: 3px solid var(--saffron);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.6;
}

/* ── Lead Magnet / Quiz ── */
.lead-magnet {
    background: var(--indigo);
    color: var(--on-dark);
    text-align: center;
}

.lead-magnet h2 {
    color: var(--on-dark);
    margin-bottom: 1rem;
}

.lead-magnet p {
    color: var(--on-dark-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.lead-magnet .email-row {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
    justify-content: center;
}

.lead-magnet input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.lead-magnet input::placeholder { color: rgba(255,255,255,0.4); }
.lead-magnet input:focus { border-color: rgba(255,255,255,0.5); }

.lead-magnet .btn {
    background: var(--white);
    color: var(--indigo);
}

.lead-magnet .btn:hover { background: var(--ivory); }

/* ── Stats Counter ── */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--saffron);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--mist);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: var(--sand);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero .lead {
    max-width: 600px;
    margin: 0 auto;
}

/* ── Speaking Topics ── */
.topic-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.topic-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--saffron-dark);
}

.topic-card p {
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Expect Section ── */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expect-item {
    text-align: center;
    padding: 2rem;
}

.expect-item .expect-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.expect-item h4 {
    margin-bottom: 0.5rem;
}

.expect-item p {
    color: var(--mist);
    font-size: 0.9rem;
}

/* ── Retreat Cards ── */
.retreat-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.retreat-feature-img {
    aspect-ratio: 16/10;
    background: var(--sand);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.retreat-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retreat-past-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.retreat-past-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background: var(--sand);
}

.retreat-past-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.retreat-past-card:hover img { transform: scale(1.05); }

.retreat-past-card .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.retreat-past-card .overlay h4 {
    font-size: 1rem;
    color: var(--white);
}

.retreat-past-card .overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ── Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--indigo);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--indigo);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--saffron);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

/* ── Footer ── */
.footer {
    background: var(--indigo);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-newsletter input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    margin-bottom: 0.75rem;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: rgba(255,255,255,0.3); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a { transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Admin ── */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mist);
}

/* ── Form Messages ── */
.form-message {
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.form-message.success { color: var(--saffron); }
.form-message.error { color: #c0392b; }

/* ── Video Placeholder ── */
.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--indigo);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-placeholder .play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3);
}

.play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .offerings-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 2rem; }
    .kailash-inner { grid-template-columns: 1fr; gap: 2rem; }
    .topic-cards { grid-template-columns: 1fr; }
    .retreat-feature { grid-template-columns: 1fr; gap: 2rem; }
    .retreat-past-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .container, .container-narrow { padding: 0 1.25rem; }

    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; }

    .stats-row { gap: 2rem; }
    .stat-number { font-size: 2rem; }

    .offerings-grid { gap: 1.5rem; }

    .about-photo { aspect-ratio: 4/3; }

    .page-hero { padding: 8rem 0 3rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .lead-magnet .email-row {
        flex-direction: column;
    }

    .retreat-past-grid { grid-template-columns: 1fr 1fr; }
}
