/* =========================================================
   UNPLUG & RECONNECT — Editorial Redesign
   Correction pass: density, hierarchy, no emoji, hero-only motion
   ========================================================= */

:root {
  --navy: #1a2332;
  --navy-soft: #2a3547;
  --gold: #b89b6e;
  --gold-dark: #96784f;
  --sage: #7a8b6f;
  --sage-soft: #a8b39d;
  --cream: #f4ede0;
  --cream-warm: #ede4d1;
  --off-white: #faf6ee;
  --text: #1e2a35;
  --text-muted: #4a5560;
  --border: rgba(0, 0, 0, 0.15);
  --border-soft: rgba(0, 0, 0, 0.12);
  --border-inverse: rgba(244, 237, 224, 0.18);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.2, 0.6, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans); font-size: 17px; line-height: 1.65; font-weight: 400;
  color: var(--text); background: var(--cream);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
p { font-size: 17px; line-height: 1.65; font-weight: 400; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
@media (max-width: 767px) { body { font-size: 16px; } p { font-size: 16px; line-height: 1.65; } }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container-reading { width: min(680px, calc(100% - 48px)); margin-inline: auto; }
.container-medium { width: min(960px, calc(100% - 48px)); margin-inline: auto; }
@media (max-width: 767px) { .container, .container-reading, .container-medium { width: calc(100% - 40px); } }

section { padding-block: 72px; }
.section-feature { padding-block: 110px; }
@media (max-width: 767px) { section { padding-block: 56px; } .section-feature { padding-block: 72px; } }

.bg-cream { background: var(--cream); }
.bg-offwhite { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--cream); }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; color: var(--navy); line-height: 1.15; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
h2 { font-size: clamp(40px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 28px; }
h2 em { font-style: italic; color: var(--gold-dark); }
.bg-navy h2 em { color: var(--gold); }

.eyebrow { font-family: var(--sans); font-size: 11px; line-height: 1; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); display: inline-block; margin-bottom: 20px; }
.bg-navy .eyebrow { color: var(--gold); }

.prose { max-width: 680px; }
.prose p { margin-bottom: 1em; }
.prose .lede { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.5; color: var(--navy); margin: 4px 0; }

.section-heading { margin-bottom: 40px; }
.section-heading--center { text-align: center; }
.section-heading__sub { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--text-muted); line-height: 1.45; margin-top: 12px; max-width: 620px; }
.section-heading--center .section-heading__sub { margin-inline: auto; }
.bg-navy .section-heading__sub { color: var(--sage-soft); }

.button-primary { display: inline-flex; min-height: 50px; padding: 0 28px; align-items: center; justify-content: center; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; background: var(--gold); color: var(--navy); border: 1px solid var(--gold); cursor: pointer; transition: all 0.35s var(--ease); }
.button-primary:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.button-primary--outline { background: transparent; color: var(--cream); border-color: var(--gold); }
.button-primary--outline:hover { background: var(--gold); color: var(--navy); }
.button-primary--dark { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.button-primary--dark:hover { background: transparent; color: var(--navy); }

.btn-note { font-family: var(--sans); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 20px; display: block; }
.bg-navy .btn-note { color: var(--sage-soft); }

.inline-cta { text-align: center; margin-top: 56px; }
.inline-cta__lede { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.4; }
.bg-navy .inline-cta__lede { color: var(--sage-soft); }
@media (max-width: 767px) { .inline-cta { margin-top: 40px; } .inline-cta .button-primary { width: 100%; max-width: 320px; } }


.hero { min-height: 88svh; position: relative; overflow: hidden; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero img, .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); animation: heroZoom 20s ease-out forwards; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.07); } }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(26,35,50,0.55) 0%, rgba(26,35,50,0.2) 100%), linear-gradient(180deg, rgba(26,35,50,0.55) 0%, rgba(26,35,50,0.6) 45%, rgba(26,35,50,0.85) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; padding: clamp(110px, 14vh, 160px) 0 clamp(50px, 7vh, 80px); }
.hero__eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: inline-block; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.hero h1 { font-size: clamp(58px, 7vw, 96px); line-height: 0.94; letter-spacing: -0.035em; color: #ffffff; font-weight: 400; margin-bottom: 26px; max-width: 800px; margin-inline: auto; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero__intro { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 1.6vw, 22px); line-height: 1.5; color: rgba(255, 255, 255, 0.95); max-width: 570px; margin: 0 auto 44px; font-weight: 400; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35); }
.hero__meta { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero__meta-item { text-align: center; }
.hero__meta-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; font-weight: 600; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.hero__meta-value { font-family: var(--serif); font-size: 1.2rem; color: #ffffff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.hero__themes { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); margin-bottom: 40px; font-weight: 500; line-height: 1.8; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); }
.hero__themes span { padding: 0 4px; }
.hero__practical { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.75); margin-top: 28px; font-style: normal; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }

.quote-band { padding-block: 88px; background: var(--cream); text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.65rem, 3vw, 2.15rem); line-height: 1.35; color: var(--navy); max-width: 780px; margin: 0 auto 28px; font-weight: 300; }
.quote-band cite { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); font-style: normal; }
@media (max-width: 767px) { .quote-band { padding-block: 64px; } }

