/* ===== CSS VARIABLES & TOKENS ===== */
:root {
    /* Colors */
    --sand: #F7F5F2;
    --clay: #9B6B43;
    --forest: #2F5D50;
    --sage: #A6B8A0;
    --ink: #1C1C1C;
    --rule: #E8E2D9;
    
    /* Spacing */
    --space-xs: 16px;
    --space-sm: 24px;
    --space-md: 40px;
    --space-lg: 72px;
    --space-xl: 96px;
    
    /* Layout */
    --container: 1120px;
    --border-radius: 8px;
    --border-radius-round: 999px;
    
    /* Typography */
    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-condensed: 'Roboto Condensed', 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    background-color: var(--sand);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    /* Non‑serif headings per new direction */
    font-family: var(--font-body);
    color: var(--forest);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 var(--space-sm) 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: var(--space-sm);
}

p {
    margin: 0 0 var(--space-sm) 0;
}

.smallcaps {
    font-family: var(--font-condensed);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--rule);
}

.section:first-of-type {
    border-top: none;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--forest);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* ===== HERO SECTION WITH VIDEO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero__overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero__copy {
    max-width: 60ch;
    color: white;
}

.hero__copy .lead {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    color: white;
}

/* Centered brand logo in hero (below options) */
.hero__logo {
    display: flex;
    justify-content: center;

}
.hero__logo img {
    height: 125px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

/* ===== BRAND BAND (centered logo below header) ===== */
.brand-band {
    padding: var(--space-md) 0 var(--space-lg);
    text-align: center;
}
.brand-band img {
    height: 56px;
    width: auto;
    filter: saturate(0.9);
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    margin-bottom: 0;
    position: relative;
}

.brand {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav__list {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav__list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav__list a:hover {
    color: var(--sage);
}

.menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: transform 0.2s ease;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border: 1px solid var(--forest);
    color: var(--forest);
    text-decoration: none;
    border-radius: 8px; /* square, refined */
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    min-height: 48px;
    line-height: 1.2;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04) inset;
}

.btn:hover { background: var(--forest); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset; }

.btn--primary { background: var(--forest); color: #fff; border-color: var(--forest); font-size: 1.05rem; padding: 1rem 2rem; box-shadow: 0 6px 16px rgba(47,93,80,0.25); }

.btn--primary:hover {
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 6px 16px rgba(47, 93, 80, 0.4);
}

.btn--secondary { background: #fff; color: var(--forest); border-color: var(--rule); }

.btn--secondary:hover { background: var(--clay); color: #fff; border-color: var(--clay); }

.btn--ota {
    background: var(--sage);
    color: var(--forest);
    border-color: var(--sage);
}

.btn--ota:hover {
    background: var(--forest);
    color: white;
    border-color: var(--forest);
}

/* OTA brand variants */
.btn--airbnb { background: #FF5A5F; border-color: #FF5A5F; color: #fff; }
.btn--airbnb:hover { background: #E0484D; border-color: #E0484D; }

.btn--booking { background: #003580; border-color: #003580; color: #fff; }
.btn--booking:hover { background: #00285F; border-color: #00285F; }

.btn--hostelworld { background: #FC642D; border-color: #FC642D; color: #fff; }
.btn--hostelworld:hover { background: #E05527; border-color: #E05527; }

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

.btn--whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn--email {
    background: var(--clay);
    color: white;
    border-color: var(--clay);
}

.btn--email:hover {
    background: var(--forest);
    border-color: var(--forest);
}

/* ===== ABOUT SECTION ===== */
.about__content {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
}

.about__content h2 {
    margin-bottom: var(--space-lg);
}

.about__content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

/* Refined hyperlink styling in body copy */
.about__content a {
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.about__content a:hover,
.about__content a:focus {
    color: var(--clay);
    border-bottom-color: var(--clay);
    outline: none;
}
.about__content a:active {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

/* ===== RETREATS SECTION ===== */
.retreats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.retreats__item {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--rule);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.retreats__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.retreats__image {
    height: 200px;
    overflow: hidden;
}

.retreats__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.retreats__item:hover .retreats__image img {
    transform: scale(1.05);
}

.retreats__content {
    padding: var(--space-md);
}

.retreats__cta {
    text-align: center;
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== POTTERY, STUDIOS & SPA SECTIONS ===== */
.pottery__content,
.studios__content,
.spa__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

/* Pottery section: image on left, text on right */
.pottery__content {
    grid-template-columns: 1fr 1fr;
}

.pottery__content .pottery__image {
    order: 1;
}

.pottery__content .pottery__text {
    order: 2;
}

/* Spa section: image on left, text on right */
.spa__content {
    grid-template-columns: 1fr 1fr;
}

.spa__content .spa__image {
    order: 1;
}

.spa__content .spa__text {
    order: 2;
}

.pottery__text,
.studios__text,
.spa__text {
    max-width: 50ch;
}

.pottery__text p,
.studios__text p,
.spa__text p {
    margin-bottom: var(--space-md);
}

.pottery__image img,
.studios__image img,
.spa__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ===== YOGA SECTION ===== */
.yoga__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}
.yoga__text { max-width: 50ch; }
.yoga__text p { margin-bottom: var(--space-md); }
.yoga__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.highlight__item {
    text-align: center;
    padding: var(--space-md);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--rule);
    transition: transform 0.2s ease;
}

.highlight__item:hover {
    transform: translateY(-2px);
}

.highlight__image {
    height: 150px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
}

.highlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight__item:hover .highlight__image img {
    transform: scale(1.05);
}

.highlight__item h3 {
    margin-bottom: var(--space-sm);
    color: var(--forest);
}

.highlight__item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.testimonial {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--rule);
    text-align: center;
    transition: transform 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.testimonial cite {
    color: var(--clay);
    font-weight: 500;
}

/* ===== BOOKING SECTION ===== */
/* ===== FAQ SECTION ===== */
.faq { max-width: 68ch; margin: 0 auto; }
.faq details { border: 1px solid var(--rule); border-radius: 8px; padding: 12px 16px; background: #fff; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--forest); }
.faq p { margin: 10px 0 0; }

/* FAQ section on main page */
#faq {
    text-align: center;
}

#faq h2 {
    margin-bottom: var(--space-sm);
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--forest);
}

.faq-intro {
    max-width: 65ch;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: var(--ink);
    opacity: 0.8;
    font-weight: 400;
}

.faq-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

.faq-cta .btn {
    min-width: 200px;
    text-align: center;
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--forest);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
    display: inline-block;
    border: 1px solid var(--forest);
    box-shadow: 0 6px 16px rgba(47, 93, 80, 0.25);
}

.faq-cta .btn:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47, 93, 80, 0.4);
}

/* Responsive FAQ adjustments */
@media (max-width: 600px) {
    .faq-intro {
        font-size: 1.05rem;
        max-width: 100%;
        padding: 0 var(--space-sm);
    }
    
    .faq-cta .btn {
        min-width: 180px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ===== BLOG SECTION ===== */
.blog__grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--space-lg); 
    margin-top: var(--space-lg);
    align-items: stretch;
}

.blog__card { 
    background: #fff; 
    border: 1px solid var(--rule); 
    border-radius: var(--border-radius);
    padding: var(--space-md); 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    height: 100%;
    text-align: center;
}

.blog__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clay), var(--sage));
    opacity: 0;
    transition: opacity 0.15s ease;
}

.blog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog__card:hover::before {
    opacity: 1;
}

.blog__title { 
    font-family: var(--font-body);
    font-size: 1.1rem; 
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm); 
    color: var(--forest);
    letter-spacing: -0.01em;
    text-align: center;
}

.blog__excerpt { 
    margin-bottom: var(--space-md); 
    opacity: 0.8;
    line-height: 1.5;
    color: var(--ink);
    font-size: 0.85rem;
    flex-grow: 1;
    text-align: center;
}

.blog__link { 
    margin-top: auto;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    font-size: 1rem;
    font-family: var(--font-body);
    min-width: 120px;
    text-align: center;
    line-height: 1.2;
    padding: 14px 32px;
    border-radius: 8px;
    background: #fff;
    color: var(--forest);
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-block;
    align-self: center;
    border: 1px solid var(--rule);
    box-shadow: 0 2px 0 rgba(0,0,0,0.04) inset;
}

.blog__link:hover {
    background: var(--clay);
    color: #fff;
    border-color: var(--clay);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(155, 107, 67, 0.25);
}

/* Blog section header styling */
#journal h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
    color: var(--forest);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

#journal .section {
    text-align: center;
}

#journal .section p {
    max-width: 65ch;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    color: var(--ink);
    opacity: 0.8;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 900px) {
    .blog__grid { 
        grid-template-columns: 1fr; 
        gap: var(--space-md);
    }
    
    .blog__card {
        padding: var(--space-md);
        text-align: center;
        min-height: auto;
        height: auto;
    }
    
    .blog__link {
        align-self: center;
        margin-top: var(--space-md);
        min-width: 100%;
    }
}
.booking__content {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
}

