/* ============================================================
   SMWR THEME — MAIN STYLESHEET
   Foundation (tokens, type, buttons, nav, footer, reveal, hamburger)
   is shared by every template. Page-type-specific component styles
   (retreat detail, teacher profile, course curriculum, archives)
   live in their own clearly-labeled sections below so the file stays
   navigable as the theme grows.
============================================================ */

:root {
  --forest:    #273021;
  --forest-2:  #1e2619;
  --forest-3:  #344529;
  --sand:      #a8885a;
  --sand-2:    #c4a47a;
  --sand-3:    #e8d9c5;
  --cream:     #fdfaf5;
  --cream-2:   #f7f2ea;
  --cream-3:   #ede5d8;
  --warm-white:#fffef9;
  --text:      #2a2a22;
  --text-2:    #5a5648;
  --text-3:    #8a8278;
  --nav-h:     92px;
  --radius:    6px;
  --max:       1200px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--warm-white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 1001; background: linear-gradient(90deg, var(--sand), var(--sand-2)); transition: width 0.1s linear; }

.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 500; }
p  { line-height: 1.85; color: var(--text-2); font-size: 0.975rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 60px; }
.section-head > div { max-width: 600px; }
.section-head h2 { margin-bottom: 12px; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-forest { background: var(--forest); }

/* ============================================================
   BUTTONS
============================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--sand); color: #fff; border: 1.5px solid var(--sand); border-radius: var(--radius); cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.22s, box-shadow 0.22s; white-space: nowrap; }
.btn:hover { background: var(--sand-2); border-color: var(--sand-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168,136,90,0.28); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn.outline { background: transparent; color: var(--sand); border-color: var(--sand); }
.btn.outline:hover { background: var(--sand); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168,136,90,0.20); }
.btn.outline-white { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn.outline-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.12); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-lg { padding: 18px 40px; font-size: 14px; }

/* ============================================================
   NAV
============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); background: rgba(39,48,33,0); transition: background 0.4s, box-shadow 0.4s; }
.nav.scrolled { background: rgba(253,250,245,0.97); box-shadow: 0 2px 20px rgba(39,48,33,0.10); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: var(--nav-h); gap: 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block; transition: height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s; flex-shrink: 0; }
.nav:not(.scrolled) .nav-logo img { height: 64px; }
.logo-light { opacity: 1; }
.logo-dark  { opacity: 0; position: absolute; }
.nav.scrolled .logo-light { opacity: 0; position: absolute; }
.nav.scrolled .logo-dark  { opacity: 1; position: static; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; list-style: none; }
.nav-links li { list-style: none; position: relative; }
.nav-links > li { display: flex; align-items: center; }
.nav-links a { font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.88); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a { color: var(--sand-2); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active, .nav.scrolled .nav-links .current-menu-item a { color: var(--sand); }
/* Dropdown chevron */
.nav-links .menu-item-has-children > a::after { content: ''; display: inline-block; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 5px; opacity: 0.55; vertical-align: middle; transition: transform 0.2s; }
.nav-links .menu-item-has-children:hover > a::after { transform: rotate(225deg) translateY(0); opacity: 0.8; }
/* Sub-menu panel */
.nav-links .sub-menu { display: none; position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%); background: rgba(253,250,245,0.98); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(39,48,33,0.13); min-width: 160px; padding: 8px 0; z-index: 300; list-style: none; }
.nav-links li:hover > .sub-menu { display: block; }
.nav-links .sub-menu li { display: block; }
.nav-links .sub-menu a { display: block; padding: 10px 22px; font-size: 12px; color: var(--text) !important; letter-spacing: 0.05em; white-space: nowrap; transition: color 0.2s, padding-left 0.2s; }
.nav-links .sub-menu a:hover { color: var(--sand) !important; padding-left: 28px; }
/* Mobile dropdown */
.mobile-nav-links li { list-style: none; }
.mobile-nav-links .menu-item-has-children { position: relative; }
.mobile-nav-links .sub-menu { display: none; padding: 0 0 10px 16px; list-style: none; }
.mobile-nav-links .menu-item-has-children.open > .sub-menu { display: block; }
.mobile-nav-links .sub-menu a { font-size: 0.9rem; color: var(--text-2); border-bottom: none; padding: 8px 0; }
.mobile-sub-toggle { position: absolute; right: 0; top: 0; height: 48px; width: 40px; background: none; border: none; cursor: pointer; color: var(--text-3); display: flex; align-items: center; justify-content: center; padding: 0; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-cta { padding: 9px 20px; font-size: 12px; }
/* Donate button — outline-white on dark hero, outline-sand on scrolled */
.nav-donate { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.35); }
.nav-donate:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); box-shadow: none; color: #fff; }
.nav.scrolled .nav-donate { background: transparent; color: var(--sand); border-color: var(--sand); }
.nav.scrolled .nav-donate:hover { background: var(--sand); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168,136,90,0.2); }

/* ============================================================
   PAGE HERO (slim hero used on inner pages)
============================================================ */
.page-hero { position: relative; overflow: hidden; height: 52vh; min-height: 380px; display: flex; align-items: flex-end; padding-bottom: 72px; background-color: var(--forest); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); will-change: transform; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.90) 0%, rgba(27,34,21,0.42) 55%, rgba(27,34,21,0.15) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { position: relative; z-index: 2; }
/* Ensure h1, eyebrow, and p are always white inside any page-hero layout */
.page-hero h1 { color: #fff; font-weight: 300; font-style: italic; }
.page-hero .eyebrow { color: var(--sand-2); }
.page-hero p { color: rgba(255,255,255,0.68); }
.page-hero-content .eyebrow { opacity: 0; animation: fadeUp 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards; }
.page-hero-content h1 { opacity: 0; animation: fadeUp 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.page-hero-content p { font-size: 1.05rem; max-width: 520px; margin-top: 14px; opacity: 0; animation: fadeUp 0.8s 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; margin-top: 16px; opacity: 0; animation: fadeUp 0.8s 0.85s cubic-bezier(0.22,1,0.36,1) forwards; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sand-2); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
/* Breadcrumb in cream section (dark text) */
.detail-breadcrumb { color: var(--text-3); margin-top: 0; margin-bottom: 24px; padding-top: 20px; animation: none; opacity: 1; }
.detail-breadcrumb a { color: var(--text-3); }
.detail-breadcrumb a:hover { color: var(--text); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal { opacity: 0; transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.reveal.fade-up { transform: translateY(40px); }
.reveal.fade-left { transform: translateX(-40px); }
.reveal.fade-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }

/* ============================================================
   HAMBURGER / MOBILE DRAWER
============================================================ */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 300; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s, background 0.3s; transform-origin: center; }
.nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 250; pointer-events: none; }
.mobile-nav.open { pointer-events: all; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(27,34,21,0.55); opacity: 0; transition: opacity 0.35s; backdrop-filter: blur(2px); }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-drawer { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: var(--cream); transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.22,1,0.36,1); display: flex; flex-direction: column; padding: 28px 32px 40px; overflow-y: auto; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close { align-self: flex-end; margin-bottom: 32px; background: none; border: none; cursor: pointer; font-size: 28px; color: var(--text-2); line-height: 1; padding: 4px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.mobile-nav-links a { font-family: var(--sans); font-size: 1.05rem; font-weight: 400; color: var(--text); padding: 13px 0; border-bottom: 1px solid var(--cream-3); transition: color 0.2s, padding-left 0.2s; display: block; }
.mobile-nav-links a:hover { color: var(--sand); padding-left: 6px; }
.mobile-nav-footer { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-footer .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--forest-2); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { max-width: 200px; height: auto; width: 100%; object-fit: contain; display: block; margin-bottom: 18px; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 10px; }
.footer-dba { color: rgba(255,255,255,0.35); font-size: 0.8rem; line-height: 1.6; }
.footer-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--sand-2); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--sand-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sand-2); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   RETREAT DETAIL — hero, sticky booking bar, layout, sidebar
============================================================ */
.retreat-hero { position: relative; overflow: hidden; height: 82vh; min-height: 560px; display: flex; align-items: stretch; background-color: var(--forest-2); }
.retreat-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.06); will-change: transform; }
.retreat-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,27,16,1.00) 0%, rgba(20,27,16,0.62) 45%, rgba(20,27,16,0.28) 100%); }
/* Inner container: hero copy anchored to bottom */
.retreat-hero-container { display: flex; flex-direction: column; justify-content: flex-end; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 80px; position: relative; z-index: 2; width: 100%; }
.retreat-hero-content { max-width: 780px; padding-left: 4px; }
.retreat-hero-content .eyebrow { color: var(--sand-2); font-size: 16px; opacity: 0; animation: fadeUp 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards; }
.retreat-hero-content h1 { color: #fff; font-weight: 300; font-style: italic; margin-bottom: 20px; font-size: clamp(2.6rem, 5vw, 4.4rem); opacity: 0; animation: fadeUp 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.retreat-hero-meta { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeUp 0.8s 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-meta-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.10); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 7px 14px; white-space: nowrap; }
.hero-meta-pill-icon { font-size: 14px; }
.hero-meta-pill-text { font-size: 12px; color: rgba(255,255,255,0.80); letter-spacing: 0.04em; }
/* Hero date row — sits on its own line below the quick-fact pills */
.hero-date-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; opacity: 0; animation: fadeUp 0.8s 0.85s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-date-icon { font-size: 16px; }
.hero-date-single { font-size: 13px; color: rgba(255,255,255,0.90); font-weight: 500; letter-spacing: 0.04em; }
.hero-date-select { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.30); border-radius: 24px; color: #fff; font-size: 13px; font-family: inherit; font-weight: 500; padding: 8px 16px; appearance: none; -webkit-appearance: none; cursor: pointer; backdrop-filter: blur(4px); }
.hero-date-select option { background: #2a2a2a; color: #fff; }
.hero-book-btn { padding: 9px 22px; font-size: 13px; white-space: nowrap; }


.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; padding: 80px 0 100px; }
.detail-section { margin-bottom: 64px; }
.detail-section:last-child { margin-bottom: 0; }
.detail-section h2 { margin-bottom: 20px; font-style: italic; }
.detail-section p { margin-bottom: 16px; }
.detail-section p:last-child { margin-bottom: 0; }
.detail-section blockquote { border-left: 3px solid var(--sand); padding: 20px 28px; background: var(--cream-2); border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0; font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--text); line-height: 1.65; }
.content-image-block { margin-bottom: 40px; }
.content-image-block img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.content-image-caption { font-size: 13px; color: var(--text-3); margin-top: 10px; text-align: center; font-style: italic; }

