/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --navy-deep: #0d1b2a;
  --navy-mid: #162c3e;
  --navy-light: #1e3f57;
  --gold: #c4a265;
  --gold-light: #d4b97a;
  --sand: #e2ccaa;
  --cream: #f7f3ed;
  --warm-white: #fdfaf6;
  --text-dark: #2a2420;
  --text-mid: #5a4f47;
  --text-light: #faf8f4;
  --text-muted: rgba(250, 248, 244, 0.65);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.8;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  background: rgba(13, 27, 42, 0.96);
  padding: 16px 60px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(13, 27, 42, 0.82) 0%,
    rgba(22, 44, 62, 0.72) 50%,
    rgba(13, 27, 42, 0.88) 100%
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  margin: 0 14px;
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-title em {
  font-style: italic;
  color: var(--sand);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-light);
  margin-bottom: 52px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.hero-meta-item {
  text-align: center;
}

.hero-meta-item .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.hero-meta-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 400;
}

.hero-meta-item .value-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  background: rgba(196, 162, 101, 0.3);
  align-self: stretch;
}

.btn-primary {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  border: none;
  padding: 17px 48px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== SECTION BASE ===== */
section {
  padding: 110px 60px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--text-mid);
}

.section-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 660px;
}

/* ===== PHILOSOPHY ===== */
#philosophy {
  background: var(--navy-deep);
  color: var(--text-light);
  text-align: center;
  padding: 130px 60px;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  color: var(--text-light);
  max-width: 820px;
  margin: 0 auto 40px;
}

.philosophy-quote em {
  font-style: italic;
  color: var(--sand);
}

.philosophy-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

.philosophy-body {
  font-size: 1.1rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== OCEAN IMAGE BREAKS ===== */
.image-break {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.3) 0%,
    rgba(13, 27, 42, 0.55) 100%
  );
}

.image-break-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(250, 248, 244, 0.75);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  text-align: center;
}

#ocean-break-1 {
  background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1920&q=80');
}

#ocean-break-2 {
  background-image: url('https://images.unsplash.com/photo-1439405326854-014607f694d7?auto=format&fit=crop&w=1920&q=80');
}

/* ===== THREE PILLARS ===== */
#pillars {
  background: var(--cream);
}

.pillars-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.pillar-card {
  background: var(--warm-white);
  padding: 60px 44px;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196, 162, 101, 0.18);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.pillar-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.pillar-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ===== WEEKEND SEQUENCE ===== */
#sequence {
  background: var(--warm-white);
}

.sequence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sequence-intro .section-body {
  margin-bottom: 40px;
}

.sequence-days {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sequence-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}

.sequence-day:first-child {
  padding-top: 0;
}

.day-marker {
  text-align: center;
}

.day-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.day-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--navy-mid);
  line-height: 1;
}

.day-content-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.day-content-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ===== OFFERINGS ===== */
#offerings {
  background: var(--navy-mid);
  color: var(--text-light);
}

.offerings-header {
  margin-bottom: 70px;
}

.offerings-header .section-title {
  color: var(--text-light);
}

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

.offering-item {
  background: rgba(255,255,255,0.04);
  padding: 44px 48px;
  border-left: 1px solid rgba(196, 162, 101, 0.15);
  transition: background 0.3s ease;
}

.offering-item:hover {
  background: rgba(255,255,255,0.07);
}

.offering-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 12px;
}

.offering-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ===== GUIDES ===== */
#guides {
  background: var(--warm-white);
}

.guides-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.guide-card {
  text-align: center;
}

.guide-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.35);
}

/* Placeholder photo backgrounds — replace with real headshots */
.guide-photo--jocelyn {
  background: linear-gradient(135deg, #1a3a4a 0%, #0d2535 100%);
}

.guide-photo--laura {
  background: linear-gradient(135deg, #2a1a0a 0%, #1a3a4a 100%);
}

.guide-photo--kristin {
  background: linear-gradient(135deg, #0d2535 0%, #1e3020 100%);
}

.guide-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(196, 162, 101, 0.6);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.guide-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.guide-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.guide-bio {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: left;
}

/* ===== THE SPACE ===== */
#space {
  background: var(--cream);
}

.space-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.space-visual {
  background-image: url('https://images.unsplash.com/photo-1733159775399-2c1f9cfaea21?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: 70% center;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 40px 40px 40px 24px;
  position: relative;
  overflow: hidden;
}

.space-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.1) 0%,
    rgba(13, 27, 42, 0.65) 100%
  );
}

