/* ============================================================
   WHITE EAGLE RETREATS LLC
   Wellness Retreats & Holistic Healing — Winter Garden, FL

   Palette: Soft whites, sage greens, warm golds, natural earth tones
   Fonts: Cormorant Garamond (serif headings) + Nunito Sans (body) + Italianno (script accent)
   ============================================================ */

/* ======================== CUSTOM PROPERTIES ======================== */
:root {
  /* Core palette */
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --white: #ffffff;
  --sage-lightest: #e8ede6;
  --sage-light: #c8d6c3;
  --sage: #7a9a6f;
  --sage-dark: #4a6b42;
  --sage-darkest: #2d4228;
  --gold-lightest: #f5f0e0;
  --gold-light: #e8d9b0;
  --gold: #c4a44a;
  --gold-dark: #9a7e30;
  --earth: #8b7355;
  --earth-light: #b8a88a;
  --earth-dark: #5c4a38;
  --text-dark: #2a2c28;
  --text-body: #4a4d47;
  --text-muted: #7a7d76;
  --text-light: #a8aaa4;
  --border: rgba(122, 154, 111, 0.12);
  --border-strong: rgba(122, 154, 111, 0.25);

  /* Semantic */
  --bg-primary: var(--cream);
  --bg-section: var(--white);
  --bg-card: var(--white);
  --accent: var(--sage);
  --accent-dark: var(--sage-dark);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Italianno', cursive;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1200px;
  --nav-height: 72px;
  --nav-height-scrolled: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

em {
  font-style: italic;
  color: var(--sage-dark);
}

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

::selection {
  background: var(--sage-light);
  color: var(--text-dark);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-darkest);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 107, 66, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--sage-dark);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--sage-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* ======================== NAVIGATION ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--duration) var(--ease);
  background: rgba(250, 248, 244, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 1px 20px rgba(42, 66, 40, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--sage-darkest);
}

.logo-mark {
  color: var(--sage-dark);
  transition: transform var(--duration) var(--ease);
}

.nav-logo:hover .logo-mark {
  transform: rotate(10deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--sage-dark);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--sage-dark);
  color: var(--cream);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--sage-darkest);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74, 107, 66, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
  padding: 80px 24px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link:hover {
  color: var(--sage-dark);
}

.mobile-cta {
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--sage-dark);
  color: var(--cream);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta:hover {
  background: var(--sage-darkest);
  color: var(--cream);
}


/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
  padding: calc(var(--nav-height) + 40px) 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: floatOrb 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--sage-lightest) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: floatOrb 22s ease-in-out infinite 3s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(122, 154, 111, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title em {
  font-family: var(--font-accent);
  font-size: 1.15em;
  color: var(--sage-dark);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero SVG visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.hero-circle {
  animation: pulseCircle 6s ease-in-out infinite;
}

.hero-circle.c1 { animation-delay: 0s; }
.hero-circle.c2 { animation-delay: 0.5s; }
.hero-circle.c3 { animation-delay: 1s; }
.hero-circle.c4 { animation-delay: 1.5s; }
.hero-circle.c5 { animation-delay: 2s; }

@keyframes pulseCircle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.02); }
}

.lotus-petal {
  animation: gentlePulse 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

.particle {
  animation: floatParticle 8s ease-in-out infinite;
}

.particle.p1 { animation-delay: 0s; }
.particle.p2 { animation-delay: 1.5s; }
.particle.p3 { animation-delay: 3s; }
.particle.p4 { animation-delay: 4.5s; }
.particle.p5 { animation-delay: 2s; }
.particle.p6 { animation-delay: 5s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(10px, -15px); opacity: 0.6; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--sage);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -8px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}


/* ======================== SECTIONS COMMON ======================== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-title em {
  font-family: var(--font-accent);
  font-size: 1.1em;
  color: var(--sage-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}


/* ======================== ABOUT ======================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--sage-dark);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--duration) var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 5/6;
}

.about-photo-placeholder svg {
  width: 100%;
  height: 100%;
}

.about-card-info {
  padding: 24px;
  text-align: center;
}

.about-card-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.about-card-role {
  display: block;
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.about-card-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Values row */
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(122, 154, 111, 0.08);
  color: var(--sage-dark);
  transition: all var(--duration) var(--ease);
}

.value-item:hover .value-icon {
  background: var(--sage-dark);
  color: var(--cream);
  transform: scale(1.1);
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ======================== RETREATS ======================== */
.retreats {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.retreats .section-desc {
  margin-bottom: 48px;
}

.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.retreat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.retreat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42, 66, 40, 0.08);
  border-color: var(--border-strong);
}

.retreat-card-img {
  position: relative;
}

.retreat-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retreat-icon {
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.retreat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.retreat-card-body {
  padding: 24px;
}

.retreat-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.retreat-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.retreat-features {
  list-style: none;
  margin-bottom: 20px;
}

.retreat-features li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.retreat-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.5;
}

.retreat-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
}

.retreat-link:hover {
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}


/* ======================== EXPERIENCES ======================== */
.experiences {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
}

