:root {
  --midnight: #0e2a47;
  --deep-blue: #163d63;
  --ocean: #2f6f9f;
  --soft-blue: #d8eef5;
  --mist: #eef8fb;
  --pearl: #faf8f3;
  --sand: #f4eee3;
  --champagne: #c9a86a;
  --sage: #8caaa3;
  --ink: #13222f;
  --muted: #687684;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 42, 71, 0.16);
  --soft-shadow: 0 18px 45px rgba(14, 42, 71, 0.10);
  --radius-lg: 32px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 42, 71, 0.08);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.logo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--midnight);
  font-weight: 500;
}

.logo span {
  font-size: 0.67rem;
  text-transform: uppercase;
  color: var(--ocean);
  letter-spacing: 0.22em;
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 42, 71, 0.18);
  background: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--midnight);
  position: relative;
  transition: 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.92rem;
  color: var(--deep-blue);
}

.main-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--champagne);
  left: 0;
  right: 100%;
  bottom: 0;
  transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.2rem;
  left: -1rem;
  min-width: 245px;
  background: var(--white);
  border-radius: 18px;
  padding: 0.7rem;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(14, 42, 71, 0.08);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: var(--mist);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  background: var(--midnight);
  color: var(--white);
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 1px solid var(--midnight);
  box-shadow: 0 10px 24px rgba(14, 42, 71, 0.16);
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14, 42, 71, 0.22);
}

.btn.light {
  background: var(--white);
  color: var(--midnight);
  border-color: rgba(14, 42, 71, 0.14);
  box-shadow: none;
}

.btn.gold {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--midnight);
}

.btn.full {
  width: 100%;
}

.hero {
  min-height: 82vh;
  position: relative;
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.82), rgba(22, 61, 99, 0.48), rgba(47, 111, 159, 0.18)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
      padding: 96px 24px;
}

.hero.small {
  min-height: 50vh;
}

.hero.about-hero {
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.82), rgba(22, 61, 99, 0.52)),
    url("https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero.retreats-hero {
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.82), rgba(22, 61, 99, 0.52)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero.contact-hero {
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.82), rgba(22, 61, 99, 0.52)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero.october-hero {
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.86), rgba(22, 61, 99, 0.54)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero.february-hero {
  background:
    linear-gradient(100deg, rgba(14, 42, 71, 0.86), rgba(47, 111, 159, 0.48)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, var(--pearl), rgba(250, 248, 243, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.3rem 8rem;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 750;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.hero h1,
.page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  margin: 0 0 1.3rem;
  max-width: 900px;
  font-weight: 500;
}

.hero p {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 2rem;
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.14);
  border: 1px solid rgba(250, 248, 243, 0.24);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.section {
  padding: 5.6rem 1.3rem;
}

.section.compact {
  padding: 3.6rem 1.3rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.kicker {
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--midnight);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 1rem;
}

h3 {
  color: var(--midnight);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.35rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(14, 42, 71, 0.06);
}

.card.soft {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.feature-card {
  min-height: 290px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--midnight);
  box-shadow: var(--shadow);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 71, 0.02), rgba(14, 42, 71, 0.84));
  z-index: 1;
}

.feature-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.feature-card > div {
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  align-items: end;
}

.image-collage img {
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.image-collage img:first-child {
  height: 520px;
}

.image-collage img:last-child {
  height: 340px;
  margin-bottom: 2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--deep-blue);
  font-size: 0.9rem;
  font-weight: 650;
}

.band {
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.18);
  right: -120px;
  top: -140px;
}

.band h2 {
  color: var(--white);
  max-width: 780px;
}

.band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 740px;
}

.band > * {
  position: relative;
  z-index: 2;
}

.retreat-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 42, 71, 0.06);
}

.retreat-card img {
  height: 310px;
  object-fit: cover;
}

.retreat-card-body {
  padding: 1.7rem;
}

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

.meta span {
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--sand);
  color: var(--deep-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(14, 42, 71, 0.06);
}

.timeline-item strong {
  color: var(--ocean);
  text-transform: uppercase;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--midnight);
}

.check-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
}

.check-list li::before {
  content: "✧";
  position: absolute;
  left: 0;
  color: var(--champagne);
  font-weight: 800;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--midnight);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(14, 42, 71, 0.16);
  background: var(--white);
  border-radius: 15px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 0.35rem;
}

.notice {
  background: var(--mist);
  border-left: 4px solid var(--ocean);
  padding: 1rem 1.1rem;
  border-radius: 14px;
  color: var(--deep-blue);
}

.site-footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 1.3rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer h4,
.site-footer strong {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
}

.fine-print {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 74px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0 0.2rem 1rem;
  }

  .grid-3,
  .grid-2,
  .split,
  .split.reverse,
  .form-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-collage img:first-child,
  .image-collage img:last-child {
    height: 360px;
    margin-bottom: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 74vh;
  }

  .hero-content {
    padding-top: 4.5rem;
  }

  .hero-actions,
  .form-grid {
    display: grid;
  }

  .hero-note {
    border-radius: 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1rem;
  }
}

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.social-links a:hover {
  color: #ffffff;
  border-color: #c9a86a;
}
