/*
Theme Name: BETreat Retreats
Theme URI: https://betreatretreat.com
Author: South Shore Collective
Author URI: https://southshorecollective.com
Author Contact: southshorecoll@gmail.com
Description: Premium WordPress theme for BETreat Retreats wellness experiences - Features elegant typography, scroll animations, WooCommerce integration, and a complete retreat booking system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: Proprietary - All Rights Reserved
Text Domain: betreat

Theme Features:
- Custom Post Types: Retreats, Facilitators, Room Options
- WooCommerce Integration with Authorize.net Gateway
- ACF Pro Field Groups for dynamic content
- Responsive mobile-first design
- Scroll-triggered animations
- Photo galleries with lightbox
- FAQ accordion components
- Deposit-based booking flow
- Calendly integration for registration calls
- Branded email templates

Design & Development: South Shore Collective (southshorecoll@gmail.com)
*/

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors - Dusty Rose Pink from original BeTreat design */
    --color-primary: #d33d91;
    --color-primary-dark: #b8327a;
    --color-primary-light: rgba(211, 61, 145, 0.1);
    
    /* Neutral Colors - Updated to match design specs */
    --color-background: #F8F5F0;
    --color-foreground: #333333;
    --color-charcoal: #333333;
    --color-muted: #666666;
    --color-border: #E8E4DD;
    --color-card: #ffffff;
    --color-sage: #7BA17B;
    
    /* Typography - Updated to Cormorant Garamond + Montserrat */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --container-narrow: 800px;
    --spacing-section: 5rem;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition-base: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-foreground);
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-primary { color: var(--color-primary) !important; }
.text-white { color: white !important; }
.italic { font-style: italic; }

.logo-inline {
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.logo-inline .text-primary {
    color: var(--color-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Button shine effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(211, 61, 145, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 61, 145, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(211, 61, 145, 0.25);
}

.btn-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 14px rgba(211, 61, 145, 0.3);
}

.btn-hero:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(211, 61, 145, 0.4);
}

.btn-hero:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-hero-outline:active {
    transform: translateY(-1px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-cta-outline:active {
    transform: translateY(-1px);
}

.btn-cta-ghost {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-cta-ghost:active {
    transform: translateY(0);
    background: rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: transparent;
    border-bottom: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--color-background);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--color-border);
}

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

.site-logo {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    /* No gap - BETREAT is one word */
}

/* Logo colors - transparent state (white text, pink BE) */
.site-logo .text-primary {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.site-logo span:last-child {
    color: white;
    transition: color 0.3s ease;
}

/* Logo colors - scrolled state */
.site-header.scrolled .site-logo span:last-child {
    color: var(--color-charcoal);
}

.site-logo:hover {
    opacity: 0.9;
}

/* Back arrow for subpages */
.site-logo .back-arrow {
    color: white;
    margin-right: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.site-header.scrolled .site-logo .back-arrow {
    color: var(--color-charcoal);
}

.site-logo:hover .back-arrow {
    transform: translateX(-3px);
}

/* Nav links - transparent state (white) */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: none;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-primary);
}

/* Nav links - scrolled state */
.site-header.scrolled .main-nav a {
    color: var(--color-charcoal);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--color-primary);
}

/* Header CTA Button */
.header-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

/* Header Social Links - transparent state */
.header-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-social a {
    color: white;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.header-social a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Header Social Links - scrolled state */
.site-header.scrolled .header-social a {
    color: var(--color-muted);
}

.site-header.scrolled .header-social a:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hamburger - scrolled state */
.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background: var(--color-charcoal);
}

/* Hamburger - active state (X) */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background: white;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
    background: white;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    text-align: center;
}

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

.mobile-nav li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

.mobile-menu.open .mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-nav li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-nav li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open .mobile-nav li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open .mobile-nav li:nth-child(5) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.mobile-cta {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.35s forwards;
}

/* Hide header social on smaller screens */
@media (max-width: 1100px) {
    .header-social {
        display: none;
    }
}