.booking__intro {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
}

.booking__options,
.contact__options {
    margin-bottom: var(--space-lg);
}

.booking__options h3,
.contact__options h3 {
    margin-bottom: var(--space-md);
    color: var(--forest);
}

.booking__buttons,
.contact__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    align-items: stretch;
}

/* Refined button content alignment for brand icons */
.btn__icon { display: inline-flex; align-items: center; margin-right: 8px; }
.btn__label { display: inline-block; }

/* Consistent button spacing */
.booking__buttons .btn--primary { 
    /* No additional margin needed - using gap for consistent spacing */
}

.booking__note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-condensed);
    letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: white;
    padding: var(--space-lg) 0 var(--space-md);
    margin-top: var(--space-lg);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__info h3 {
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.footer__info address {
    font-style: normal;
    margin-bottom: var(--space-sm);
}

.footer__link {
    color: var(--sage);
    text-decoration: none;
}

.footer__link:hover {
    color: white;
}

.footer__links h4,
.footer__social h4 {
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: var(--space-xs);
}

.footer__links a {
    color: var(--sage);
    text-decoration: none;
}

.footer__links a:hover {
    color: white;
}

.social__link {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
}

.social__link:hover {
    color: white;
}

.social__icons { display: flex; gap: 18px; align-items: center; }
.social__icons .social__link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.social__icons .social__link svg { width: 28px; height: 28px; }
.social__icons .social__link:hover { color: #ffffff; }

.footer__bottom {
    border-top: 1px solid var(--rule);
    padding-top: var(--space-md);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 2px solid #ffffff;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
    background: #128C7E;
}

.whatsapp-fab:focus {
    outline: 3px solid var(--forest);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1px, 1px);
    border: 0;
}

/* ===== GOOGLE RATING BADGE ===== */
.google-rating-badge {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 260px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    text-decoration: none;
    color: var(--ink);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}

.grb__top {
    height: 6px;
    background: #34A853; /* Google green */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.grb__inner {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
}

.grb__title {
    font-family: var(--font-body);
    font-weight: 600;
}

.grb__score {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.grb__value {
    color: #EA6C00; /* orange rating color */
    font-weight: 700;
}

.grb__stars {
    color: #FF8C00;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .google-rating-badge { left: 12px; bottom: 12px; width: 230px; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
    .section {
        padding: var(--space-md) 0;
    }
    
    body {
        font-size: 17px;
    }
    
    .pottery__content,
    .studios__content,
    .yoga__content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .pottery__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pottery__content .pottery__text {
        order: 2;
    }
    
    .pottery__content .pottery__image {
        order: 1;
    }
    
    .nav__list {
        display: none;
    }
    
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__list.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: var(--space-md);
        border: 1px solid var(--rule);
        border-top: none;
        backdrop-filter: blur(10px);
        z-index: 1000;
        gap: var(--space-sm);
    }
    
    .nav__list.open a {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__list.open a:last-child {
        border-bottom: none;
    }
    
    .hero {
        height: 80vh;
    }
}

/* Medium screens (600px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    .pottery__content,
    .studios__content,
    .spa__content,
    .yoga__content {
        text-align: center;
    }
    
    .pottery__content,
    .spa__content {
        grid-template-columns: 1fr;
    }
    
    .pottery__content .pottery__text,
    .spa__content .spa__text {
        order: 2;
    }
    
    .pottery__content .pottery__image,
    .spa__content .spa__image {
        order: 1;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
    
    .booking__buttons {
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .booking__buttons .btn {
        min-width: 180px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--space-xs);
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .booking__buttons,
    .contact__buttons {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .booking__buttons .btn,
    .contact__buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0;
    }
    
    .retreats__cta {
        flex-direction: column;
    }
    
    .highlights__grid { grid-template-columns: 1fr; }
    
    .retreats__grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 70vh;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .nav {
        padding: var(--space-xs) 0;
    }
    

}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
.btn:focus,
a:focus {
    outline: 2px solid var(--forest);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --sand: #ffffff;
        --ink: #000000;
        --forest: #000000;
        --clay: #000000;
    }
}

.faq-header {
    background: var(--forest);      /* Dark green background */
    color: white;                   /* White text */
    padding: var(--space-sm) 0;     /* Compact padding maintained */
}