.retreat-theme {
  margin-top: 42px;
  color: #e2bd74;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.retreat-banner {
  padding: clamp(90px, 13vw, 190px) clamp(24px, 8vw, 120px);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(42,7,18,.96), rgba(91,15,36,.9)), url('/retreat-community.png') center 42% / cover;
}

.retreat-banner-top {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.retreat-banner-top h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

@media (max-width: 800px) {
  .retreat-banner-top {
    min-height: 58vh;
  }
}

.retreat-banner p,
.retreat-banner span {
  display: block;
  margin: 0;
  font-size: clamp(.72rem, 1.2vw, .9rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.retreat-banner h2 {
  max-width: 1100px;
  margin: 18px auto 28px;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: .8;
  letter-spacing: -.04em;
}

.retreat-banner h2 em {
  color: var(--gold);
  font-weight: 500;
}

.retreat-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: clamp(76px, 10vw, 145px) clamp(24px, 8vw, 120px);
  background: var(--cream);
}

.gallery-intro {
  align-self: end;
  padding: 0 clamp(0px, 4vw, 55px) 30px 0;
}

.gallery-intro h2 {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .9;
}

.gallery-intro p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.retreat-gallery figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
}

.retreat-gallery .gallery-main {
  grid-row: 1 / 3;
  grid-column: 2;
  min-height: 650px;
}

.retreat-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreat-gallery figure:last-child img {
  object-position: center 42%;
}

.gallery-more {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.gallery-more figure {
  min-height: 230px;
}

.gallery-more figure:nth-child(2) img,
.gallery-more figure:nth-child(4) img {
  object-position: center center;
}

.faq {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(45px, 9vw, 130px);
  padding: clamp(80px, 11vw, 155px) clamp(24px, 8vw, 120px);
  background: var(--deep);
  color: #fff;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: .88;
}

.faq-intro > p:not(.eyebrow) {
  color: #d9cdd0;
}

.faq-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.faq-stat strong {
  color: var(--gold);
  font: 600 4rem / 1 "Cormorant Garamond", serif;
}

.faq-stat span {
  color: #d9cdd0;
  font-size: .8rem;
  line-height: 1.5;
}

.faq-list details {
  border-top: 1px solid rgba(255,255,255,.2);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.faq-list summary {
  cursor: pointer;
  padding: 28px 46px 28px 0;
  color: #fff;
  font: 600 clamp(1.5rem, 2.7vw, 2.3rem) / 1.1 "Cormorant Garamond", serif;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-answer {
  padding: 0 0 34px;
  color: #d9cdd0;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer li {
  margin: 7px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.stats-row div {
  padding: 22px 15px;
  background: rgba(255,255,255,.06);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--gold);
  font: 600 2.7rem / 1 "Cormorant Garamond", serif;
}

.stats-row span {
  margin-top: 8px;
  font-size: .7rem;
  line-height: 1.45;
}

.sources {
  margin-top: 28px;
  font-size: .7rem;
}

.sources a {
  color: var(--gold);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 12px 30px;
  flex-wrap: wrap;
  margin: 0 auto 38px;
}

.contact-links a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(91,15,36,.35);
}

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

.registration {
  padding: clamp(76px, 10vw, 145px) clamp(24px, 8vw, 120px);
  background: #fff;
}

.registration-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: clamp(35px, 8vw, 120px);
  align-items: end;
  margin-bottom: 55px;
}

.registration-heading .eyebrow {
  grid-column: 1 / -1;
}

.registration-heading h2 {
  margin: 0;
  max-width: 760px;
  color: var(--wine);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: .95;
}

.registration-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.booking-card {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(91, 15, 36, .18);
  background: var(--cream);
}

.booking-card.featured {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.card-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font: 600 clamp(4.8rem, 8vw, 7rem) / .9 "Cormorant Garamond", serif;
}

.price span {
  font-size: .45em;
  vertical-align: top;
}

.price small {
  display: block;
  margin-top: 14px;
  font: 600 .75rem Montserrat, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.featured .button {
  background: var(--gold);
  color: var(--deep);
}

.featured .button.outline {
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
}

.mail-payment {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: #eadde0;
  font-size: .86rem;
  line-height: 1.7;
}

.booking-card h3 {
  margin: 0 0 15px;
  color: var(--wine);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.booking-card address {
  color: var(--muted);
  font-style: normal;
}

.booking-card dl {
  margin: 28px 0;
}

.booking-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(91,15,36,.15);
}

.booking-card dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-card dd {
  margin: 0;
  font-weight: 600;
}

.booking-note {
  color: var(--muted);
  font-size: .84rem;
}

@media (max-width: 820px) {
  .registration-heading,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .registration-heading {
    gap: 25px;
  }

  .retreat-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 380px 260px;
  }

  .gallery-intro {
    grid-column: 1 / -1;
  }

  .retreat-gallery .gallery-main {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
  }

  .gallery-more {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 480px) {
  .booking-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .payment-buttons {
    flex-direction: column;
  }

  .retreat-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto 300px 270px 270px;
  }

  .retreat-gallery .gallery-main {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-more,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .gallery-more figure {
    min-height: 270px;
  }
}