.invitation-image { width: min(1240px, calc(100% - 48px)); margin: 64px auto 0; aspect-ratio: 21 / 9; overflow: hidden; background: var(--cream-warm); }
.invitation-image img { width: 100%; height: 100%; object-fit: cover; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.principle { padding: 36px 32px; }
.principle + .principle { border-left: 1px solid var(--border); }
.principle__number { display: block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--gold-dark); margin-bottom: 24px; }
.principle h3 { font-family: var(--serif); font-size: 30px; line-height: 1.1; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.principle p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.principles-closer { margin-top: 40px; text-align: center; font-family: var(--serif); font-style: italic; color: var(--text-muted); font-size: 19px; }
@media (max-width: 767px) { .principles { grid-template-columns: 1fr; } .principle + .principle { border-left: 0; border-top: 1px solid var(--border); } .principle { padding: 28px 0; } }

.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 40px 0; border-top: 1px solid var(--border); }
.signal-grid li { padding: 18px 12px 18px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text); }
@media (max-width: 767px) { .signal-grid { grid-template-columns: repeat(2, 1fr); } }

.body-question { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 38px); line-height: 1.25; color: var(--navy); max-width: 720px; margin: 48px 0 32px; font-weight: 400; }
.body-question em { color: var(--gold-dark); font-style: italic; }

.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--border); }
.outcome { padding: 30px 24px 32px 0; border-bottom: 1px solid var(--border); }
.outcome h3 { font-family: var(--serif); font-size: 20px; line-height: 1.2; color: var(--navy); margin: 0 0 10px; letter-spacing: -0.005em; }
.outcome p { font-size: 15px; line-height: 1.55; margin: 0; color: var(--text); }
@media (max-width: 1024px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .outcomes-grid { grid-template-columns: 1fr; } .outcome { padding-right: 0; } }

.bali-section { background: var(--navy); color: var(--cream); text-align: center; }
.bali-section .eyebrow { color: var(--gold); margin-bottom: 24px; }
.bali-section h2 { max-width: 800px; margin: 0 auto 32px; color: var(--cream); }
.bali-section h2 em { color: var(--gold); font-style: italic; }
.bali-list { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 1.9vw, 1.5rem); color: var(--sage-soft); line-height: 1.7; margin-bottom: 28px; }
.bali-list span { padding: 0 10px; }
.bali-closer { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.2vw, 1.75rem); color: var(--gold); margin-bottom: 12px; }
.bali-tag { font-family: var(--sans); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-soft); font-weight: 600; }

