.container {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.section,
.philosophy,
.destinations,
.healthSection,
.galleryTeaser {
  padding: clamp(3.1rem, 9vw, 6.2rem) 0;
}

.philosophy {
  background: #f2e9dc;
  border-top: 1px solid var(--color-line);
}

.section {
  background: var(--color-bg);
}

.destinations {
  background: linear-gradient(120deg, #efe2d2 0%, #f6eee3 56%, #ebddcb 100%);
}

.healthSection {
  background: #f1e8db;
}

.galleryTeaser {
  background: #f7f1e8;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  color: rgba(53, 42, 30, 0.72);
}

.sectionTitle {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  color: #241c14;
  max-width: 52rem;
}

.sectionText {
  margin: 1.05rem 0 0;
  max-width: 44rem;
  font-size: clamp(0.92rem, 2.2vw, 1.02rem);
  line-height: 1.75;
  color: var(--color-ink-muted);
}

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

.mediaPanel,
.cardMedia {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(44, 33, 22, 0.16);
}

.mediaPanel {
  min-height: clamp(16rem, 50vw, 26rem);
}

.cardMedia {
  min-height: 12.2rem;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(44, 33, 22, 0.16);
}

.panelImage {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.01);
}

.cardGrid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid rgba(44, 33, 22, 0.16);
  border-radius: 0;
  padding: 0;
  background: linear-gradient(160deg, #f2e7d8, #ebddcb);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.cardTitle {
  margin: 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(1.16rem, 2.1vw, 1.45rem);
  font-weight: 500;
  color: #261d15;
}

.cardText {
  margin: 0.62rem 0 0;
  font-size: 0.9rem;
  line-height: 1.72;
  color: #554a3e;
}

.cardBody {
  padding: 1rem 0.95rem 1.05rem;
}

.journeyNumber {
  position: absolute;
  inset: 0.62rem auto auto 0.62rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.35rem;
  padding: 0 0.45rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: #2c2218;
  background: rgba(246, 236, 224, 0.9);
  border: 1px solid rgba(53, 40, 26, 0.22);
}

.cardMeta {
  margin: 0.95rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(53, 40, 26, 0.18);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: rgba(63, 50, 36, 0.76);
}

.destinationList {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.destinationItem {
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(53, 40, 26, 0.22);
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.67rem;
  color: #352a1f;
}

.experienceList {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.experienceItem {
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(53, 40, 26, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #3b2f23;
}

.inlineCta {
  display: inline-block;
  margin-top: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: #2e241a;
  border-bottom: 1px solid rgba(53, 40, 26, 0.45);
  padding-bottom: 0.22rem;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.inlineCta:hover,
.inlineCta:focus-visible {
  border-color: rgba(53, 40, 26, 0.9);
}

.galleryText {
  margin: 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  text-align: center;
  color: #2a2118;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.1rem;
  }

  .splitLayout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 1.9rem;
  }

  .destinations .splitLayout,
  .healthSection .splitLayout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  }

  .cardGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .card {
    min-height: 100%;
  }

  .card:hover,
  .card:focus-within {
    transform: translateY(-0.22rem);
    border-color: rgba(53, 40, 26, 0.34);
  }

  .cardBody {
    padding: 1.05rem 1.05rem 1.15rem;
  }

  .cardMedia {
    min-height: 13.6rem;
  }

  .destinationList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .experienceList {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.2rem;
  }

  .mediaPanel {
    min-height: clamp(20rem, 36vw, 28rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card:hover,
  .card:focus-within {
    transition: none;
    transform: none;
  }

  .inlineCta,
  .inlineCta:hover,
  .inlineCta:focus-visible {
    transition: none;
  }
}