@media (max-width: 992px) {
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* ===== PAGE HEADER BAR ===== */
.page-header-bar {
    background: var(--color-charcoal);
    padding: 1.5rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.back-link:hover {
    color: white;
}

/* ===== HOMEPAGE HERO ===== */
.home-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax-enabled hero background */
.home-hero.parallax-hero .parallax-bg {
    position: absolute;
    inset: -20%;
    z-index: 1;
    will-change: transform;
}

.home-hero.parallax-hero .parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback for non-parallax */
.home-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero .hero-overlay,
.home-hero .parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(155, 122, 91, 0.3) 0%, rgba(45, 45, 45, 0.6) 100%);
}

.home-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

/* Hero content with fade effect on scroll */
.home-hero .hero-fade-on-scroll {
    will-change: opacity, transform;
}

.hero-logo {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-logo .text-primary {
    color: var(--color-primary);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(6px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--color-background) 0%, #f5f2ed 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar:hover {
    background: rgba(211, 61, 145, 0.03);
    transform: translateY(-4px);
}

.pillar h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    transition: color 0.3s ease;
}

.pillar:hover h3 {
    color: var(--color-primary);
}

.pillar p {
    color: var(--color-muted);
    line-height: 1.7;
}

.about-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-message p {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.8;
}

/* ===== RETREATS SECTION ===== */
.retreats-section {
    padding: var(--spacing-section) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.retreats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.retreat-card {
    background: var(--color-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: block;
}

.retreat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.retreat-card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.retreat-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.retreat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 122, 91, 0.3) 0%, rgba(45, 45, 45, 0.6) 100%);
}