.timeline { margin-top: 40px; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; column-gap: 42px; padding-block: 40px; border-top: 1px solid var(--border); align-items: start; }
.timeline-item:last-child { border-bottom: 1px solid var(--border); }
.timeline-time { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-dark); padding-top: 7px; text-transform: uppercase; }
.timeline-item h3 { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 34px); line-height: 1.15; color: var(--navy); margin: 0 0 12px; letter-spacing: -0.015em; }
.timeline-subtitle { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--sage); margin-bottom: 18px; display: block; letter-spacing: 0.02em; }
.timeline-item p { font-size: 16px; line-height: 1.65; color: var(--text); max-width: 680px; }
.timeline-item p + p { margin-top: 14px; }
.timeline-item ul { list-style: none; padding: 0; margin: 14px 0; }
.timeline-item li { font-size: 16px; line-height: 1.65; padding: 4px 0 4px 18px; position: relative; color: var(--text); }
.timeline-item li::before { content: "—"; position: absolute; left: 0; color: var(--gold-dark); }
.timeline-note { font-family: var(--serif); font-style: italic; color: var(--gold-dark); font-size: 16px; margin-top: 14px !important; }
.timeline-aside { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border-soft); }
.timeline-aside h4 { font-family: var(--serif); font-size: 22px; line-height: 1.2; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
@media (max-width: 767px) { .timeline-item { grid-template-columns: 1fr; gap: 10px; padding-block: 32px; } }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; margin-top: 44px; border-top: 1px solid var(--border); }
.fit-item { padding: 17px 0; border-bottom: 1px solid var(--border); font-size: 16px; line-height: 1.5; color: var(--text); }
.fit-closer { margin-top: 48px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--text-muted); line-height: 1.5; max-width: 720px; margin-inline: auto; }
.fit-closer strong { display: block; margin-top: 18px; color: var(--navy); font-style: normal; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 767px) { .fit-grid { grid-template-columns: 1fr; column-gap: 0; } }

.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; margin-top: 48px; }
.highlight { padding: 28px 0; border-top: 1px solid var(--border); }
.highlight h3 { font-family: var(--serif); font-size: 22px; line-height: 1.2; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.highlight p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .highlights-grid { grid-template-columns: 1fr; gap: 0; } }

.feelings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; margin-top: 44px; }
.feeling { padding: 28px 0; border-top: 1px solid var(--border); }
.feeling h3 { font-family: var(--serif); font-size: 30px; line-height: 1.05; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.015em; }
.feeling p { font-family: var(--serif); font-style: italic; color: var(--text-muted); font-size: 17px; margin: 0; }
.feelings-closer { margin-top: 48px; text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--navy); line-height: 1.4; }
.feelings-closer em { color: var(--gold-dark); font-style: italic; }
@media (max-width: 900px) { .feelings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feelings-grid { grid-template-columns: 1fr; gap: 0; } }

.guide { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.guide + .guide { margin-top: 72px; }
.guide__image { height: 500px; overflow: hidden; background: var(--cream-warm); }
.guide__image img { width: 100%; height: 100%; object-fit: cover; }
.guide--reverse .guide__image { order: 2; }
.guide__meta { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 18px; display: block; }
.guide__name { font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--navy); }
.guide__bio p { margin-bottom: 16px; color: var(--text); font-size: 17px; line-height: 1.65; }
.guide__bio p:last-child { margin-bottom: 0; }
.guide__pull { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--gold-dark); border-top: 1px solid var(--border); padding-top: 20px; margin-top: 24px; }
@media (max-width: 900px) { .guide { grid-template-columns: 1fr; gap: 32px; } .guide--reverse .guide__image { order: 0; } .guide__image { height: 380px; max-width: 500px; margin-inline: auto; width: 100%; } .guide + .guide { margin-top: 56px; } }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; }
.location-card { display: flex; flex-direction: column; background: var(--off-white); border: 1px solid var(--border-soft); transition: border-color 0.35s var(--ease); }
.location-card:hover { border-color: var(--gold); }
.location-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.location-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .6, .3, 1); }
@media (hover: hover) and (pointer: fine) { .location-card:hover .location-image img { transform: scale(1.035); } }
.location-body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.location-day { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 14px; display: block; }
.location-city { font-family: var(--serif); font-size: 34px; line-height: 1; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--navy); }
.location-venue { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--sage); margin-bottom: 6px; }
.location-address { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.location-tagline { font-family: var(--serif); font-style: italic; color: var(--text-muted); font-size: 16px; margin-bottom: 24px; flex-grow: 1; }
.location-body .button-primary { align-self: flex-start; }
@media (max-width: 767px) { .locations-grid { grid-template-columns: 1fr; } .location-body { padding: 24px; } }

.final-question { background: var(--off-white); text-align: center; }
.final-question .eyebrow { margin-bottom: 28px; }
.final-question h2 { font-size: clamp(42px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; max-width: 20ch; margin: 0 auto 40px; font-weight: 400; }
.final-question h2 em { color: var(--gold-dark); font-style: italic; }
.final-question .prose { margin: 0 auto; max-width: 620px; text-align: center; }

.final-statement { background: var(--navy); color: var(--cream); padding-block: 90px; text-align: center; }
.final-statement__eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: inline-block; }
.final-statement h2 { color: var(--cream); font-size: clamp(44px, 5.5vw, 72px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 40px; max-width: 16ch; margin-inline: auto; }
.final-statement h2 em { color: var(--gold); font-style: italic; }
.final-list { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 1.9vw, 1.55rem); color: var(--sage-soft); line-height: 1.8; margin-bottom: 6px; }
.final-list span { padding: 0 10px; }
.final-signature { margin-top: 40px; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.4vw, 1.9rem); color: var(--gold); line-height: 1.4; }
@media (max-width: 767px) { .final-statement { padding-block: 64px; } }

