@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../assets/fonts/Newsreader-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #14231e;
  --moss: #385548;
  --river: #356879;
  --river-dark: #245261;
  --lichen: #506057;
  --mineral: #dfe4e1;
  --fog: #f4f6f3;
  --shale: #aeb9b4;
  --white: #fbfcfa;
  --error: #9a3e3e;
  --success: #285b47;
  --shadow: 0 24px 60px rgb(20 35 30 / 0.12);
  --container: 88rem;
  --reading: 44rem;
  --header-height: 4.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --step--1: clamp(0.78rem, 0.75rem + 0.12vw, 0.88rem);
  --step-0: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
  --step-1: clamp(1.28rem, 1.12rem + 0.72vw, 1.72rem);
  --step-2: clamp(1.8rem, 1.42rem + 1.68vw, 2.8rem);
  --step-3: clamp(2.6rem, 1.8rem + 3.2vw, 4.8rem);
  --step-4: clamp(3.65rem, 2.25rem + 5.8vw, 7.2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--forest);
  background: var(--fog);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h2 {
  font-size: var(--step-3);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1;
}

h3 {
  font-size: var(--step-1);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

p {
  max-width: 65ch;
}

::selection {
  color: var(--white);
  background: var(--river);
}

:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.reading-width {
  width: min(100%, var(--reading));
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-compact {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.section-mineral {
  background: var(--mineral);
}

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

.section-forest a {
  color: inherit;
}

.section-forest .button-light {
  color: var(--forest);
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--river-dark);
  font-size: var(--step--1);
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-forest .eyebrow {
  color: #93bac6;
}

.lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 1.25rem + 1.9vw, 3.2rem);
  font-weight: 390;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.muted {
  color: var(--lichen);
}

.section-forest .muted {
  color: #b9c8c1;
}

.meta {
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--river-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 220ms var(--ease), transform 220ms var(--ease);
}

.button:hover {
  background: #163f4d;
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--forest);
}

.button-light {
  border-color: var(--fog);
  color: var(--forest);
  background: var(--fog);
}

.button-light:hover {
  color: var(--white);
  background: var(--river-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--river-dark);
  font-weight: 720;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: translateX(0.3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid rgb(20 35 30 / 0.15);
  background: rgb(244 246 243 / 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--forest);
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 46%, var(--forest) 47% 53%, transparent 54%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  white-space: nowrap;
}

.desktop-nav > a:not(.button) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--river);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--shale);
  border-radius: 50%;
  color: var(--forest);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.29rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.29rem) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 25;
  display: none;
  padding: 2rem 1rem 3rem;
  background: var(--fog);
}

.mobile-panel[data-open="true"] {
  display: flex;
  flex-direction: column;
}

.mobile-panel nav {
  display: grid;
  gap: 0;
}

.mobile-panel nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--shale);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
}

.mobile-panel .button {
  align-self: flex-start;
  margin-top: auto;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
}

.hero {
  min-height: calc(100dvh - var(--header-height));
  padding-block: clamp(2rem, 4vw, 4rem);
}

.hero-grid {
  display: grid;
  min-height: calc(100dvh - var(--header-height) - clamp(4rem, 8vw, 8rem));
  grid-template-columns: minmax(0, 5fr) minmax(24rem, 7fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.hero-copy {
  padding-block: 2rem;
}

.hero-copy h1 {
  max-width: 8.5ch;
  margin-bottom: 1.5rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: var(--lichen);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.threshold-media {
  position: relative;
  height: min(74vh, 52rem);
  min-height: 34rem;
  overflow: hidden;
}

.threshold-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.threshold-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(244 246 243 / 0.35);
  content: "";
  pointer-events: none;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 3fr) minmax(0, 7fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.statement-note {
  max-width: 18rem;
  color: var(--lichen);
}

.feature-retreat {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(17rem, 4fr);
  background: var(--mineral);
}

.feature-retreat-media {
  min-height: 38rem;
}

.feature-retreat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-retreat-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
}

.feature-retreat-copy h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 5rem);
  font-weight: 390;
}

.fact-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fact-cluster div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--shale);
}

.fact-cluster strong,
.fact-cluster span {
  display: block;
}

.fact-cluster span {
  color: var(--lichen);
  font-size: var(--step--1);
}