.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.include-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--cream-2); border-radius: var(--radius); border: 1px solid var(--cream-3); }
.include-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.include-text { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }

.schedule-list { margin-top: 20px; }
.schedule-day { border-bottom: 1px solid var(--cream-3); }
.schedule-day:last-child { border-bottom: none; }
.schedule-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; background: none; border: none; cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--text); text-align: left; transition: color 0.2s; gap: 12px; }
.schedule-toggle:hover { color: var(--sand); }
.schedule-chevron { font-size: 20px; color: var(--sand); flex-shrink: 0; transition: transform 0.3s; }
.schedule-day.open .schedule-chevron { transform: rotate(45deg); }
.schedule-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding-bottom 0.4s cubic-bezier(0.4,0,0.2,1); padding-bottom: 0; }
.schedule-body ul { display: flex; flex-direction: column; gap: 8px; }
.schedule-body li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--text-2); }
.schedule-body li::before { content: '—'; color: var(--sand-2); flex-shrink: 0; margin-top: 1px; }

.teacher-block { display: flex; gap: 28px; align-items: flex-start; background: var(--cream); border-radius: var(--radius); padding: 32px; border: 1px solid var(--cream-3); }

/* Single teacher — two-column layout */
.teacher-profile-section { padding: 64px 0 80px; }
.teacher-profile-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.teacher-profile-main { padding-top: 8px; }
.teacher-bio-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.teacher-bio-content p { margin-bottom: 20px; }
.teacher-bio-content h2, .teacher-bio-content h3 { margin: 32px 0 12px; }
.teacher-profile-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.teacher-sidebar-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--cream-3); overflow: hidden; box-shadow: 0 4px 24px rgba(39,48,33,0.07); }
.teacher-sidebar-photo { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.teacher-sidebar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.teacher-sidebar-info { padding: 24px; }
.teacher-sidebar-info h3 { font-size: 1.35rem; margin-bottom: 8px; }
.teacher-sidebar-tagline { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 0; }
.teacher-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--cream-3); }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-info h3 { font-size: 1.4rem; margin-bottom: 10px; }
.teacher-info p { font-size: 0.875rem; color: var(--text-2); margin-bottom: 10px; }
.teacher-contact { font-size: 12px; color: var(--sand); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.teacher-contact:hover { color: var(--sand-2); }

.booking-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.booking-card { background: var(--warm-white); border-radius: var(--radius); border: 1px solid var(--cream-3); overflow: hidden; box-shadow: 0 8px 48px rgba(39,48,33,0.10); }
.booking-card-top { background: var(--forest); padding: 28px 28px 24px; }
.booking-card-top .eyebrow { color: var(--sand-2); margin-bottom: 8px; }
.booking-price-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.booking-price-range { font-family: var(--serif); font-size: 2rem; color: #fff; line-height: 1.1; margin-bottom: 4px; }
.booking-price-note { font-size: 11px; color: rgba(255,255,255,0.45); }
.booking-card-body { padding: 24px 28px; }
.booking-dates-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 12px; }
.booking-divider { height: 1px; background: var(--cream-3); margin: 20px 0; }
.accommodation-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 12px; }
/* Date selector cards */
.booking-date-option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid var(--cream-3); margin-bottom: 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.booking-date-option.selected { border-color: var(--sand); background: rgba(168,136,90,0.06); }
.booking-date-option:hover:not(.selected) { border-color: var(--sand-2); }
.booking-radio { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--cream-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s; }
.booking-date-option.selected .booking-radio { border-color: var(--sand); }
.booking-radio-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); opacity: 0; transition: opacity 0.2s; }
.booking-date-option.selected .booking-radio-dot { opacity: 1; }
.booking-date-text { font-size: 13px; color: var(--text); }
/* Accommodation dropdown */
.accom-select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--cream-3); border-radius: var(--radius); font-family: var(--sans); font-size: 13px; color: var(--text); background: var(--warm-white); outline: none; cursor: pointer; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.accom-select:focus { border-color: var(--sand); }
.booking-cta-wrap .btn { width: 100%; justify-content: center; padding: 16px; font-size: 13px; }
/* WeTravel SDK button — override any SDK-injected styles so ours win */
.booking-cta-wrap .wtrvl-checkout_button { all: unset; display: flex; width: 100%; box-sizing: border-box; justify-content: center; padding: 16px; font-size: 13px; background: var(--forest); color: #fff; border-radius: var(--radius); cursor: pointer; font-family: var(--sans); letter-spacing: 0.04em; font-weight: 500; transition: background 0.2s, transform 0.15s; }
.booking-cta-wrap .wtrvl-checkout_button:hover { background: var(--forest-2); transform: translateY(-1px); }
.smwr-hidden { display: none !important; }
.booking-note { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 12px; line-height: 1.6; }
.booking-note a { color: var(--sand); }
.booking-dates-past { font-size: 12px; color: var(--text-3); text-align: center; line-height: 1.6; margin: 0; }
.booking-dates-past a { color: var(--sand); }
/* Everything Included mini-list in sidebar */
.booking-includes { border-top: 1px solid var(--cream-3); margin-top: 20px; padding-top: 16px; }
.booking-includes-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); font-weight: 600; margin-bottom: 12px; }
.booking-includes-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.booking-includes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; color: var(--text-2); line-height: 1.45; }
.booking-includes-list li .bi-icon { flex-shrink: 0; font-size: 13px; line-height: 1.45; }
/* Price breakdown table */
.price-breakdown { background: var(--cream-2); border-radius: var(--radius); padding: 14px 16px; margin-top: 16px; margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-3); padding: 5px 0; }
.price-row.total { color: var(--text); font-weight: 500; font-size: 13px; border-top: 1px solid var(--cream-3); margin-top: 6px; padding-top: 10px; }
.price-row span:last-child { color: var(--sand); }
.booking-includes { margin-top: 20px; border-top: 1px solid var(--cream-3); padding-top: 20px; }
.booking-includes-title { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.booking-includes-list { display: flex; flex-direction: column; gap: 8px; }
.booking-include { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--text-2); }
.booking-include::before { content: '✓'; color: var(--sand); font-weight: 600; flex-shrink: 0; }

.related-section { padding: 80px 0 100px; }
.related-section .section-head h2 { font-style: italic; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { border-radius: var(--radius); overflow: hidden; background: var(--warm-white); box-shadow: 0 4px 28px rgba(39,48,33,0.07); transition: transform 0.3s, box-shadow 0.3s; display:block; }
.related-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(39,48,33,0.12); }
.related-img { aspect-ratio: 16/9; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-body { padding: 18px 20px 22px; }
.related-meta { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 8px; }
.related-card h3 { font-size: 1.05rem; color: var(--text); line-height: 1.3; margin-bottom: 8px; }
.related-link { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); }

.mobile-booking-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 180; background: rgba(253,250,245,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--cream-3); padding: 14px 20px; }
.mobile-booking-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-booking-price { font-family: var(--serif); font-size: 1.3rem; color: var(--sand); }
.mobile-booking-price small, .mobile-booking-cta-inner small { font-family: var(--sans); font-size: 11px; color: var(--text-3); display: block; }
.mobile-booking-cta .btn { padding: 12px 24px; font-size: 12px; }

/* ============================================================
   SPECIALTY / TAG CHIPS — used on teacher profiles & teacher cards
============================================================ */
.specialty-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.specialty-chip { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); background: var(--sand-3); border-radius: 20px; padding: 4px 12px; }
.specialty-chip.on-dark { color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); }

/* ============================================================
   COURSE DETAIL — hero, learn grid, curriculum accordion,
   instructor card, reviews, sticky enroll sidebar
============================================================ */
.course-hero { min-height: 62vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: var(--forest-2); }
.course-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transition: transform 0.1s linear; transform: scale(1.06); }
.course-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,18,11,0.92) 0%, rgba(14,18,11,0.45) 60%, rgba(14,18,11,0.1) 100%); }
.course-hero-content { position: relative; z-index: 2; padding: 80px 0 72px; width: 100%; }
.course-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.course-meta-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.10); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 7px 14px; white-space: nowrap; font-size: 12px; color: rgba(255,255,255,0.85); }
.course-hero-content h1 { color: #fff; font-weight: 300; font-style: italic; font-size: clamp(2rem,4.5vw,3.8rem); line-height: 1.1; margin-bottom: 14px; }
.course-hero-content p { color: rgba(255,255,255,0.72); max-width: 600px; font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; }
.course-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-teacher-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 30px; padding: 6px 14px 6px 6px; }
.hero-teacher-chip img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.hero-teacher-chip span { font-size: 12px; color: rgba(255,255,255,0.75); }