.bring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 44px; }
.bring-item { padding: 24px 0; border-top: 1px solid var(--border); }
.bring-item h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.bring-item p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0; }
@media (max-width: 767px) { .bring-grid { grid-template-columns: 1fr; gap: 0; } }

.booking { background: var(--navy); color: var(--cream); padding-block: 100px; text-align: center; }
.booking .eyebrow { color: var(--gold); margin-bottom: 24px; }
.booking h2 { color: var(--cream); font-size: clamp(38px, 4.5vw, 56px); line-height: 1; letter-spacing: -0.025em; margin-bottom: 24px; }
.booking h2 em { color: var(--gold); font-style: italic; }
.booking__tagline { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--sage-soft); max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
.booking__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.booking__note { font-family: var(--sans); font-size: 12px; letter-spacing: 0.05em; color: rgba(244, 237, 224, 0.55); margin-top: 32px; }
@media (max-width: 767px) { .booking { padding-block: 72px; } .booking__buttons { flex-direction: column; align-items: center; } .booking__buttons .button-primary { width: 100%; max-width: 320px; } }


@media (max-width: 767px) { .hero__meta { gap: 28px; } .hero__themes { line-height: 2; padding: 0 8px; } .invitation-image { margin-top: 40px; } }
@media (max-width: 600px) { h2 { font-size: clamp(32px, 8vw, 40px); } .body-question { font-size: clamp(22px, 6vw, 28px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .hero img, .hero__media img, .location-image img { animation: none !important; transition: none !important; transform: none !important; }
}

/* RETREAT MENU */

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 14px 0 6px;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.menu-toggle:hover {
    opacity: 1;
}

.menu-toggle-label {
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.menu-toggle-icon {
    position: relative;
    width: 13px;
    height: 13px;
    display: inline-block;
}

.menu-toggle-icon span {
    position: absolute;
    left: 1px;
    top: 6px;
    width: 11px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
}

.menu-toggle-icon span:last-child {
    transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
    transform: rotate(0deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    transform: rotate(45deg);
}

.retreat-menu {
    margin-top: 14px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.45);
    border-left: 1px solid currentColor;
    animation: menuReveal 0.35s ease;
}

.retreat-menu__header {
    margin-bottom: 20px;
}

.retreat-menu__header h4 {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;
}

.retreat-menu__header p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.retreat-menu__section {
    margin-top: 22px;
}

.retreat-menu__section h5 {
    margin: 0 0 13px;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 500;
}

.menu-item {
    padding: 0 0 15px;
    margin-bottom: 15px;
}

.menu-item h6 {
    margin: 0 0 3px;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.menu-calories {
    margin-bottom: 5px;
    font-size: 10px;
}

.menu-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

@keyframes menuReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@media (max-width: 600px) {
    .retreat-menu {
        padding: 22px 18px;
    }

    .retreat-menu__header h4 {
        font-size: 26px;
    }

    .menu-item h6 {
        font-size: 18px;
    }
}
/* =========================================
   UNPLUG & RECONNECT SECONDARY NAV
   ========================================= */

.landing-nav {
    position: sticky;
    top: 70px;
    z-index: 90;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 15vw;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    justify-content: space-between;
}

.landing-nav-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.landing-nav-brand em {
    font-style: italic;
}

.landing-nav-cta {
    display: inline-flex;
    align-items: center;

    margin-left: 28px;
    padding: 7px 16px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #fff;
    background: #3e2b2f;

    text-decoration: none;
    white-space: nowrap;

    transition: all 0.25s ease;
}

.landing-nav-cta:hover {
    background: #5a4145;
    transform: translateY(-1px);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 960px) {

    .landing-nav {
        top: 70px;
        min-height: 48px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .landing-nav-brand {
        font-size: 18px;
    }

    .landing-nav-cta {
        margin-left: 15px;
        padding: 6px 12px;
        font-size: 9px;
    }
}

/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section {
    padding: 110px 5vw;
    background: #f4eee1;
}

.video-section__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.video-section__intro {
    max-width: 650px;
    margin-bottom: 42px;
}

.video-section__intro .eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
}

.video-section__intro h2 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 500;
}

.video-section__intro h2 em {
    font-style: italic;
    font-weight: 400;
}

.video-section__intro p {
    max-width: 560px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.72;
}

.video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    background: #1f1f1f;
    box-shadow: 0 25px 70px rgba(34, 48, 42, 0.16);
}

.retreat-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 768px) {

    .video-section {
        padding: 75px 20px;
    }

    .video-section__intro {
        margin-bottom: 28px;
    }

    .video-section__intro h2 {
        font-size: 43px;
    }

    .video-section__intro p {
        font-size: 14px;
    }

    .video-wrap {
        border-radius: 2px;
    }
}

.exploration-cta {
  max-width: 620px;
  margin: 64px auto 0;
  padding: 36px 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.2);
}