.experience-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.mosaic-large {
  grid-row: span 2;
  min-height: 42rem;
}

.mosaic-small {
  min-height: 20.5rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.mosaic-item:hover img {
  transform: scale(1.025);
}

.mosaic-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 3rem 1.25rem 1.25rem;
  color: var(--white);
  background: linear-gradient(transparent, rgb(20 35 30 / 0.8));
  font-weight: 650;
}

.stay-split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.stay-split img {
  min-height: 38rem;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  align-items: start;
  gap: 1rem;
}

.person-card:nth-child(2) {
  margin-top: 4rem;
}

.person-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.person-card h3 {
  margin: 1rem 0 0.2rem;
}

.person-card p {
  color: var(--lichen);
  font-size: 0.94rem;
}

.journal-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.journal-band img {
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.journal-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 7vw, 7rem);
  background: var(--mineral);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.final-cta h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.page-hero {
  padding-block: clamp(3rem, 7vw, 7rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(22rem, 7fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.page-hero h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.page-hero p:not(.eyebrow) {
  color: var(--lichen);
}

.page-hero-media {
  height: min(65vh, 42rem);
  min-height: 28rem;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--shale);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--river-dark);
  color: var(--white);
  background: var(--river-dark);
}

.result-count {
  margin-left: auto;
  color: var(--lichen);
  font-size: 0.9rem;
}

.retreat-list {
  display: grid;
  gap: 1px;
  background: var(--shale);
}

.retreat-row {
  display: grid;
  grid-template-columns: minmax(14rem, 4fr) minmax(0, 5fr) minmax(11rem, 2fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1rem;
  background: var(--fog);
}

.retreat-row[hidden] {
  display: none;
}

.retreat-row img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.retreat-row h2 {
  margin-bottom: 0.8rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 390;
}

.retreat-row-side {
  padding-top: 1rem;
  border-top: 1px solid var(--shale);
}

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

.retreat-row-side span {
  color: var(--lichen);
  font-size: var(--step--1);
}

.detail-hero {
  position: relative;
  min-height: min(78vh, 56rem);
  display: flex;
  align-items: end;
  color: var(--white);
  background: var(--forest);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(20 35 30 / 0.8), rgb(20 35 30 / 0.1) 70%), linear-gradient(transparent 50%, rgb(20 35 30 / 0.75));
  content: "";
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 7vw, 7rem);
}

.detail-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 370;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 650;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(17rem, 3fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 1.5rem;
  background: var(--mineral);
}

.detail-sidebar dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.detail-sidebar dt {
  color: var(--lichen);
  font-size: var(--step--1);
}

.detail-sidebar dd {
  margin: 0;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 0;
  margin-block: 3rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--shale);
}

.timeline-item time {
  color: var(--river-dark);
  font-weight: 750;
}

.timeline-item h3 {
  margin-bottom: 0.4rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--lichen);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.content-split + .content-split {
  margin-top: clamp(5rem, 9vw, 9rem);
}

.content-split.reverse .content-copy {
  order: 2;
}

.content-split img {
  min-height: 30rem;
  object-fit: cover;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.amenity {
  min-height: 13rem;
  padding: 1.5rem;
  border: 1px solid var(--shale);
}

.amenity h3 {
  margin-bottom: 0.5rem;
}

.amenity p {
  margin-bottom: 0;
  color: var(--lichen);
  font-size: 0.94rem;
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 4fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.profile-feature + .profile-feature {
  margin-top: clamp(5rem, 9vw, 9rem);
}

.profile-feature:nth-child(even) img {
  order: 2;
}

.profile-feature img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.scope-note {
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 4px solid var(--river);
  background: var(--mineral);
}

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

.article-card {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.article-card:first-child {
  grid-row: span 2;
  min-height: 61rem;
}

.article-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  transition: transform 700ms var(--ease), opacity 400ms var(--ease);
}

.article-card:hover img {
  opacity: 0.56;
  transform: scale(1.025);
}

.article-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgb(20 35 30 / 0.92));
}

.article-card h2,
.article-card h3 {
  max-width: 15ch;
  margin-bottom: 0.5rem;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 390;
}