.course-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.course-main { min-width: 0; }

.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 48px; }
.learn-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--cream); border-radius: 10px; border: 1px solid var(--cream-3); }
.learn-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.learn-item p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 0; }

.curriculum-header { margin-bottom: 24px; }
.curriculum-header h3 { font-style: italic; font-size: 1.6rem; margin-bottom: 6px; }
.curriculum-header .curriculum-meta { font-size: 13px; color: var(--text-3); }
.module { border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; background: var(--warm-white); }
.module-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; transition: background 0.2s; border-bottom: 1px solid transparent; }
.module-header:hover { background: var(--cream-2); }
.module.open .module-header { border-bottom-color: var(--cream-3); background: var(--cream-2); }
.module-number { width: 36px; height: 36px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1rem; color: var(--sand); flex-shrink: 0; }
.module-title-block { flex: 1; }
.module-title-block h4 { font-size: 1rem; font-weight: 500; margin-bottom: 2px; }
.module-subtitle { font-size: 12px; color: var(--text-3); }
.module-meta { font-size: 12px; color: var(--text-3); flex-shrink: 0; text-align: right; white-space: nowrap; }
.module-arrow { font-size: 18px; color: var(--text-3); flex-shrink: 0; transition: transform 0.3s; }
.module.open .module-arrow { transform: rotate(180deg); }
.module-lessons { display: none; padding: 0 24px 8px; }
.module.open .module-lessons { display: block; }
.lesson { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--cream-3); }
.lesson:last-child { border-bottom: none; }
.lesson-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-3); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; color: var(--text-3); }
.lesson.free .lesson-icon { background: var(--sand-3); color: var(--sand); }
.lesson-name { flex: 1; font-size: 13px; color: var(--text-2); }
.lesson-duration { font-size: 12px; color: var(--text-3); }
.lesson-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); background: var(--sand-3); border-radius: 10px; padding: 2px 8px; }

.instructor-card { display: flex; gap: 24px; padding: 28px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-3); margin-top: 48px; }
.instructor-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--sand-3); }
.instructor-info { flex: 1; }
.instructor-info .eyebrow { margin-bottom: 4px; }
.instructor-info h3 { font-style: italic; font-size: 1.3rem; margin-bottom: 8px; }
.instructor-info p { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.instructor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.instructor-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); background: var(--sand-3); border-radius: 20px; padding: 3px 10px; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.review-card { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 22px 24px; }
.review-stars { color: var(--sand); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.review-text { font-size: 13px; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.review-author-name { font-size: 12px; font-weight: 500; color: var(--forest); }
.review-author-location { font-size: 11px; color: var(--text-3); }

.course-sidebar { position: sticky; top: calc(var(--nav-h) + 28px); }
.sidebar-card { background: var(--warm-white); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 36px rgba(39,48,33,0.10); }
.sidebar-preview { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.sidebar-preview img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-body { padding: 24px; }
.sidebar-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.sidebar-price-number { font-family: var(--serif); font-size: 2.4rem; color: var(--forest); line-height: 1; }
.sidebar-price-original { font-size: 1.1rem; color: var(--text-3); text-decoration: line-through; }
.sidebar-price-save { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: #c25f3a; border-radius: 10px; padding: 3px 8px; }
.sidebar-guarantee { font-size: 11px; color: var(--text-3); margin-bottom: 18px; }
.sidebar-enroll { display: block; width: 100%; text-align: center; padding: 16px; font-size: 1rem; margin-bottom: 10px; }
.sidebar-includes { list-style: none; border-top: 1px solid var(--cream-3); padding-top: 18px; }
.sidebar-includes li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-2); padding: 7px 0; }
.sidebar-includes li .si-icon { font-size: 16px; width: 20px; text-align: center; }

/* ============================================================
   FILTER BAR — shared by archive-retreat.php (Retreat Category)
   and archive-teacher.php (Discipline)
============================================================ */
.filter-bar { background: var(--cream-2); border-bottom: 1px solid var(--cream-3); position: sticky; top: var(--nav-h); z-index: 100; }
.filter-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; padding: 18px 22px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.filter-btn:hover { color: var(--sand); }
.filter-btn.active { color: var(--sand); border-bottom-color: var(--sand); }
.filter-divider { width: 1px; height: 20px; background: var(--cream-3); flex-shrink: 0; margin: 0 4px; }

/* ============================================================
   RETREATS ARCHIVE
============================================================ */
.retreats-section { padding: 72px 0 100px; }
.retreats-count { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 36px; }
.retreats-count span { color: var(--sand); }
.retreats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.retreat-card { border-radius: var(--radius); overflow: hidden; background: var(--warm-white); box-shadow: 0 4px 28px rgba(39,48,33,0.07); transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.retreat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(39,48,33,0.13); }
.retreat-card.hidden { display: none; }
.retreat-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.retreat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.retreat-card:hover .retreat-img img { transform: scale(1.05); }
.retreat-badge { position: absolute; bottom: 12px; left: 12px; background: var(--sand); color: #fff; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; }
.retreat-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.retreat-meta { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 8px; }
.retreat-dates { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; display: flex; flex-direction: column; gap: 3px; }
.retreat-date-row { display: flex; align-items: center; gap: 8px; }
.retreat-date-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sand-3); flex-shrink: 0; }
.retreat-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.3; color: var(--text); }
.retreat-card p { font-size: 0.875rem; color: var(--text-2); flex: 1; margin-bottom: 20px; line-height: 1.75; }
.retreat-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.retreat-link { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.retreat-card:hover .retreat-link { gap: 10px; }
.retreat-price { font-size: 11px; color: var(--text-3); }
.no-results { grid-column: 1 / -1; text-align: center; padding: 60px 0; }
.no-results h3 { font-style: italic; color: var(--text-3); margin-bottom: 12px; }

/* ============================================================
   TEACHERS ARCHIVE — founders feature + guest faculty grid
============================================================ */
.founders-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2px; margin-bottom: 80px; }
.founder-feature { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--forest); display: block; }
.founder-feature img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity 0.5s, transform 0.6s; }
.founder-feature:hover img { opacity: 0.85; transform: scale(1.04); }
.founder-feature-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.95) 0%, rgba(27,34,21,0.40) 55%, transparent 100%); }
.founder-feature-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px; }
.founder-feature-content .eyebrow { color: var(--sand-2); margin-bottom: 8px; }
.founder-feature-content h2 { color: #fff; font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-style: italic; margin-bottom: 12px; }
.founder-feature-content p { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.75; margin-bottom: 16px; }

.teachers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.teacher-card { background: var(--warm-white); border-radius: var(--radius); border: 1px solid var(--cream-3); overflow: hidden; box-shadow: 0 4px 24px rgba(39,48,33,0.06); transition: transform 0.3s, box-shadow 0.3s; display: block; }
.teacher-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(39,48,33,0.12); }
.teacher-card.hidden { display: none; }
.teacher-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.teacher-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.teacher-card:hover .teacher-img img { transform: scale(1.05); }
.teacher-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.85) 0%, transparent 50%); }
.teacher-img-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px 18px; }
.teacher-discipline { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand-2); margin-bottom: 4px; }
.teacher-name-overlay { font-family: var(--serif); font-size: 1.3rem; color: #fff; font-style: italic; }
.teacher-body { padding: 20px 22px 24px; }
.teacher-body p { font-size: 13px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.teacher-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.teacher-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); background: var(--sand-3); border-radius: 20px; padding: 4px 10px; }

.teacher-invite { background: var(--forest); border-radius: var(--radius); padding: 60px 48px; text-align: center; margin-top: 80px; }
.teacher-invite .eyebrow { color: var(--sand-2); }
.teacher-invite h2 { color: #fff; font-style: italic; margin-bottom: 16px; }
.teacher-invite p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 28px; font-size: 0.975rem; }
.teacher-invite .btn-row { justify-content: center; }

/* ============================================================
   COURSES ARCHIVE
============================================================ */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card { border-radius: var(--radius); overflow: hidden; background: var(--warm-white); box-shadow: 0 4px 28px rgba(39,48,33,0.07); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(39,48,33,0.13); }
.course-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.course-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; color: var(--text); }
.course-card-body p { font-size: 0.875rem; color: var(--text-2); flex: 1; margin-bottom: 18px; line-height: 1.75; }
.course-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.course-card-price { font-family: var(--serif); font-size: 1.1rem; color: var(--sand); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-img { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-img::before { content: ''; position: absolute; top: -16px; left: -16px; width: 64px; height: 64px; border-top: 2px solid var(--sand); border-left: 2px solid var(--sand); z-index: 2; }
.intro-text h2 { font-style: italic; margin-bottom: 20px; }
.intro-text p { margin-bottom: 16px; color: var(--text-2); line-height: 1.85; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--cream-3); }
.stat-number { font-family: var(--serif); font-size: 2.4rem; color: var(--forest); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; }

.mv-section { position: relative; overflow: hidden; padding: 100px 0; }
.mv-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); will-change: transform; }
.mv-bg::after { content: ''; position: absolute; inset: 0; background: rgba(20,27,16,0.82); }
.mv-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.mv-block .eyebrow { color: var(--sand-2); }
.mv-block h2 { color: #fff; font-style: italic; margin-bottom: 16px; }
.mv-block h3 { color: #fff; font-style: italic; font-size: 1.7rem; margin-bottom: 16px; }
.mv-block p { color: rgba(255,255,255,0.7); line-height: 1.85; }
.mv-divider { width: 48px; height: 2px; background: var(--sand); margin: 20px 0 24px; }

.fv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.fv-col h3, .fv-grid .reveal h3 { font-style: italic; margin-bottom: 20px; }
.fv-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.fv-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-2); line-height: 1.6; padding: 13px 0; border-bottom: 1px solid var(--cream-3); }
.fv-item:first-child { border-top: 1px solid var(--cream-3); }
.fv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sand); flex-shrink: 0; margin-top: 7px; }