.exploration-cta__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .7;
}

.exploration-cta h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.exploration-cta p {
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.7;
  opacity: .82;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  background: transparent;
  text-decoration: none;
  transition: all .2s ease;
}

.exploration-cta .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;

  border: 1px solid currentColor;
  background: transparent;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.exploration-cta .button-secondary:hover {
  background-color: #263d35;
  color: #ffffff;
  border-color: #263d35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

@media (hover: none) {
  .booking__buttons .button-primary:hover,
  .exploration-cta .button-secondary:hover {
    transform: none;
    box-shadow: none;
  }
}

.exploration-cta .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
}

.exploration-cta .button-secondary:hover {
    background: #ffffff;
    color: var(--navy);
    border-color: #ffffff;
}

/* =========================================================
   15-MINUTE EXPLORATION CALL MODAL
   ========================================================= */

#explorationModal {
    display: none;
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 24px !important;

    z-index: 999999 !important;

    align-items: center !important;
    justify-content: center !important;

    font-family: var(--sans);
}

/* Backdrop */
#explorationModal .modal-overlay {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    background: rgba(26, 35, 50, 0.72) !important;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    z-index: 0 !important;
}

/* Main modal */
#explorationModal .modal-container {
    position: relative !important;
    z-index: 1 !important;

    width: 90% !important;
    max-width: 760px !important;

    max-height: 90vh !important;

    margin: 0 !important;
    padding: 0 !important;

    background: var(--off-white) !important;

    border-radius: 20px !important;

    overflow-y: auto !important;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.30),
        0 8px 30px rgba(0, 0, 0, 0.10) !important;
}


/* Close button */
#explorationModal .modal-close {
    position: absolute !important;

    top: 16px !important;
    right: 18px !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(244, 237, 224, 0.9) !important;

    color: var(--navy) !important;

    font-family: var(--sans) !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 42px !important;

    cursor: pointer !important;

    z-index: 5 !important;

    transition:
        background-color 0.25s var(--ease),
        color 0.25s var(--ease),
        transform 0.25s var(--ease) !important;
}

