:root {
    --ivory: #faf7f2;
    --beige: #f1eae0;
    --sand: #d9c7a7;
    --sage: #a8b5a0;
    --sage-dark: #8a9b8b;
    --sage-deep: #6f7f70;
    --charcoal: #2e2a26;
    --charcoal-soft: #6b635b;
    --white: #ffffff;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --radius: 1.25rem;
    --radius-sm: 0.75rem;
    --shadow-soft: 0 18px 45px -18px rgba(46, 42, 38, 0.18);
    --shadow-card: 0 14px 38px -18px rgba(46, 42, 38, 0.16);
    --shadow-lift: 0 24px 50px -20px rgba(46, 42, 38, 0.26);
    --grad-hero: linear-gradient(180deg, rgba(46, 42, 38, 0.28) 0%, rgba(46, 42, 38, 0.55) 100%);
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    color: var(--sage-deep);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--charcoal);
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid var(--sage-dark);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 0.75rem 0;
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-lg {
    padding: 0.9rem 2.1rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border-color: var(--sand);
    color: var(--charcoal-soft);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--beige);
    color: var(--charcoal);
}

/* Header / Navigation */
.site-header {
    background: rgba(250, 247, 242, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 42, 38, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px -18px rgba(46, 42, 38, 0.25);
    background: rgba(250, 247, 242, 0.95);
}

.navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-mark {
    display: inline-flex;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--charcoal);
}

.brand-text span {
    color: var(--sage-deep);
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--charcoal-soft);
    padding-inline: 0.85rem;
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--charcoal);
}

.navbar .nav-link.active {
    color: var(--sage-deep);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 2px;
    background: var(--sage);
}

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(138, 155, 139, 0.35);
}

/* Hero */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
    content: '';
    width: 2.25rem;
    height: 1px;
    background: var(--sand);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.2vw, 4.1rem);
    font-weight: 500;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 24px rgba(46, 42, 38, 0.35);
}

.hero p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2;
}

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

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: var(--white);
}

.section-sage {
    background: linear-gradient(180deg, var(--beige) 0%, var(--ivory) 100%);
}

.eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 0.85rem;
}

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

.section h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin-bottom: 1.1rem;
}

.section-lead {
    color: var(--charcoal-soft);
    font-size: 1.05rem;
    max-width: 640px;
    margin-inline: auto;
}

/* Introduction */
.intro-media {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.intro-points li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.55rem 0;
    color: var(--charcoal-soft);
}

.intro-points li::before {
    content: '';
    flex: 0 0 auto;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--sage);
    transform: translateY(-0.1rem);
}

/* Cards */
.class-card {
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.class-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.class-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .class-card-media img {
    transform: scale(1.05);
}

.class-card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.class-card-body h3 {
    font-size: 1.35rem;
    margin: 0;
}

.class-card-body p {
    color: var(--charcoal-soft);
    margin: 0;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--sage-deep);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link:hover {
    color: var(--charcoal);
}

.card-link::after {
    content: '\2192';
    transition: transform 0.25s ease;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Style chips */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.style-chip {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.style-chip:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.style-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--beige);
    color: var(--sage-deep);
    margin-bottom: 1rem;
}

.style-chip h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.style-chip p {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits / icon cards */
.benefit-card {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--beige), var(--ivory));
    color: var(--sage-deep);
    margin-bottom: 1.2rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.benefit-card p {
    color: var(--charcoal-soft);
    font-size: 0.97rem;
    margin: 0;
}

/* Mindfulness two-column */
.mindful-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.mindful-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.5rem 0;
    color: var(--charcoal-soft);
}

.check-list li::before {
    content: '';
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.25rem;
    border-radius: 50%;
    background: var(--sage) center / 60% no-repeat
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Beginner section */
.beginner-wrap {
    background: linear-gradient(135deg, var(--sage-deep), var(--sage));
    border-radius: var(--radius);
    padding: 3.4rem 2.8rem;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.beginner-wrap h2 {
    color: var(--white);
}

.beginner-wrap p {
    color: rgba(255, 255, 255, 0.92);
}

.beginner-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.8rem 0;
}

.beginner-step {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    backdrop-filter: blur(4px);
}

.beginner-step strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.beginner-step span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Wellness */
.wellness-row {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.wellness-row h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.wellness-row p {
    color: var(--charcoal-soft);
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: var(--beige);
    color: var(--sage-deep);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--charcoal-soft);
    margin: 0;
}

.demo-note {
    display: inline-block;
    background: var(--beige);
    color: var(--charcoal-soft);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

/* FAQ */
.accordion-item {
    border: 1px solid rgba(46, 42, 38, 0.08);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.9rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.accordion-button {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 1.2rem 1.5rem;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--beige);
    color: var(--sage-deep);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(138, 155, 139, 0.35);
}

.accordion-body {
    color: var(--charcoal-soft);
    padding: 1rem 1.5rem 1.4rem;
}

/* Contact */
.contact-card {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border-color: rgba(46, 42, 38, 0.14);
    padding: 0.75rem 1rem;
    background-color: var(--ivory);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 0.25rem rgba(138, 155, 139, 0.2);
    background-color: var(--white);
}

.form-label {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.form-check-input:checked {
    background-color: var(--sage-deep);
    border-color: var(--sage-deep);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(138, 155, 139, 0.25);
}

.contact-note {
    color: var(--charcoal-soft);
}

.alert {
    border-radius: var(--radius-sm);
}

/* Footer */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.78);
    padding: 4.5rem 0 2rem;
    margin-top: 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.footer-about {
    max-width: 380px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--sand);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-heading {
    color: var(--sand);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 3rem;
    padding-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    justify-content: space-between;
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-note {
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    text-align: right;
}

/* Page hero */
.page-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 42, 38, 0.35) 0%, rgba(46, 42, 38, 0.62) 100%);
}

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

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    text-shadow: 0 2px 20px rgba(46, 42, 38, 0.35);
}

.page-hero-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Content pages */
.content-page {
    padding: 4.5rem 0 5rem;
}

.content-page h2 {
    font-size: 1.7rem;
    margin: 2.2rem 0 0.9rem;
}

.content-page h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 0.7rem;
}

.content-page p,
.content-page li {
    color: var(--charcoal-soft);
}

.content-page ul,
.content-page ol {
    padding-left: 1.2rem;
}

.content-page li {
    margin-bottom: 0.45rem;
}

.content-card {
    background: var(--white);
    border: 1px solid rgba(46, 42, 38, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2.6rem;
}

.class-detail {
    margin-bottom: 3.2rem;
}

.class-detail-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.class-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-pill {
    display: inline-block;
    background: var(--beige);
    color: var(--sage-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 0.9rem;
}

/* Cookie modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(46, 42, 38, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-card {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 30px 70px -20px rgba(46, 42, 38, 0.45);
    padding: 2.3rem 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1rem;
    background: var(--beige);
    color: var(--sage-deep);
    margin-bottom: 1.1rem;
}

.cookie-title {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.cookie-text {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.cookie-policy-link {
    margin-top: 1.1rem;
    font-size: 0.9rem;
}

.cookie-policy-link a {
    color: var(--charcoal-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-policy-link a:hover {
    color: var(--charcoal);
}

/* Utilities */
.text-balance {
    text-wrap: balance;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar .nav-link.active::after {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .navbar .btn {
        width: 100%;
    }

    .hero {
        min-height: 78vh;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 3.8rem 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.6rem;
    }

    .beginner-wrap {
        padding: 2.4rem 1.5rem;
    }

    .cookie-modal-card {
        padding: 1.8rem 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