.agri-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.agri-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.agri-img img { width: 100%; height: 100%; object-fit: cover; }
.agri-text h2 { font-style: italic; margin-bottom: 18px; }
.agri-text p { color: var(--text-2); line-height: 1.85; margin-bottom: 14px; }

.nonprofit-banner { background: var(--cream-2); border-top: 3px solid var(--sand-3); border-bottom: 3px solid var(--sand-3); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.nonprofit-banner::before { content: '100%'; position: absolute; font-family: var(--serif); font-size: 20rem; color: rgba(168,136,90,0.07); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; line-height: 1; }
.nonprofit-banner .eyebrow { color: var(--sand); position: relative; }
.nonprofit-banner h2 { color: var(--forest); font-style: italic; margin-bottom: 14px; position: relative; }
.nonprofit-banner p { color: var(--text-2); max-width: 560px; margin: 0 auto; position: relative; }
.nonprofit-banner .btn-row { justify-content: center; position: relative; }

.founder-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.founder-img { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-img-label { position: absolute; inset: auto 0 0 0; padding: 24px; background: linear-gradient(to top, rgba(20,27,16,0.85), transparent); color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.4; }
.founder-text h2 { font-style: italic; margin-bottom: 18px; }
.founder-text p { color: var(--text-2); line-height: 1.85; margin-bottom: 16px; }
.founder-signature { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--forest); margin-top: 16px; }

.invitation { position: relative; overflow: hidden; padding: 120px 0; text-align: center; }
.invitation-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); will-change: transform; }
.invitation-bg::after { content: ''; position: absolute; inset: 0; background: rgba(20,27,16,0.6); }
.invitation-content { position: relative; z-index: 2; }
.invitation-content .eyebrow { color: var(--sand-2); }
.invitation-content h2 { color: #fff; font-style: italic; margin-bottom: 18px; }
.invitation-content p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; }
.invitation-content .btn-row { justify-content: center; }

@media (max-width: 1024px) {
  .intro-split, .agri-split, .founder-split, .mv-inner, .fv-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-row { grid-template-columns: repeat(3,1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .mv-section, .invitation { padding: 64px 0; }
  .nonprofit-banner { padding: 36px 24px; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }

/* Info sidebar — each block is a card */
.contact-info-block { display: flex; align-items: flex-start; gap: 18px; padding: 24px 28px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-3); margin-bottom: 16px; }
.contact-info-block:last-child { margin-bottom: 0; display: block; }
.info-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; margin-top: 2px; }
.info-block-text { flex: 1; min-width: 0; }
.contact-info-block h3 { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.contact-info-block p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 4px; }
.contact-info-block a { color: var(--sand); transition: color 0.2s; }
.contact-info-block a:hover { color: var(--sand-2); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-link { padding: 8px 16px; border: 1px solid var(--cream-3); border-radius: 20px; font-size: 12px; color: var(--text-2); text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: var(--sand); color: var(--sand); }

/* Form — tabs as pill group matching HTML */
.form-tabs { display: flex; gap: 0; border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.form-tab { flex: 1; padding: 14px 20px; text-align: center; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--warm-white); color: var(--text-3); border: none; cursor: pointer; transition: background 0.2s, color 0.2s; }
.form-tab:not(:last-child) { border-right: 1px solid var(--cream-3); }
.form-tab.active { background: var(--sand); color: #fff; }
.form-tab:hover:not(.active) { background: var(--cream-2); color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.contact-form .form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-size: 11px; font-weight: 500; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 14px 18px; border: 1px solid var(--cream-3); border-radius: var(--radius); font-family: var(--sans); font-size: 14px; background: var(--warm-white); color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--sand); box-shadow: 0 0 0 3px rgba(168,136,90,0.12); }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 12px; color: var(--text-3); margin-bottom: 16px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }

/* Directions / Getting Here */
.directions-section { padding: 80px 0; }
.directions-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.directions-text .eyebrow { color: var(--sand); }
.directions-text h2 { margin-bottom: 16px; font-style: italic; }
.directions-text > p { margin-bottom: 20px; }

/* Compact contact card (address + phone + email in one block) */
.dir-info-card { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 8px; display: flex; flex-direction: column; gap: 10px; }
.dir-info-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }
.dir-info-row .dir-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 1px; }
.dir-info-row a { color: var(--sand); transition: color 0.2s; }
.dir-info-row a:hover { color: var(--sand-2); }

/* Getting here detail rows (By Car, Airports) */
.directions-detail { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--cream-3); }
.directions-detail:last-child { border-bottom: none; }
.directions-detail-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.directions-detail-text strong { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 4px; }
.directions-detail-text p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.7; }
.directions-detail-text a { color: var(--sand); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream-3); box-shadow: 0 4px 24px rgba(39,48,33,0.08); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* FAQ strip */
.cfaq-strip { padding: 80px 0; }
.cfaq-strip .section-intro { max-width: 560px; margin-bottom: 48px; }
.cfaq-strip .section-intro h2 { font-style: italic; margin-bottom: 10px; }
.cfaq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfaq-item { background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-3); overflow: hidden; }
.cfaq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; gap: 16px; background: none; border: none; cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--text); text-align: left; transition: color 0.2s; }
.cfaq-question:hover { color: var(--sand); }
.cfaq-chevron { font-size: 20px; color: var(--sand); flex-shrink: 0; transition: transform 0.3s; }
.cfaq-item.open .cfaq-chevron { transform: rotate(45deg); }
.cfaq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 22px; }
.cfaq-item.open .cfaq-answer { max-height: 400px; padding: 0 22px 20px; }
.cfaq-answer p { font-size: 0.875rem; color: var(--text-2); line-height: 1.8; margin: 0; }

@media (max-width: 1024px) {
  .contact-layout, .directions-inner { grid-template-columns: 1fr; gap: 36px; }
  .cfaq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
  .directions-section { padding: 48px 0; }
  .cfaq-strip { padding: 48px 0; }
}

/* ============================================================
   PLANNING THE VISIT PAGE
============================================================ */
.plan-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.plan-sidebar { position: static; display: flex; flex-direction: column; gap: 20px; }
.plan-sidebar-card { background: var(--warm-white); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(39,48,33,0.07); }
.plan-card-head { background: var(--forest); color: #fff; padding: 14px 18px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.plan-card-body { padding: 18px 20px; }
.airport-row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--cream-3); }
.airport-row:last-child { border-bottom: none; }
.airport-code { font-family: var(--serif); font-weight: 600; color: var(--forest); font-size: 1rem; }
.airport-dist { font-size: 12px; color: var(--sand); margin-left: auto; }
.airport-name { font-size: 12px; color: var(--text-3); flex: 1; }
.plan-sidebar .map-embed iframe { height: 220px; }
.address-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin: 0; }
.visit-cta { background: var(--forest); border-radius: var(--radius); padding: 24px 22px; text-align: center; }
.visit-cta p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 14px; }
.visit-cta .btn { width: 100%; justify-content: center; }

.plan-section { padding: 56px 0; border-bottom: 1px solid var(--cream-3); }
.plan-section:last-of-type { border-bottom: none; }
.plan-section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.plan-section-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.plan-section-title h2 { font-style: italic; margin: 0; }

.schedule-block { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 32px 28px; }
.schedule-block-head { color: var(--sand); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.schedule-rows { display: flex; flex-direction: column; gap: 0; }
.schedule-row { display: flex; gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--cream-3); }
.schedule-row:last-child { border-bottom: none; }
.schedule-time { font-family: var(--serif); color: var(--sand); font-size: 0.95rem; width: 80px; flex-shrink: 0; }
.schedule-label { color: var(--text); font-size: 0.95rem; flex: 1; }
.schedule-note { color: var(--text-3); font-size: 0.8rem; }
.schedule-extra { color: var(--text-2); font-size: 0.85rem; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--cream-3); }

.getting-here-list { display: flex; flex-direction: column; gap: 0; }
.getting-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--cream-3); }
.getting-item:last-child { border-bottom: none; }
.getting-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.getting-text h4 { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: 4px; }
.getting-text p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.7; }

.bring-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.bring-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-3); }
.bring-emoji { font-size: 18px; flex-shrink: 0; }
.bring-text { font-size: 0.875rem; color: var(--text-2); }