#explorationModal .modal-close:hover {
    background: var(--navy) !important;
    color: var(--cream) !important;
    transform: rotate(90deg) !important;
}


/* Header */
#explorationModal .modal-header {
    padding: 46px 56px 26px !important;

    text-align: center !important;

    border-bottom: 1px solid var(--border-soft);
}


/* Icon */
#explorationModal .modal-icon {
    width: 52px !important;
    height: 52px !important;

    margin: 0 auto 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: var(--cream) !important;
    color: var(--gold-dark) !important;

    font-size: 19px !important;
}


/* Small eyebrow */
#explorationModal .modal-header .eyebrow {
    display: block;

    margin-bottom: 12px;

    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--gold-dark);
}


/* Heading */
#explorationModal .modal-header h3 {
    margin: 0 0 12px !important;

    font-family: var(--serif) !important;
    font-size: clamp(38px, 4vw, 52px) !important;
    font-weight: 400 !important;

    line-height: 1.02 !important;
    letter-spacing: -0.025em !important;

    color: var(--navy) !important;
}


/* Intro copy */
#explorationModal .modal-header p {
    max-width: 570px !important;

    margin: 0 auto !important;

    font-family: var(--serif) !important;
    font-style: italic !important;

    font-size: 18px !important;
    line-height: 1.55 !important;

    color: var(--text-muted) !important;
}


/* Body */
#explorationModal .modal-body {
    padding: 0 32px 34px !important;
}


/* TidyCal wrapper */
#explorationModal .tidycal-embed {
    width: 100% !important;
    min-height: 560px !important;

    margin-top: 24px !important;

    background: #ffffff !important;

    border: 1px solid var(--border-soft) !important;
}


/* TidyCal iframe */
#explorationModal .tidycal-embed iframe {
    display: block !important;

    width: 100% !important;
    min-height: 560px !important;

    border: 0 !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    #explorationModal {
        padding: 12px !important;
    }

    #explorationModal .modal-container {
        width: 100% !important;
        max-height: 94vh !important;

        border-radius: 16px !important;
    }

    #explorationModal .modal-header {
        padding: 38px 24px 22px !important;
    }

    #explorationModal .modal-header h3 {
        font-size: 38px !important;
    }

    #explorationModal .modal-header p {
        font-size: 16px !important;
    }

    #explorationModal .modal-body {
        padding: 0 14px 20px !important;
    }

    #explorationModal .tidycal-embed {
        margin-top: 18px !important;
        min-height: 600px !important;
    }

    #explorationModal .tidycal-embed iframe {
        min-height: 600px !important;
    }

    #explorationModal .modal-close {
        top: 10px !important;
        right: 10px !important;

        width: 38px !important;
        height: 38px !important;

        font-size: 26px !important;
        line-height: 38px !important;
    }
}

/* =========================================================
   UNPLUG & RECONNECT — DAY RETREAT BOOKING MODAL
   ========================================================= */

#bookingModal {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 99999 !important;

    align-items: center !important;
    justify-content: center !important;

    font-family: var(--sans);
}

#bookingModal .modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;

    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    z-index: 0;
}

#bookingModal .modal-container {
    position: relative !important;
    z-index: 1 !important;

    width: 90% !important;
    max-width: 520px !important;
    max-height: 90vh !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff;
    border-radius: 24px;
    overflow-y: auto;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

#bookingModal .modal-close {
    position: absolute;
    top: 18px;
    right: 20px;

    width: 40px;
    height: 40px;

    border: 0;
    background: transparent;

    font-size: 32px;
    line-height: 1;
    font-weight: 300;

    color: #4a5560;
    cursor: pointer;

    z-index: 5;
}

#bookingModal .modal-header {
    padding: 38px 40px 20px;
    text-align: center;
}

#bookingModal .modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4ede0;
    color: #b89b6e;

    font-size: 21px;
}

#bookingModal .modal-header h3 {
    margin: 0 0 8px;

    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;

    color: var(--navy);
}

#bookingModal #bookingModalSubtitle {
    margin: 0;

    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.4;

    color: var(--text-muted);
}