.space-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.space-visual-text em {
  font-style: italic;
  color: var(--sand);
}

.space-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.space-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.space-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.space-feature-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.space-feature-text strong {
  font-weight: 500;
  color: var(--navy-deep);
  display: block;
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

/* ===== REGISTER ===== */
#register {
  background: var(--navy-deep);
  text-align: center;
  padding: 130px 60px;
  position: relative;
  overflow: hidden;
}

#register::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196, 162, 101, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.register-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.register-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.1;
}

.register-title em {
  font-style: italic;
  color: var(--sand);
}

.register-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.register-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 28px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto 48px;
  max-width: 640px;
}

.pricing-card {
  border: 1px solid rgba(196, 162, 101, 0.35);
  padding: 40px 32px;
  text-align: center;
}

.pricing-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.pricing-details {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #080f18;
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 244, 0.4);
}

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 244, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    padding: 20px 30px;
  }

  nav.scrolled {
    padding: 14px 30px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 30px;
  }

  #philosophy,
  #register {
    padding: 90px 30px;
  }

  .image-break {
    height: 280px;
    background-attachment: scroll;
  }

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

  .sequence-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .guide-bio {
    text-align: center;
  }

  .space-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .space-visual {
    aspect-ratio: 16/9;
  }

  .hero-meta {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 36px 30px;
  }
}

/* ===== HOMEPAGE STYLES ===== */

/* Home Hero — uses a nature/abstract image instead of ocean */
#hero.home-hero {
  background-image: url('https://images.unsplash.com/photo-1694423153522-0ffec5820b66?auto=format&fit=crop&w=1920&q=80');
  background-position: center 50%;
}

.home-hero .hero-title {
  margin-bottom: 36px;
}

/* About section layout */
.home-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Featured current retreat */
.home-featured {
  background: var(--navy-deep);
  padding: 110px 60px;
}

.home-featured .section-label {
  margin-bottom: 40px;
}

.featured-retreat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.featured-retreat-image {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

#featured-image-ebd {
  background-image: url('https://images.unsplash.com/photo-1772424131868-6b9f154b59ce?auto=format&fit=crop&w=1200&q=80');
}

.featured-retreat-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.1) 0%, rgba(13,27,42,0.5) 100%);
}

.featured-retreat-image-content {
  position: relative;
  z-index: 1;
}

.featured-retreat-badge {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13,27,42,0.8);
  padding: 8px 20px;
  backdrop-filter: blur(4px);
}

.featured-retreat-details {
  background: var(--navy-mid);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-retreat-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 16px;
}

.featured-retreat-name em {
  font-style: italic;
  color: var(--sand);
}

.featured-retreat-location {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.featured-retreat-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.featured-retreat-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.featured-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(250,248,244,0.55);
}

/* Past Retreats Section */
#past-retreats {
  background: var(--cream);
  padding: 110px 60px;
}

.past-retreats-header {
  margin-bottom: 60px;
}

.past-retreats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 40px;
}

.past-retreat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--warm-white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.past-retreat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(13,27,42,0.1);
}

.past-retreat-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}

#past-image-oneka {
  background-image: url('https://i.ibb.co/8g56T4BT/DSC-7200.jpg');
}

.past-retreat-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,27,42,0.6) 100%);
}

.past-retreat-date {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(13,27,42,0.7);
  padding: 6px 16px;
  backdrop-filter: blur(4px);
}

.past-retreat-info {
  padding: 36px 32px;
}

.past-retreat-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.past-retreat-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.past-retreat-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.past-retreat-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}

.past-retreat-card:hover .past-retreat-link {
  color: var(--navy-deep);
}

/* Homepage responsive */
@media (max-width: 900px) {
  .home-about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-retreat-card {
    grid-template-columns: 1fr;
  }

  .featured-retreat-image {
    min-height: 300px;
  }

  .featured-retreat-details {
    padding: 40px 30px;
  }

  .home-featured {
    padding: 80px 30px;
  }

  #past-retreats {
    padding: 80px 30px;
  }

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