.article-card h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.article-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.article-body {
  width: min(calc(100% - 2rem), var(--reading));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.article-body > p:first-of-type {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.45;
}

.article-body h2 {
  margin-top: 4rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.article-body blockquote {
  margin: 3rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--river);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.3;
}

.article-body figure {
  width: min(100vw - 2rem, 64rem);
  margin: 4rem 50%;
  transform: translateX(-50%);
}

.article-body figcaption {
  margin-top: 0.7rem;
  color: var(--lichen);
  font-size: var(--step--1);
}

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

.travel-option {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 4px solid var(--river);
  background: var(--mineral);
}

.travel-option h3 {
  margin-bottom: 1rem;
}

.arrival-map {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: var(--forest);
}

.arrival-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.arrival-map-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 34rem;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 6rem);
  color: var(--white);
}

.arrival-steps {
  display: grid;
  gap: 1rem;
}

.arrival-step {
  padding: 1rem;
  border-left: 2px solid #93bac6;
  background: rgb(20 35 30 / 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 4fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-details {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-details address {
  font-style: normal;
}

.contact-details a {
  color: var(--river-dark);
}

.inquiry-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--mineral);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 720;
}

.field small {
  display: block;
  margin-top: 0.35rem;
  color: #52615a;
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #7d8b84;
  border-radius: 0;
  color: var(--forest);
  background: var(--white);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--river-dark);
  outline: 3px solid rgb(53 104 121 / 0.28);
  outline-offset: 0;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid currentColor;
}

.form-status[data-state="success"] {
  display: block;
  color: var(--success);
  background: #e3eee8;
}

.form-status[data-state="error"] {
  display: block;
  color: var(--error);
  background: #f3e6e6;
}

.faq-list {
  border-top: 1px solid var(--shale);
}

.faq-item {
  border-bottom: 1px solid var(--shale);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 4.5rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-weight: 720;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--river-dark);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 2rem 1.5rem 0;
  color: var(--lichen);
}

.faq-answer[hidden] {
  display: none;
}

.site-footer {
  padding-block: clamp(4rem, 7vw, 7rem) 2rem;
  color: #dce4df;
  background: var(--forest);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 2fr) repeat(3, minmax(8rem, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand p {
  color: #aebdb5;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  min-height: 2.4rem;
  color: #dce4df;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #9cc3cf;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(244 246 243 / 0.2);
  color: #aebdb5;
  font-size: 0.78rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--shale);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.back-to-top[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 68rem) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  }

  .feature-retreat {
    grid-template-columns: minmax(0, 7fr) minmax(16rem, 5fr);
  }

  .retreat-row {
    grid-template-columns: minmax(13rem, 4fr) minmax(0, 5fr);
  }

  .retreat-row-side {
    grid-column: 2;
  }
}

@media (max-width: 56rem) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .statement-grid,
  .feature-retreat,
  .stay-split,
  .journal-band,
  .detail-layout,
  .content-split,
  .profile-feature,
  .arrival-map-content,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .threshold-media {
    height: 64vh;
    min-height: 30rem;
  }

  .feature-retreat-media {
    min-height: 30rem;
  }

  .feature-retreat-copy {
    min-height: 30rem;
  }

  .stay-split img {
    min-height: 30rem;
  }

  .detail-sidebar,
  .contact-details {
    position: static;
  }

  .content-split.reverse .content-copy,
  .profile-feature:nth-child(even) img {
    order: initial;
  }

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

  .article-card:first-child {
    grid-row: auto;
    min-height: 36rem;
  }

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

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

@media (max-width: 42rem) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding-block: 4.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(3.1rem, 17vw, 5.3rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .threshold-media,
  .page-hero-media {
    height: 60vh;
    min-height: 27rem;
  }

  .fact-cluster,
  .amenity-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .experience-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic-large,
  .mosaic-small {
    min-height: 24rem;
  }

  .mosaic-large {
    grid-row: auto;
  }

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

  .person-card:nth-child(2) {
    margin-top: 0;
  }

  .journal-band img {
    min-height: 25rem;
  }

  .filter-bar {
    align-items: stretch;
  }

  .filter-button {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .result-count {
    width: 100%;
    margin: 0.5rem 0 0;
  }

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

  .retreat-row-side {
    grid-column: auto;
  }

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

  .content-split img {
    min-height: 24rem;
  }

  .arrival-map-content {
    padding: 1.25rem;
  }

  .field-full {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