#bookingModal .modal-body {
    padding: 10px 40px 30px;
}

#bookingModal .form-group {
    margin-bottom: 18px;
}

#bookingModal .form-group label {
    display: block;
    margin-bottom: 7px;

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;

    color: var(--navy);
}

#bookingModal .form-group input,
#bookingModal .form-group select {
    display: block;

    width: 100%;
    min-height: 48px;

    padding: 11px 14px;

    border: 1px solid #d9d4cc;
    border-radius: 8px;

    background: #ffffff;

    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);

    outline: none;

    transition: border-color 0.25s ease,
                box-shadow 0.25s ease;
}

#bookingModal .form-group input:focus,
#bookingModal .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 155, 110, 0.12);
}

#bookingModal .booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 10px 0 20px;
    padding: 18px 0;

    border-top: 1px solid #e8e4df;
    border-bottom: 1px solid #e8e4df;

    font-family: var(--sans);
}

#bookingModal .booking-total span {
    color: #6a6258;
    font-size: 14px;
}

#bookingModal .booking-total strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;

    color: #c4973b;
}

#bookingModal .booking-terms {
    display: flex !important;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 20px;

    font-family: var(--sans);
    font-size: 13px !important;
    font-weight: 400 !important;

    color: var(--text);
}

#bookingModal .booking-terms input {
    width: auto !important;
    min-height: auto !important;

    margin: 3px 0 0 !important;
}

#bookingModal .modal-submit {
    display: block;

    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #b89b6e,
        #c4973b
    );

    color: #ffffff;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

#bookingModal .modal-submit:hover {
    transform: translateY(-1px);

    box-shadow: 0 8px 24px rgba(150, 120, 79, 0.25);
}

#bookingModal .modal-footer {
    padding: 16px 40px 25px;

    text-align: center;

    border-top: 1px solid #eee9e2;
}

#bookingModal .modal-footer p {
    margin: 0;

    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.4;

    color: #8a8177;
}

#bookingModal .modal-footer i {
    margin-right: 5px;
}

#bookingModal .modal-response {
    margin-top: 15px;

    font-family: var(--sans);
    font-size: 13px;

    text-align: center;
}

/* Booking price */

#bookingModal .booking-price-info {
    text-align: center;
    margin: 8px 0 18px;
}

#bookingModal .booking-price-info strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gold);
}

#bookingModal .booking-price-info span {
    display: block;
    margin-top: 5px;
    font-family: var(--sans);
    font-size: 0.78rem;
    line-height: 1.4;
    color: #888;
    letter-spacing: 0.02em;
}

#bookingModal .booking-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    margin: 0 0 20px;
    background: #f8f5ef;
    border-radius: 12px;
}

#bookingModal .booking-total span {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: #555;
}

#bookingModal .booking-total strong {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #3e2b2f;
}
#bookingSubmit {
    position: relative;
    min-width: 190px;
}

#bookingModal .booking-price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#bookingModal .booking-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

#bookingModal .booking-full-price {
    text-decoration: line-through;
    opacity: 0.55;
    font-size: 0.95em;
}

#bookingModal .booking-price-info strong {
    font-size: 1.4em;
}

#bookingModal .booking-price-note {
    font-size: 0.85em;
}

#bookingModal .booking-spaces {
    font-size: 0.85em;
    font-weight: 600;
}

#bookingSubmit.processing {
    opacity: 0.85;
    cursor: wait;
}

#bookingSubmit .button-spinner {
    display: none;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    vertical-align: -3px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: bookingSpinner 0.7s linear infinite;
}

#bookingSubmit.processing .button-spinner {
    display: inline-block;
}

@keyframes bookingSpinner {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 600px) {

    #bookingModal .modal-container {
        width: calc(100% - 30px) !important;
        max-height: 92vh !important;
        border-radius: 20px;
    }

    #bookingModal .modal-header {
        padding: 30px 25px 15px;
    }

    #bookingModal .modal-body {
        padding: 10px 25px 25px;
    }

    #bookingModal .modal-footer {
        padding: 15px 25px 20px;
    }

}