.todo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.todo-item { position: relative; padding: 8px 0 8px 20px; font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.todo-item::before { content: '—'; position: absolute; left: 0; color: var(--sand); }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.policy-card { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 22px 22px; }
.policy-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.policy-icon { font-size: 18px; }
.policy-card h4 { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin: 0; }
.policy-card p { font-size: 0.85rem; color: var(--text-2); margin: 0; line-height: 1.65; }

@media (max-width: 1024px) {
  .plan-layout { grid-template-columns: 1fr; gap: 40px; }
  .plan-sidebar { position: static; }
}
@media (max-width: 768px) {
  .bring-grid, .todo-list, .policy-grid { grid-template-columns: 1fr; }
  .plan-section { padding: 36px 0; }
}

/* ============================================================
   FAQ PAGE
============================================================ */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.faq-nav { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 2px; }
.faq-nav-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 10px; }
.faq-nav-link { padding: 9px 0 9px 12px; font-size: 0.875rem; color: var(--text-3); text-decoration: none; transition: color 0.2s, padding-left 0.2s; border-left: 2px solid transparent; }
.faq-nav-link:hover { color: var(--sand); }
.faq-nav-link.active { color: var(--sand); border-left-color: var(--sand); font-weight: 500; }
.faq-section { scroll-margin-top: calc(var(--nav-h) + 24px); padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--cream-3); }
.faq-section:last-child { border-bottom: none; margin-bottom: 0; }
.faq-section-title { font-style: italic; margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--cream-3); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 22px 0; background: none; border: none; cursor: pointer; font-family: var(--serif); font-size: 1.1rem; color: var(--text); text-align: left; transition: color 0.2s; line-height: 1.4; }
.faq-chevron { font-size: 22px; color: var(--sand); flex-shrink: 0; transition: transform 0.3s; margin-top: 2px; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-2); line-height: 1.85; margin-bottom: 10px; }
.faq-cta { background: var(--forest); border-radius: var(--radius); padding: 48px 40px; text-align: center; margin-top: 24px; }
.faq-cta h2 { color: #fff; font-style: italic; margin-bottom: 14px; }
.faq-cta p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 24px; }

@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .faq-nav-label { display: none; }
  .faq-nav-link { border: 1px solid var(--cream-3); border-radius: 20px; padding: 8px 16px; font-size: 0.8rem; }
  .faq-nav-link.active { background: var(--sand); border-color: var(--sand); color: #fff; }
}

/* ============================================================
   ROOM TOURS PAGE
============================================================ */
.room-tabs { background: var(--cream-2); border-bottom: 1px solid var(--cream-3); position: sticky; top: var(--nav-h); z-index: 100; }
.room-tabs-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.room-tabs-inner::-webkit-scrollbar { display: none; }
.room-tab-btn { flex-shrink: 0; padding: 20px 24px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.room-tab-btn:hover { color: var(--sand); }
.room-tab-btn.active { color: var(--sand); border-bottom-color: var(--sand); }

.featured-room { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; border-bottom: 1px solid var(--cream-3); }
.featured-room-media { position: relative; overflow: hidden; background: var(--forest); }
.featured-room-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.8s; }
.featured-room:hover .featured-room-media img { transform: scale(1.04); }
.featured-room-video { width: 100%; height: 100%; object-fit: cover; }
.featured-room-info { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; background: var(--warm-white); }
.featured-room-info .eyebrow { margin-bottom: 12px; }
.featured-room-info h2 { font-size: clamp(2rem, 3vw, 3rem); font-style: italic; margin-bottom: 20px; }
.featured-room-info p { color: var(--text-2); line-height: 1.85; margin-bottom: 28px; font-size: 1.05rem; }
.room-amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 32px; }
.room-amenities li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.room-amenities li::before { content: '✓'; color: var(--sand); font-weight: 600; flex-shrink: 0; }
.room-rate { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; }
.room-rate-number { font-family: var(--serif); font-size: 2.2rem; color: var(--forest); }
.room-rate-unit { font-size: 13px; color: var(--text-3); }

.room-section { padding: 80px 0; border-bottom: 1px solid var(--cream-3); }
.room-section:last-of-type { border-bottom: none; }
.room-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.room-section-header h3 { font-size: clamp(1.6rem,2.5vw,2rem); font-style: italic; }
.room-section-header .room-type-badge { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--sand); border-radius: 20px; padding: 5px 14px; }