.placeholder-image {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.retreat-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.retreat-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.retreat-card-title-overlay h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.retreat-card-title-overlay .location-name {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
}

.card-tagline {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.retreat-card-content {
    padding: 1.5rem;
}

.retreat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.meta-item svg {
    color: var(--color-primary);
}

.retreat-excerpt {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.retreat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.learn-more {
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-base);
}

.retreat-card:hover .learn-more {
    gap: 0.75rem;
}

.country {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.no-retreats {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-muted);
    font-size: 1.125rem;
    padding: 3rem;
}

/* ===== CLOSING SECTION ===== */
.closing-section {
    padding: var(--spacing-section) 0;
    background-color: var(--color-charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.closing-bg-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(155, 122, 91, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.closing-bg-effects::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(155, 122, 91, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.closing-section .container {
    position: relative;
    z-index: 10;
}

.closing-logo {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    color: white;
}

.closing-hook {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 2rem;
}

.closing-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.closing-whispers {
    margin-bottom: 2rem;
}

.closing-whispers p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.closing-brand {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.closing-brand .logo-text {
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
}

.closing-brand .emphasis {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
}

.closing-question {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 2.5rem;
}

.closing-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(211, 61, 145, 0.4);
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-foreground);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: white;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-email:hover {
    color: var(--color-primary);
}

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

.footer-social a {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-made-with {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.footer-made-with .heart-icon {
    color: var(--color-primary);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

/* ===== BESPOKE PAGE ===== */
.bespoke-hero {
    background: linear-gradient(to bottom, var(--color-charcoal) 0%, rgba(45,45,45,0.95) 100%);
    padding: 6rem 0;
    text-align: center;
}

.bespoke-hero .hero-label {
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.bespoke-hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.bespoke-hero h1 .divider {
    color: rgba(155,122,91,0.6);
    margin: 0 0.5rem;
}

.bespoke-hero h1 .italic {
    font-family: var(--font-serif);
}

.bespoke-hero .hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.bespoke-intro {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content .lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-content .subtitle {
    color: var(--color-muted);
    font-size: 1.125rem;
}

.bespoke-how-it-works {
    padding: var(--spacing-section) 0;
    background: rgba(0,0,0,0.02);
}

.bespoke-how-it-works .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bespoke-how-it-works .section-header p {
    color: var(--color-muted);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: rgba(211, 61, 145, 0.03);
    transform: translateY(-6px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(211, 61, 145, 0.3);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-muted);
    line-height: 1.6;
}

.bespoke-ideal-for {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
    text-align: center;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.ideal-card {
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ideal-card:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(211, 61, 145, 0.12);
}

.ideal-card p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-foreground);
    margin: 0;
    transition: color 0.3s ease;
}

.ideal-card:hover p {
    color: var(--color-primary);
}

.bespoke-cta {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.bespoke-cta .cta-icon {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.bespoke-cta h2 {
    font-family: var(--font-serif);
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.bespoke-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== VIP PAGE ===== */
.vip-hero {
    background: linear-gradient(to bottom, rgba(155,122,91,0.1) 0%, var(--color-background) 100%);
    padding: 5rem 0;
    text-align: center;
}

.vip-hero .hero-label {
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vip-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.vip-hero .hero-description {
    color: var(--color-muted);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.vip-description {
    padding: 4rem 0;
    background: var(--color-background);
    text-align: center;
}

.vip-description .lead {
    font-size: 1.25rem;
    color: var(--color-foreground);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.vip-includes {
    padding: var(--spacing-section) 0;
    background: rgba(0,0,0,0.02);
}

.vip-includes h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.include-card {
    background: var(--color-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.include-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(211, 61, 145, 0.2);
}

.include-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-primary-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.include-card:hover .include-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 6px 16px rgba(211, 61, 145, 0.3);
}

.include-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.include-card:hover h3 {
    color: var(--color-primary);
}

.include-card p {
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

.vip-ideal-for {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.vip-ideal-for h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.ideal-list {
    max-width: 600px;
    margin: 0 auto;
}

.ideal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.ideal-item:hover {
    padding-left: 0.5rem;
}

.ideal-item:last-child {
    border-bottom: none;
}

.ideal-item .bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ideal-item:hover .bullet {
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(211, 61, 145, 0.5);
}

.ideal-item p {
    font-size: 1.125rem;
    color: var(--color-foreground);
    margin: 0;
    transition: color 0.3s ease;
}

.ideal-item:hover p {
    color: var(--color-primary);
}

.vip-cta {
    padding: var(--spacing-section) 0;
    background: var(--color-primary);
    text-align: center;
}

.vip-cta .cta-icon {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.vip-cta .cta-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.vip-cta .cta-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===== RETREAT SINGLE PAGE ===== */

.retreat-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax-enabled retreat hero */
.retreat-hero.parallax-hero .parallax-bg {
    position: absolute;
    inset: -20%;
    z-index: 1;
    will-change: transform;
}

.retreat-hero.parallax-hero .parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05);
}

/* Fallback for non-parallax */
.retreat-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.retreat-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05);
}

.retreat-hero .hero-overlay,
.retreat-hero .parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(45,45,45,0.2) 0%, rgba(45,45,45,0.5) 100%);
}

.retreat-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1.5rem 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

/* Hero content with fade effect on scroll */
.retreat-hero .hero-fade-on-scroll {
    will-change: opacity, transform;
}

.retreat-hero .container {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
}

.retreat-hero .hero-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: 0;
    line-height: 1.1;
}

.retreat-hero .hero-title .be { color: var(--color-primary); }
.retreat-hero .hero-title .treat { color: white; }
.retreat-hero .hero-title .location {
    color: white;
    font-family: var(--font-serif);
    font-style: italic;
    margin-left: 0.5rem;
    font-size: 0.6em;
}

.retreat-hero .hero-tagline {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    margin: 1.5rem 0 2rem;
}

.retreat-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.retreat-hero .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.retreat-hero .hero-meta-item svg {
    color: var(--color-primary);
    width: 1.125rem;
    height: 1.125rem;
}

.retreat-hero .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .retreat-hero .hero-ctas { 
        flex-direction: row; 
    }
}

@media (min-width: 768px) {
    .retreat-hero .hero-meta-item { 
        font-size: 1rem; 
    }
    .retreat-hero .hero-meta-item svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.retreat-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.status-upcoming { background: var(--color-primary); }
.status-sold-out { background: #dc2626; }
.status-waitlist { background: #f59e0b; }

.retreat-title {
    color: white;
    margin-bottom: 1rem;
}

.retreat-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.retreat-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.retreat-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.retreat-description {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.retreat-description .lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Facilitators */
.retreat-facilitators {
    padding: var(--spacing-section) 0;
    background: white;
}

.facilitators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.facilitator-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.facilitator-card:hover {
    background: rgba(211, 61, 145, 0.03);
    transform: translateY(-4px);
}

.facilitator-card .facilitator-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facilitator-card:hover .facilitator-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(211, 61, 145, 0.2);
}

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

.facilitator-card:hover img {
    transform: scale(1.08);
}

.facilitator-card h3 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.facilitator-card:hover h3 {
    color: var(--color-primary);
}

.facilitator-card .role {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.facilitator-card .bio {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Experiences */
/* Who It's For Section */
.retreat-who {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.retreat-who h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.who-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--color-muted);
}

.who-list li .bullet {
    color: var(--color-primary);
    font-weight: 600;
}

/* What You'll Leave With Section */
.retreat-outcomes {
    padding: var(--spacing-section) 0;
    background: white;
}

.retreat-outcomes h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.outcomes-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-muted);
}

.outcomes-list li svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

/* The Offerings Section */
.retreat-offerings {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.retreat-offerings h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.offerings-tagline {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.offerings-tagline .betreat-logo {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.offerings-tagline .betreat-logo .be {
    color: var(--color-primary);
}

.offerings-tagline .betreat-logo .treat {
    color: var(--color-foreground);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offering-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(211, 61, 145, 0.15);
}

.offering-card:hover::before {
    transform: scaleY(1);
}

.offering-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.offering-card:hover h3 {
    color: var(--color-primary);
}

.offering-card p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Experiences (kept for backwards compatibility) */
.retreat-experiences {
    padding: var(--spacing-section) 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.experience-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--color-background);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover .experience-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(211, 61, 145, 0.3);
}

.experience-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Gallery */
.retreat-gallery {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform var(--transition-base);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Room Options */
.retreat-rooms {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.room-card .room-image {
    overflow: hidden;
}

.room-card .room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-card .room-content {
    padding: 1.5rem;
}

/* FAQs */
.retreat-faqs {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(211, 61, 145, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* CTA */
.retreat-cta {
    padding: var(--spacing-section) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
}

.retreat-cta h2 {
    color: white;
}

.retreat-cta .btn-primary {
    background: white;
    color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root {
        --spacing-section: 3rem;
    }
    
    .home-hero {
        min-height: 80vh;
    }
    
    .hero-ctas,
    .closing-ctas,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero, 
    .btn-hero-outline,
    .btn-cta-outline,
    .btn-cta-ghost {
        width: 100%;
        max-width: 280px;
    }
    
    .pillars-grid,
    .features-grid,
    .retreats-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .retreat-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== WordPress Specific ===== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===== WooCommerce Styling ===== */

/* General WooCommerce Layout */
.woocommerce {
    font-family: var(--font-body);
    color: var(--color-foreground);
}

.woocommerce .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem var(--spacing-container);
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    border: none;
    background: #f0fdf4;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    color: currentColor;
}

.woocommerce-info {
    background: #eff6ff;
    color: #1e40af;
}

.woocommerce-error {
    background: #fef2f2;
    color: #991b1b;
}

.woocommerce-message a,
.woocommerce-info a {
    color: inherit;
    font-weight: 600;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 1rem 1.25rem;
    border: none;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce table.shop_table thead {
    background: #fafafa;
}

.woocommerce table.shop_table thead th {
    font-family: var(--font-serif);
    font-weight: 500;
    text-transform: none;
    font-size: 0.9rem;
    color: var(--color-foreground);
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

/* Product thumbnail in cart */
.woocommerce table.cart .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.woocommerce table.cart .product-name a {
    color: var(--color-foreground);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce table.cart .product-name a:hover {
    color: var(--color-primary);
}

/* Quantity input */
.woocommerce .quantity .qty {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    text-align: center;
    font-size: 1rem;
}

/* Remove button */
.woocommerce a.remove {
    color: #ef4444 !important;
    font-size: 1.5rem;
    font-weight: 300;
}

.woocommerce a.remove:hover {
    background: #fef2f2 !important;
}

/* Cart actions */
.woocommerce .cart-collaterals,
.woocommerce .cart_totals {
    margin-top: 2rem;
}

.woocommerce .cart_totals {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
}

.woocommerce .cart_totals h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.woocommerce .cart_totals table {
    border: none;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: none;
}

/* WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    transition: all 0.3s;
    cursor: pointer;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--color-primary-dark);
    color: white;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--color-primary);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--color-primary-dark);
}

/* Checkout Page */
.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .woocommerce-checkout #customer_details {
        grid-template-columns: 1fr;
    }
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    max-width: none;
    float: none;
}

.woocommerce form .form-row {
    margin-bottom: 1rem;
}

.woocommerce form .form-row label {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.woocommerce form .form-row .required {
    color: var(--color-primary);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(211, 61, 145, 0.1);
}

/* Checkout order review */
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
    margin-top: 2rem;
}

.woocommerce-checkout #order_review_heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.woocommerce-checkout-review-order-table {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #fafafa;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    margin: 0 0 1.5rem 0;
    list-style: none;
    border: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 500;
    cursor: pointer;
}

.woocommerce-checkout #payment .payment_box {
    background: transparent;
    padding: 0.75rem 0 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.woocommerce-checkout #payment .payment_box::before {
    display: none;
}

.woocommerce-checkout #payment #place_order {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Product Page (Single Product) */
.woocommerce div.product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem var(--spacing-container);
}

.woocommerce div.product div.images {
    width: 50%;
    float: left;
}

.woocommerce div.product div.images img {
    border-radius: 0.75rem;
}

.woocommerce div.product div.summary {
    width: 45%;
    float: right;
}

@media (max-width: 768px) {
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }
    
    .woocommerce div.product div.summary {
        margin-top: 2rem;
    }
}

.woocommerce div.product .product_title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.woocommerce div.product p.price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin-bottom: 1.5rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.woocommerce div.product form.cart {
    margin-bottom: 2rem;
}

.woocommerce div.product form.cart .button {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Variations form */
.woocommerce div.product form.cart .variations {
    margin-bottom: 1.5rem;
}

.woocommerce div.product form.cart .variations td {
    padding: 0.5rem 0;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 500;
    font-size: 0.875rem;
}

.woocommerce div.product form.cart .variations select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    min-width: 200px;
}

/* Product meta */
.woocommerce div.product .product_meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-muted);
}

.woocommerce div.product .product_meta > span {
    display: block;
    margin-bottom: 0.5rem;
}

.woocommerce div.product .product_meta a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Order received page */
.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.woocommerce-order-received .woocommerce-order-details {
    background: #fafafa;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

/* Empty cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 3rem;
    font-size: 1.125rem;
    color: var(--color-muted);
}

.woocommerce-cart .return-to-shop {
    text-align: center;
}

/* Coupon form */
.woocommerce .coupon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce .coupon #coupon_code {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    min-width: 200px;
}

/* Update cart button */
.woocommerce button[name="update_cart"] {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-foreground);
}

.woocommerce button[name="update_cart"]:hover {
    background: #fafafa;
    border-color: var(--color-foreground);
    color: var(--color-foreground);
}

/* Select2 styling (if using Select2 for dropdowns) */
.select2-container--default .select2-selection--single {
    padding: 0.75rem 1rem;
    height: auto;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
}

.select2-dropdown {
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--color-primary);
}