.experience-timeline {
  position: relative;
  max-width: 700px;
  margin: 56px auto 0;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-strong), var(--sage-light), var(--border-strong));
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--sage-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-dark);
  position: relative;
  z-index: 1;
  transition: all var(--duration) var(--ease);
}

.timeline-item:hover .timeline-number {
  background: var(--sage-dark);
  color: var(--cream);
  border-color: var(--sage-dark);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  margin-top: 4px;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Features strip */
.features-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--duration) var(--ease);
}

.feature-chip:hover {
  border-color: var(--sage);
  background: rgba(122, 154, 111, 0.06);
}

.feature-chip svg {
  color: var(--sage);
  flex-shrink: 0;
}


/* ======================== TESTIMONIALS ======================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42, 66, 40, 0.06);
}

.testimonial-featured {
  background: var(--sage-darkest);
  border-color: var(--sage-dark);
}

.testimonial-featured .testimonial-text {
  color: rgba(250, 248, 244, 0.9);
}

.testimonial-featured .testimonial-author strong {
  color: var(--cream);
}

.testimonial-featured .testimonial-author span {
  color: var(--sage-light);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ======================== EVENTS ======================== */
.events {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
}

.events .section-desc {
  margin-bottom: 48px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.event-card:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 24px rgba(42, 66, 40, 0.06);
  transform: translateX(4px);
}

.event-date {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.event-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2px;
}

.event-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.event-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 4px 12px;
  background: rgba(122, 154, 111, 0.08);
  border-radius: 50px;
}

.event-spots {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.event-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  border: 1.5px solid var(--sage);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: all var(--duration) var(--ease);
}

.event-cta:hover {
  background: var(--sage-dark);
  color: var(--cream);
  border-color: var(--sage-dark);
}


/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sage-darkest) 0%, var(--sage-dark) 50%, var(--sage) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-pattern {
  width: 100%;
  height: 100%;
  color: var(--cream);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-banner h2 em {
  font-family: var(--font-accent);
  font-size: 1.15em;
  color: var(--gold-light);
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(250, 248, 244, 0.75);
  max-width: 500px;
  margin: 0 auto 32px;
}


/* ======================== CONTACT ======================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact .section-desc {
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(122, 154, 111, 0.08);
  color: var(--sage-dark);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-detail p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-detail a {
  font-size: 0.88rem;
  color: var(--sage-dark);
}

/* Map placeholder */
.contact-map {
  margin-top: 8px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage-lightest) 0%, var(--cream-dark) 50%, var(--gold-lightest) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.map-placeholder span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.map-placeholder .map-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Contact form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group:only-child,
.contact-form > .form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--duration) var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 154, 111, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7d76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.75rem;
  color: #c44;
  min-height: 18px;
  margin-top: 4px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #c44;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  position: relative;
}

.btn-loading {
  display: none;
  animation: spin 1s linear infinite;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loading {
  display: block;
  position: absolute;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 12px;
  z-index: 2;
}

.form-success.visible {
  display: flex;
}

.form-success svg {
  color: var(--sage);
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 320px;
}


/* ======================== FOOTER ======================== */
.footer {
  background: var(--sage-darkest);
  color: rgba(250, 248, 244, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo:hover {
  color: var(--gold-light);
}

.footer-logo .logo-name {
  color: var(--cream);
}

.footer-logo .logo-sub {
  color: var(--sage-light);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 244, 0.15);
  color: rgba(250, 248, 244, 0.6);
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.6);
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.6);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.45);
}

.footer-legal {
  font-size: 0.75rem !important;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.45);
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}


/* ======================== BACK TO TOP ======================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--duration) var(--ease);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(42, 66, 40, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--sage-darkest);
  transform: translateY(-2px);
}


/* ======================== SCROLL REVEAL ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


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

  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb {
    animation: none;
  }
}


/* ======================== PRINT ======================== */
@media print {
  .nav,
  .hamburger,
  .mobile-menu,
  .scroll-indicator,
  .back-to-top,
  .cta-banner,
  .hero-bg,
  .hero-visual {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 24pt 0;
  }

  section {
    padding: 24pt 0;
    break-inside: avoid;
  }
}


/* ======================== RESPONSIVE: TABLET ======================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-card {
    max-width: 350px;
    margin: 0 auto;
  }

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

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}


/* ======================== RESPONSIVE: MOBILE ======================== */
@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
    --nav-height: 64px;
    --nav-height-scrolled: 56px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: calc(var(--nav-height) + 24px) 0 48px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-visual {
    max-width: 260px;
  }

  .scroll-indicator {
    display: none;
  }

  .about-quote {
    font-size: 1.15rem;
    padding-left: 16px;
  }

  .values-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .retreats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .event-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .event-date {
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
  }

  .event-month {
    margin-bottom: 0;
  }

  .event-cta {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .timeline-item {
    gap: 20px;
  }

  .timeline-number {
    width: 52px;
    height: 52px;
    font-size: 0.95rem;
  }

  .timeline-line {
    left: 26px;
  }

  .features-strip {
    gap: 8px;
  }

  .feature-chip {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .mobile-link {
    font-size: 1.3rem;
  }
}

/* ======================== VERY SMALL SCREENS ======================== */
@media (max-width: 380px) {
  .logo-name {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