.video-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: var(--forest); margin-bottom: 20px; }
.video-wrapper iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(27,34,21,0.45); cursor: pointer; transition: background 0.25s; }
.play-overlay:hover { background: rgba(27,34,21,0.2); }
.play-btn { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: transform 0.25s; }
.play-overlay:hover .play-btn { transform: scale(1.1); }
.play-btn svg { fill: var(--forest); margin-left: 4px; }
.play-overlay p { color: rgba(255,255,255,0.85); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

.room-gallery { display: grid; gap: 10px; }
.room-gallery.two-col { grid-template-columns: 1fr 1fr; }
.room-gallery.three-col { grid-template-columns: 1fr 1fr 1fr; }
.room-gallery.featured-grid { grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; }
.room-gallery.featured-grid .gallery-img:first-child { grid-row: 1 / 3; }
.gallery-img { position: relative; overflow: hidden; border-radius: 8px; background: var(--cream-3); cursor: pointer; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gallery-img:hover img { transform: scale(1.05); }
.gallery-img.tall { aspect-ratio: 2/3; }
.gallery-img.wide { aspect-ratio: 16/9; }
.gallery-img.square { aspect-ratio: 1; }

.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.facility-card { background: var(--cream); border-radius: var(--radius); border: 1px solid var(--cream-3); overflow: hidden; }
.facility-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.facility-card-body { padding: 16px 18px; }
.facility-card-body h4 { font-style: italic; font-size: 1.05rem; margin-bottom: 4px; }
.facility-card-body p { font-size: 12px; color: var(--text-3); }

.rooms-compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.compare-card { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.compare-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(39,48,33,0.1); }
.compare-card-img { aspect-ratio: 3/2; overflow: hidden; }
.compare-card-img img { width: 100%; height: 100%; object-fit: cover; }
.compare-card-body { padding: 24px 20px; }
.compare-card-body h4 { font-style: italic; font-size: 1.15rem; margin-bottom: 6px; }
.compare-card-body .price { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); margin-bottom: 4px; }
.compare-card-body .price-note { font-size: 11px; color: var(--text-3); margin-bottom: 14px; }
.compare-features { list-style: none; text-align: left; font-size: 12px; color: var(--text-2); margin-bottom: 20px; }
.compare-features li { padding: 5px 0; border-bottom: 1px solid var(--cream-3); display: flex; gap: 6px; }
.compare-features li:last-child { border-bottom: none; }

@media (max-width:1024px) {
  .featured-room { grid-template-columns: 1fr; }
  .featured-room-media { aspect-ratio: 16/9; min-height: unset; }
  .featured-room-info { padding: 48px 36px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .rooms-compare { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .featured-room-info { padding: 36px 24px; }
  .room-gallery.three-col { grid-template-columns: 1fr 1fr; }
  .room-gallery.featured-grid { grid-template-columns: 1fr; }
  .room-gallery.featured-grid .gallery-img:first-child { grid-row: auto; }
  .facilities-grid { grid-template-columns: 1fr; }
  .rooms-compare { grid-template-columns: 1fr; }
  .room-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   GALLERY PAGE (and shared lightbox, used by Room Tours too)
============================================================ */
.gallery-section { padding: 72px 0 100px; }
.gallery-grid { columns: 4; column-gap: 14px; }
.gallery-item { break-inside: avoid; display: block; position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

.lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(20,27,16,0.94); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); display: block; object-fit: contain; margin: 0 auto; }
.lightbox-caption { text-align: center; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 28px; cursor: pointer; transition: color 0.2s; line-height: 1; }
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.6); font-size: 24px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: background 0.2s, color 0.2s; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 1024px) { .gallery-grid { columns: 3; } }
@media (max-width: 768px) {
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .gallery-section { padding: 48px 0 72px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   RESOURCES HUB PAGE
============================================================ */
.resources-primary { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.resources-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.resources-tertiary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.res-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--forest); display: flex; flex-direction: column; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s; cursor: pointer; text-decoration: none; }
.res-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(39,48,33,0.18); }
.res-card.light { background: var(--warm-white); border: 1px solid var(--cream-3); }
.res-card.sand { background: var(--sand); }
.res-card.cream { background: var(--cream-2); border: 1px solid var(--cream-3); }
.res-card.forest-dark { background: var(--forest-2); }
.res-card.large { min-height: 420px; }
.res-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
.res-card:hover .res-card-bg { transform: scale(1.05); }
.res-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,18,11,0.90) 0%, rgba(14,18,11,0.3) 65%, transparent 100%); }
.res-card-body { position: relative; z-index: 2; margin-top: auto; padding: 30px 28px; }
.res-card.large .res-card-body { padding: 36px 32px; }
.res-card.small { min-height: 200px; }
.res-card.small .res-card-body { padding: 24px 22px; }
.res-card.medium { min-height: 300px; }
.res-card.medium .res-card-body { padding: 28px 26px; }
.res-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.res-card-label { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.res-card h3 { font-family: var(--serif); font-style: italic; line-height: 1.2; margin-bottom: 10px; }
.res-card p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.res-card .res-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: gap 0.2s; }
.res-card:hover .res-link { gap: 10px; }
.res-card:not(.light):not(.cream) .res-card-label { color: rgba(255,255,255,0.55); }
.res-card:not(.light):not(.cream) h3 { color: #fff; }
.res-card:not(.light):not(.cream) p { color: rgba(255,255,255,0.65); }
.res-card:not(.light):not(.cream) .res-link { color: var(--sand-2); }
.res-card.light .res-card-label, .res-card.cream .res-card-label { color: var(--sand); }
.res-card.light h3, .res-card.cream h3 { color: var(--forest); }
.res-card.light p, .res-card.cream p { color: var(--text-2); }
.res-card.light .res-link, .res-card.cream .res-link { color: var(--sand); }
.res-card.sand .res-card-label { color: rgba(255,255,255,0.7); }
.res-card.sand h3 { color: #fff; }
.res-card.sand p { color: rgba(255,255,255,0.75); }
.res-card.sand .res-link { color: #fff; }

.blog-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-mini { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.blog-mini:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(39,48,33,0.1); }
.blog-mini img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-mini-body { padding: 16px 18px 20px; }
.blog-mini-body .eyebrow { margin-bottom: 6px; }
.blog-mini-body h4 { font-style: italic; font-size: 1.1rem; margin-bottom: 6px; color: var(--forest); }
.blog-mini-body p { font-size: 12px; color: var(--text-3); }

.qa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.qa-card { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; align-items: center; padding: 18px 20px; background: var(--warm-white); border: 1px solid var(--cream-3); border-radius: var(--radius); text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.qa-card:hover { border-color: var(--sand); transform: translateY(-2px); }
.qa-icon { grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.qa-text { font-weight: 500; color: var(--text); font-size: 0.95rem; }
.qa-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); }
@media (max-width: 768px) { .qa-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .qa-grid { grid-template-columns: 1fr; } }

.newsletter { background: var(--cream-2); padding: 72px 0; border-top: 1px solid var(--cream-3); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-text .eyebrow { color: var(--sand); }
.newsletter-text h2 { margin-bottom: 12px; font-size: 2rem; }
.signup-form { display: flex; flex-direction: column; gap: 14px; }
.signup-form input { padding: 14px 18px; border: 1px solid var(--cream-3); border-radius: var(--radius); font-family: var(--sans); font-size: 14px; background: var(--warm-white); outline: none; transition: border-color 0.2s; }
.signup-form input:focus { border-color: var(--sand); }
.signup-form button { padding: 14px 28px; background: var(--sand); color: #fff; border: none; border-radius: var(--radius); font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; }
.signup-form button:hover { background: var(--sand-2); }
.signup-note { font-size: 12px; color: var(--text-3); margin-top: 6px; }

@media (max-width:1100px) {
  .resources-primary { grid-template-columns: 1fr; }
  .resources-secondary { grid-template-columns: 1fr 1fr; }
  .resources-tertiary { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width:768px) {
  .resources-secondary { grid-template-columns: 1fr; }
  .resources-tertiary { grid-template-columns: 1fr; }
  .blog-strip { grid-template-columns: 1fr; }
  .newsletter { padding: 52px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-text h2 { font-size: 1.6rem; }
}

/* ============================================================
   OPPORTUNITIES PAGE
============================================================ */
.opp-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.opp-intro-text .eyebrow { color: var(--sand); }
.opp-intro-text h2 { font-style: italic; margin-bottom: 20px; }
.opp-intro-text p { margin-bottom: 16px; }
.opp-intro-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.opp-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.opp-notice { background: var(--forest); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; margin-top: 28px; }
.opp-notice-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.opp-notice p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.opp-notice strong { color: var(--sand-2); }

.opp-cards-section { padding: 72px 0 100px; }
.opp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
.opp-card { background: var(--warm-white); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(39,48,33,0.07); display: flex; flex-direction: column; }
.opp-card-top { padding: 32px 28px 24px; flex: 1; }
.opp-card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--sand-3); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.opp-card h3 { font-size: 1.4rem; margin-bottom: 12px; font-style: italic; }
.opp-card .opp-type { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.opp-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.opp-card-footer { padding: 20px 28px; border-top: 1px solid var(--cream-3); background: var(--cream-2); }
.opp-card-footer .btn { width: 100%; justify-content: center; font-size: 12px; padding: 12px; }

.volunteer-checklist { display: flex; flex-direction: column; gap: 0; margin: 16px 0; }
.vcl-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--cream-3); font-size: 0.875rem; color: var(--text-2); }
.vcl-item:last-child { border-bottom: none; }
.vcl-check { color: var(--sand); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

.nearby-section { background: #6B4423; padding: 80px 0; }
.nearby-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nearby-text .eyebrow { color: var(--sand-2); }
.nearby-text h2 { color: #fff; font-style: italic; margin-bottom: 20px; }
.nearby-text p { color: rgba(255,255,255,0.70); margin-bottom: 16px; }
.nearby-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nearby-item { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 14px 16px; display: flex; gap: 12px; align-items: center; }
.nearby-item-icon { font-size: 18px; }
.nearby-item-text { font-size: 13px; color: rgba(255,255,255,0.80); }

@media (max-width: 1024px) { .opp-intro, .nearby-inner { grid-template-columns: 1fr; gap: 40px; } .opp-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .opp-cards { grid-template-columns: 1fr; } .opp-cards-section { padding: 48px 0 72px; } .nearby-list { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG LISTING (home.php)
============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding: 80px 0 100px; align-items: start; }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 48px rgba(39,48,33,0.10); margin-bottom: 56px; background: var(--warm-white); text-decoration: none; }
.featured-post-img { overflow: hidden; min-height: 280px; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.featured-post:hover .featured-post-img img { transform: scale(1.04); }
.featured-post-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.post-category { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 12px; }
.featured-post-body h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 14px; line-height: 1.25; color: var(--text); }
.featured-post-body p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 20px; }
.post-meta { display: flex; gap: 16px; align-items: center; font-size: 11px; color: var(--text-3); letter-spacing: 0.06em; margin-bottom: 20px; }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cream-3); }
.read-more { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }

.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.cat-filter.filter-bar { background: none; border: none; box-shadow: none; position: static; top: auto; z-index: auto; }
.cat-btn { padding: 8px 18px; border: 1px solid var(--cream-3); border-radius: 20px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); background: none; cursor: pointer; transition: all 0.2s; }
.cat-btn:hover { border-color: var(--sand); color: var(--sand); }
.cat-btn.active { background: var(--sand); border-color: var(--sand); color: #fff; }

.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.post-card { border-radius: var(--radius); overflow: hidden; background: var(--warm-white); box-shadow: 0 4px 24px rgba(39,48,33,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; text-decoration: none; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(39,48,33,0.11); }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card-body .post-category { margin-bottom: 8px; }
.post-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; color: var(--text); }
.post-card-body p { font-size: 0.85rem; color: var(--text-2); flex: 1; margin-bottom: 16px; }
.post-card-body .post-meta { margin-bottom: 0; }

.navigation.pagination { margin-top: 48px; }
.navigation.pagination .nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-btn,
.navigation.pagination .page-numbers {
  min-width: 40px; height: 40px; padding: 0 10px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  color: var(--text-3);
  border: 1px solid var(--cream-3);
  background: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.navigation.pagination .page-numbers.dots { border: none; background: none; cursor: default; }
.page-btn:hover,
.page-btn.active,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current { background: var(--sand); border-color: var(--sand); color: #fff; }
.navigation.pagination .page-numbers.dots:hover { background: none; border: none; color: var(--text-3); }

.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.sidebar-widget { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-widget h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; }
.sidebar-search { display: flex; gap: 0; }
.sidebar-search input { flex: 1; padding: 11px 14px; border: 1px solid var(--cream-3); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-family: var(--sans); font-size: 13px; background: var(--warm-white); outline: none; transition: border-color 0.2s; }
.sidebar-search input:focus { border-color: var(--sand); }
.sidebar-search button { padding: 11px 16px; background: var(--sand); color: #fff; border: none; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; font-size: 13px; transition: background 0.2s; }
.sidebar-search button:hover { background: var(--sand-2); }
.recent-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--cream-3); align-items: flex-start; text-decoration: none; }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-img { width: 56px; height: 56px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-text h5 { font-family: var(--serif); font-size: 0.92rem; line-height: 1.4; color: var(--text); margin-bottom: 4px; }
.recent-post-text span { font-size: 11px; color: var(--text-3); }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag { padding: 6px 14px; border: 1px solid var(--cream-3); border-radius: 20px; font-size: 11px; color: var(--text-3); transition: all 0.2s; cursor: pointer; text-decoration: none; }
.topic-tag:hover { border-color: var(--sand); color: var(--sand); }
.sidebar-signup input { width: 100%; padding: 11px 14px; border: 1px solid var(--cream-3); border-radius: var(--radius); font-family: var(--sans); font-size: 13px; background: var(--warm-white); outline: none; margin-bottom: 10px; transition: border-color 0.2s; }
.sidebar-signup input:focus { border-color: var(--sand); }
.sidebar-signup .btn { width: 100%; justify-content: center; padding: 12px; font-size: 12px; }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; gap: 48px; }
  .blog-sidebar { position: static; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { min-height: 0; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .blog-layout { padding: 48px 0 72px; }
  .post-grid { grid-template-columns: 1fr; }
  .featured-post-body { padding: 28px 24px; }
}

/* ============================================================
   SINGLE BLOG POST (single.php)
============================================================ */
.post-hero { position: relative; overflow: hidden; height: 72vh; min-height: 500px; display: flex; align-items: flex-end; padding-bottom: 80px; }
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; transform: scale(1.06); will-change: transform; }
.post-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,27,16,0.93) 0%, rgba(20,27,16,0.50) 50%, rgba(20,27,16,0.15) 100%); }
.post-hero-content { position: relative; z-index: 2; max-width: 760px; }
.post-hero-content .post-category { color: var(--sand-2); }
.post-hero-content h1 { color: #fff; font-weight: 300; font-style: italic; line-height: 1.12; margin-bottom: 20px; }
.post-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.post-hero-meta span { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.post-hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding: 80px 0 100px; align-items: start; }
.article-content h2 { font-style: italic; margin: 40px 0 16px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 20px; line-height: 1.9; }
.article-content p:first-child { font-size: 1.08rem; color: var(--text); }
.article-content ul, .article-content ol { margin: 16px 0 20px 20px; }
.article-content li { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 8px; }
.article-content ul li::marker { color: var(--sand); }

.article-pull { border-left: 3px solid var(--sand); padding: 20px 28px; background: var(--cream-2); border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0; }
.article-pull p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.6; margin: 0; }

.article-image { border-radius: var(--radius); overflow: hidden; margin: 36px 0; }
.article-image img { width: 100%; object-fit: cover; max-height: 440px; }
.article-image figcaption { font-size: 11px; color: var(--text-3); text-align: center; padding: 10px 0 0; letter-spacing: 0.06em; }

.article-footer { border-top: 1px solid var(--cream-3); padding-top: 28px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tag { padding: 6px 14px; border: 1px solid var(--cream-3); border-radius: 20px; font-size: 11px; color: var(--text-3); text-decoration: none; }
.share-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.share-links { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.share-btn { padding: 7px 16px; border: 1px solid var(--cream-3); border-radius: 20px; font-size: 11px; color: var(--text-3); cursor: pointer; transition: all 0.2s; background: none; }
.share-btn:hover { border-color: var(--sand); color: var(--sand); }

.author-box { display: flex; gap: 20px; background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 28px; margin-top: 40px; align-items: flex-start; }
.author-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--cream-3); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info .eyebrow { margin-bottom: 4px; }
.author-info h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.author-info p { font-size: 0.875rem; color: var(--text-2); margin: 0; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.post-nav-item { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 20px 22px; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; display: block; }
.post-nav-item:hover { border-color: var(--sand); box-shadow: 0 4px 20px rgba(168,136,90,0.12); }
.post-nav-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.post-nav-title { font-family: var(--serif); font-size: 1rem; color: var(--text); line-height: 1.35; }

.article-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.sidebar-toc { background: var(--cream); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-toc h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.toc-list { display: flex; flex-direction: column; gap: 0; }
.toc-item { display: block; padding: 9px 0; border-bottom: 1px solid var(--cream-3); font-size: 13px; color: var(--text-2); transition: color 0.2s, padding-left 0.2s; text-decoration: none; }
.toc-item:last-child { border-bottom: none; }
.toc-item:hover { color: var(--sand); padding-left: 4px; }
.toc-item.active { color: var(--sand); font-weight: 500; }

.sidebar-retreat { background: var(--forest); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-retreat .eyebrow { color: var(--sand-2); }
.sidebar-retreat h4 { font-family: var(--serif); font-size: 1.2rem; color: #fff; font-style: italic; margin-bottom: 10px; line-height: 1.3; }
.sidebar-retreat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.sidebar-retreat .btn { width: 100%; justify-content: center; font-size: 11px; padding: 11px; }

.sidebar-related h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.related-mini { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--cream-3); align-items: flex-start; text-decoration: none; }
.related-mini:last-child { border-bottom: none; }
.related-mini-img { width: 64px; height: 48px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.related-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.related-mini h5 { font-family: var(--serif); font-size: 0.92rem; line-height: 1.35; color: var(--text); margin-bottom: 4px; }
.related-mini span { font-size: 11px; color: var(--text-3); }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .post-hero { height: 60vh; min-height: 420px; }
  .post-hero-content h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .article-layout { padding: 48px 0 72px; }
  .post-nav { grid-template-columns: 1fr; }
  .article-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   HOMEPAGE (front-page.php)
   Most sections below (Upcoming Retreats, Study With Master
   Teachers, Gallery teaser, Invitation CTA, Newsletter) reuse the
   exact card/grid classes already built for the Retreats/Teachers/
   Gallery archives and the About Us page, so the homepage always
   stays visually consistent with the rest of the site. Only the
   handful of sections unique to the homepage (full-bleed hero,
   sanctuary image break, six-programs grid, rooms-&-stay layout,
   testimonial grid) get new rules here.
============================================================ */
.hero { position: relative; overflow: hidden; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; padding-bottom: 160px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.08); will-change: transform; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.82) 0%, rgba(27,34,21,0.40) 50%, rgba(27,34,21,0.15) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-content .eyebrow { color: var(--sand-2); opacity: 0; animation: fadeUp 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-content h1 { color: #fff; font-weight: 300; font-style: italic; margin-bottom: 18px; opacity: 0; animation: fadeUp 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-content h1 em { font-style: normal; color: var(--sand-2); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 0; opacity: 0; animation: fadeUp 0.8s 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-content .btn-row { opacity: 0; animation: fadeUp 0.8s 0.95s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); opacity: 0; animation: fadeUp 1s 1.4s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-scroll-hint span { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollLine 2s 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(0.5); opacity: 1; } }

.sanctuary { position: relative; height: 480px; display: flex; align-items: center; overflow: hidden; }
.sanctuary-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sanctuary-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,34,21,0.75) 0%, rgba(27,34,21,0.25) 60%, transparent 100%); }
.sanctuary-content { position: relative; z-index: 2; max-width: 560px; }
.sanctuary-content .eyebrow { color: var(--sand-2); }
.sanctuary-content h2 { color: #fff; font-style: italic; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; }
.sanctuary-divider { width: 40px; height: 1px; background: var(--sand); margin: 22px 0; }

.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.program-item { background: var(--warm-white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 18px rgba(39,48,33,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.program-item:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(39,48,33,0.11); }
.program-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.program-item:hover .program-img img { transform: scale(1.04); }
.program-body { padding: 24px 26px 28px; border-top: 2px solid var(--sand); }
.program-item h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.25; }
.program-item p { font-size: 0.875rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-meta { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); }

.rooms-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; height: 620px; }
.room-feature { position: relative; border-radius: var(--radius); overflow: hidden; display: block; height: 100%; }
.room-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-feature:hover img { transform: scale(1.04); }
.room-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; height: 100%; }
.room-thumb { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-thumb:hover img { transform: scale(1.04); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,34,21,0.78) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.room-type { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand-2); margin-bottom: 6px; display: block; }
.room-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .rooms-layout { height: auto; grid-template-columns: 1fr; }
  .room-feature { aspect-ratio: 16/9; }
  .room-stack { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .room-thumb { aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .hero { padding-bottom: 80px; min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-content p { font-size: 1rem; }
  .hero-scroll-hint { display: none; }
  .sanctuary { height: 400px; }
  .sanctuary-content h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .programs-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .rooms-layout { grid-template-columns: 1fr; height: auto; }
  .room-feature { aspect-ratio: 4/3; }
  .room-stack { grid-template-columns: 1fr; gap: 16px; }
  .room-thumb { aspect-ratio: 4/3; }
}

/* ============================================================
   DONATE PAGE
============================================================ */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
/* ── Left: copy ── */
.donate-copy h2 { margin-bottom: 0; font-style: italic; }
.donate-impact-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.donate-impact-item { display: flex; gap: 18px; align-items: flex-start; }
.donate-impact-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.donate-impact-text strong { display: block; font-family: var(--sans); font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 4px; letter-spacing: 0.02em; }
.donate-impact-text p { margin: 0; font-size: 0.875rem; line-height: 1.7; }

/* ── Right: widget card ── */
.donate-widget {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(39,48,33,0.08);
  border: 1px solid var(--cream-3);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.donate-widget-head { margin-bottom: 28px; }
.donate-notice {
  background: #fff8e1;
  border: 1px solid #f5c542;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #7a5c00;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Tier buttons — 2×2 grid */
.donate-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.donate-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: transparent;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.18s;
}
.donate-tier:hover { border-color: var(--sand); color: var(--sand); transform: translateY(-1px); }
.donate-tier.active { background: var(--forest); border-color: var(--forest); color: #fff; }

/* Custom amount row */
.donate-custom-row { margin-bottom: 4px; }
.donate-custom-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.donate-custom-field {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.donate-custom-field:focus-within { border-color: var(--sand); }
.donate-currency {
  padding: 14px 14px 14px 16px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text-3);
  background: var(--cream);
  border-right: 1.5px solid var(--cream-3);
  line-height: 1;
}
.donate-custom-field input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  background: transparent;
  -moz-appearance: textfield;
}
.donate-custom-field input::-webkit-inner-spin-button,
.donate-custom-field input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.donate-custom-field input::placeholder { color: var(--cream-3); }

.donate-divider { border: none; border-top: 1px solid var(--cream-3); margin: 24px 0; }

.donate-submit { width: 100%; justify-content: center; }

.donate-legal {
  margin-top: 16px;
  font-size: 0.775rem;
  color: var(--text-3);
  line-height: 1.6;
  text-align: center;
}

/* ── Closing strip ── */
.donate-closing { padding: 80px 0; }
.donate-closing-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.donate-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.donate-closing-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1024px) {
  .donate-layout { grid-template-columns: 1fr; gap: 48px; }
  .donate-widget { position: static; }
}
@media (max-width: 600px) {
  .donate-widget { padding: 28px 20px; }
  .donate-tiers { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .retreats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .detail-layout { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 80px; }
  .booking-sidebar { position: static; }
  .booking-card { max-width: 600px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .course-wrap { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .sidebar-card { max-width: 480px; }
  .learn-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) {
  .nav-links, .nav-phone, .nav-actions { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-logo img { height: 44px; max-width: 180px; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .page-hero { height: 46vh; min-height: 320px; padding-bottom: 48px; }
  .page-hero-content h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .footer { padding: 52px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-logo img { max-width: 180px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 18px 0; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .btn-row { flex-direction: column; align-items: flex-start; }
  .hero-content .btn-row,
  .invitation-content .btn-row { align-items: center; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-head > div { max-width: 100%; }
  .retreats-grid { grid-template-columns: 1fr; }

  .mobile-booking-cta { display: block; }
  body.single-retreat { padding-bottom: 80px; }
  .retreat-hero { height: 70vh; min-height: 480px; }
  .retreat-hero-container { padding-top: calc(var(--nav-h) + 12px); padding-bottom: 48px; }
  .retreat-hero-content h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .retreat-hero-meta { gap: 10px; }
  .booking-sidebar { display: block; margin-top: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .teacher-block { flex-direction: column; }
  .teacher-profile-layout { grid-template-columns: 1fr; }
  .teacher-profile-sidebar { position: static; }
  .teacher-sidebar-photo { aspect-ratio: 3 / 2; }
  .teacher-photo { width: 90px; height: 90px; }
  .course-meta-row { flex-wrap: wrap; }
  .sidebar-card { max-width: 100%; }
  .instructor-card { flex-direction: column; }
}

/* ============================================================
   TRADITIONAL YOGA TEACHER TRAINING PAGE
============================================================ */

/* Hero dates badge */
.tytt-dates-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 100px;
}

/* Partnership intro section */
.tytt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tytt-intro-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.tytt-intro-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.tytt-kaivalya-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.tytt-kaivalya-badge-year {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-2);
  margin-bottom: 2px;
}
.tytt-kaivalya-badge-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

/* Geeta quote strip */
.tytt-quote-strip {
  background: var(--forest);
  padding: 64px 0;
}
.tytt-quote-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.tytt-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--sand-2);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}
.tytt-quote-strip blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 16px;
}
.tytt-quote-strip cite {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-2);
  font-style: normal;
}

/* Who it's for */
.tytt-for-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.tytt-for-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tytt-for-col {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--cream-3);
}
.tytt-for-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.tytt-for-col h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 10px;
}
.tytt-for-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Key highlights */
.tytt-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tytt-highlight-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 32px 24px;
  animation-delay: var(--delay, 0s);
}
.tytt-hl-icon {
  width: 52px;
  height: 52px;
  background: rgba(39,48,33,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--forest);
}
.tytt-highlight-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--forest);
  margin: 0 0 10px;
}
.tytt-highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Course levels */
.tytt-levels {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.tytt-level-item {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 28px 24px;
  animation-delay: var(--delay, 0s);
}
.tytt-level-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-3);
  font-size: 1.8rem;
  padding: 0 12px;
  flex-shrink: 0;
}
.tytt-level-badge {
  display: inline-block;
  background: var(--forest);
  color: var(--sand-2);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tytt-level-code {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin-bottom: 4px;
}
.tytt-level-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.tytt-level-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Program info row */
.tytt-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.tytt-info-block {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.tytt-info-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin-bottom: 8px;
}
.tytt-info-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest);
}

/* Delivery grid */
.tytt-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tytt-delivery-col {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.tytt-delivery-header {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.tytt-delivery-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--sand-2);
  padding: 3px 9px;
  border-radius: 100px;
}
.tytt-delivery-tag.on-site {
  background: var(--sand-2);
  color: var(--forest);
}
.tytt-delivery-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.tytt-delivery-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.9rem;
}
.tytt-delivery-list li strong {
  color: var(--forest);
  font-weight: 500;
}
.tytt-delivery-list li span {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}
.tytt-delivery-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
}

/* Focus areas */
.tytt-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tytt-focus-col {
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  overflow: hidden;
}
.tytt-focus-header {
  background: var(--forest);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tytt-focus-icon {
  opacity: 0.8;
}
.tytt-focus-list {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  background: #fff;
}
.tytt-focus-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tytt-focus-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand-2);
  flex-shrink: 0;
}
.tytt-focus-list li:last-child { border-bottom: none; }

/* Timeline & Certification */
.tytt-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.tytt-timeline {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tytt-timeline-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}
.tytt-timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  width: 2px;
  height: calc(100% - 24px);
  background: var(--cream-3);
}
.tytt-timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tytt-timeline-step strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 6px;
}
.tytt-timeline-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.tytt-cert-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tytt-cert-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}
.tytt-cert-item svg {
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Teachers grid */
.tytt-teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tytt-teacher-card {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}
.tytt-teacher-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.tytt-teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tytt-teacher-body {
  padding: 20px 20px 24px;
}
.tytt-teacher-disc {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin-bottom: 6px;
}
.tytt-teacher-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--forest);
  margin: 0 0 10px;
}
.tytt-teacher-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Pricing */
.tytt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tytt-price-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  animation-delay: var(--delay, 0s);
}
.tytt-price-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}
.tytt-price-card--featured .tytt-price-level,
.tytt-price-card--featured .tytt-price-method { color: rgba(255,255,255,0.6); }
.tytt-price-card--featured .tytt-price-sale { color: #fff; }
.tytt-price-card--featured .tytt-price-orig { color: rgba(255,255,255,0.45); }
.tytt-price-card--featured .btn {
  background: #fff;
  color: var(--forest);
}
.tytt-price-card--featured .btn:hover { background: var(--sand-2); }
.tytt-price-level {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin-bottom: 12px;
}
.tytt-price-badge {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(39,48,33,0.08);
  color: var(--forest);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tytt-price-badge--gold {
  background: var(--sand-2);
  color: var(--forest);
}
.tytt-price-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.tytt-price-orig {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.tytt-price-sale {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.tytt-price-method {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.tytt-price-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* TYTT Responsive */
@media (max-width: 1100px) {
  .tytt-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .tytt-levels { flex-wrap: wrap; }
  .tytt-level-arrow { display: none; }
  .tytt-level-item { flex: 1 1 calc(50% - 16px); }
  .tytt-teachers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tytt-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .tytt-for-grid { grid-template-columns: 1fr; gap: 32px; }
  .tytt-cert-grid { grid-template-columns: 1fr; gap: 48px; }
  .tytt-focus-grid { grid-template-columns: 1fr; }
  .tytt-delivery-grid { grid-template-columns: 1fr; }
  .tytt-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .tytt-highlights-grid { grid-template-columns: 1fr; }
  .tytt-info-row { grid-template-columns: 1fr; }
  .tytt-for-cols { grid-template-columns: 1fr; }
  .tytt-teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .tytt-level-item { flex: 1 1 100%; }
}

/* ============================================================
   404 — PAGE NOT FOUND
============================================================ */
.notfound-wrap { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(180deg, #0d1f10 0%, #1a3020 45%, #1f3824 100%); text-align: center; }

/* Scene art */
.notfound-scene { position: absolute; inset: 0; pointer-events: none; }
.nf-stars { position: absolute; inset: 0; }
.nf-stars span { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); background: #fff; border-radius: 50%; opacity: 0.7; animation: nf-twinkle 3s var(--d) ease-in-out infinite alternate; }
@keyframes nf-twinkle { from { opacity: 0.3; } to { opacity: 1; } }

.nf-moon { position: absolute; top: 8%; right: 12%; width: 60px; height: 60px; background: radial-gradient(circle at 38% 40%, #f5e6c0 0%, #e8d09a 60%, rgba(232,208,154,0) 100%); border-radius: 50%; box-shadow: 0 0 40px rgba(232,208,154,0.3), 0 0 80px rgba(232,208,154,0.12); }

.nf-trees { position: absolute; bottom: 0; left: 0; width: 100%; height: 45%; }

/* Content */
.notfound-content { position: relative; z-index: 2; padding: 60px 24px 80px; max-width: 640px; }
.notfound-content .eyebrow { color: var(--sand-2); margin-bottom: 16px; }
.notfound-content h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 20px; }
.notfound-content h1 em { font-style: italic; color: var(--sand-2); }
.notfound-content > p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Breathing circle */
.breathe-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 48px; }
.breathe-circle { position: relative; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.04); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 1.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s ease; box-shadow: 0 0 0 0 rgba(200,168,120,0); }
.breathe-circle:hover { box-shadow: 0 0 24px rgba(200,168,120,0.2); }
.breathe-circle.is-active { box-shadow: 0 0 40px rgba(200,168,120,0.25); }
.breathe-label { position: relative; z-index: 2; font-family: var(--serif); font-size: 0.85rem; color: var(--sand-2); line-height: 1.5; pointer-events: none; }
.breathe-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.breathe-arc { transition: stroke-dashoffset 0.1s linear; }
.breathe-hint { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }

/* Nav links */
.notfound-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.notfound-links .btn.outline-white { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.75); }
.notfound-links .btn.outline-white:hover { border-color: var(--sand-2); color: var(--sand-2); background: transparent; }

@media (max-width: 480px) {
  .nf-moon { width: 42px; height: 42px; top: 6%; right: 8%; }
  .notfound-content { padding-top: 40px; }
}
