:root {
  --ink: #0f0f0f;
  --olive: #1e2418;
  --olive-soft: #303729;
  --gold: #c8a46a;
  --gold-soft: #d8c3a5;
  --cream: #f3eee7;
  --paper: #fbfaf6;
  --line: rgba(15, 15, 15, 0.14);
  --line-dark: rgba(243, 238, 231, 0.18);
  --text: #292824;
  --muted: #6c675f;
  --white: #ffffff;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
  --shadow: rgba(30, 36, 24, 0.12) 0 24px 80px;
  --shadow-soft: rgba(36, 36, 41, 0.07) 0 8px 34px, rgba(37, 36, 41, 0.09) 0 1px 2px;
  --radius-soft: 8px;
  --motion-quick: 180ms ease;
  --motion-smooth: 360ms cubic-bezier(0.22, 1, 0.36, 1);
  --warm-aura: conic-gradient(from 215deg at 56% 46%, rgba(243, 238, 231, 0.04), rgba(200, 164, 106, 0.28), rgba(216, 195, 165, 0.18), rgba(30, 36, 24, 0.04), rgba(243, 238, 231, 0.04));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 5.8rem;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 1rem;
  color: var(--cream);
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.06);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-7deg) scale(1.04);
  box-shadow: 0 0 0 0.25rem rgba(200, 164, 106, 0.12), 0 0 2rem rgba(200, 164, 106, 0.22);
}

.brand-name,
.brand-subtitle {
  display: block;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 0.2rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: -0.7rem;
}

.site-nav {
  position: fixed;
  inset: 4.75rem 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  min-height: 2.75rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.46rem;
  height: 1px;
  background: currentColor;
  opacity: 0.46;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.section-dark {
  color: var(--cream);
  background: var(--ink);
}

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

.section-light {
  background: var(--paper);
}

.section-shell {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 4.5rem 1.2rem;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.7;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 45rem;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 8vw, 4.45rem);
  line-height: 1;
}

h2 {
  margin-bottom: 1.25rem;
  color: inherit;
  font-size: 2.45rem;
  line-height: 1.07;
}

h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: var(--radius-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--motion-quick), background var(--motion-quick), color var(--motion-quick), border-color var(--motion-quick), box-shadow var(--motion-quick);
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(112deg, transparent 0 38%, rgba(243, 238, 231, 0.22) 50%, transparent 62% 100%);
  opacity: 0.42;
  transform: translateX(-118%);
  transition: transform 640ms ease;
  pointer-events: none;
}

.button::after {
  content: "→";
  position: relative;
  margin-left: 0.7rem;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(118%);
}

.hero .button,
.deep-cta .button {
  align-self: flex-start;
}

.button-gold {
  color: var(--gold);
  background: rgba(15, 15, 15, 0.28);
}

.button-gold:hover {
  color: var(--ink);
  background: var(--gold);
}

.button-dark {
  width: 100%;
  color: var(--cream);
  background: var(--olive);
}

.button-quiet {
  color: rgba(243, 238, 231, 0.86);
  background: rgba(243, 238, 231, 0.08);
  border-color: rgba(243, 238, 231, 0.36);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--cream);
  background: rgba(243, 238, 231, 0.14);
  border-color: rgba(200, 164, 106, 0.74);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.9) 43%, rgba(15, 15, 15, 0.28) 72%, rgba(15, 15, 15, 0.42) 100%),
    url("/assets/jan-dark.jpg") 80% center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 28%, rgba(200, 164, 106, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.88), transparent 38%);
  animation: shade-breathe 13s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 78rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 7rem 1.2rem 4rem;
}

.hero-kicker {
  max-width: 32rem;
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  line-height: 1.06;
}

.hero-claim {
  max-width: 32rem;
  margin-bottom: 1.7rem;
  color: rgba(243, 238, 231, 0.86);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

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

@media (max-width: 47.99rem) {
  .hero-media {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.28) 0%, rgba(15, 15, 15, 0.38) 32%, rgba(15, 15, 15, 0.74) 58%, rgba(15, 15, 15, 0.98) 100%),
      linear-gradient(90deg, rgba(15, 15, 15, 0.68) 0%, rgba(15, 15, 15, 0.2) 54%, rgba(15, 15, 15, 0.34) 100%),
      url("/assets/jan-dark.jpg") 50% 5.4rem / auto min(68svh, 34rem) no-repeat;
    transform: none;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 70% 26%, rgba(200, 164, 106, 0.2), transparent 31%),
      linear-gradient(0deg, rgba(15, 15, 15, 0.92), transparent 42%);
  }

  .hero-inner {
    align-items: center;
    justify-content: flex-end;
    padding-top: 36svh;
    padding-bottom: 2.2rem;
    text-align: center;
  }

  .hero h1 {
    order: 1;
    max-width: 19rem;
    margin-inline: auto;
    margin-bottom: 0.78rem;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
    line-height: 1.05;
  }

  .hero-claim {
    max-width: 18rem;
    margin-inline: auto;
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-kicker {
    order: 2;
    max-width: 17rem;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-actions {
    order: 3;
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 20rem);
    margin-inline: auto;
  }

  .hero .button {
    align-self: stretch;
    justify-content: center;
  }
}

.pillars {
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 1.6rem 1.2rem;
}

.pillars-grid article {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.4rem 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, transform 220ms ease;
}

.pillars-grid article:last-child {
  border-bottom: 0;
}

.pillars-grid .line-icon {
  grid-row: span 2;
}

.pillars-grid h2,
.pillars-grid p {
  margin: 0;
}

.pillars-grid h2 {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.pillars-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.line-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  color: var(--gold);
  transition: color 240ms ease, transform 240ms ease;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.compass::before {
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.compass::after {
  width: 0.85rem;
  height: 0.85rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.heart::before {
  width: 1.45rem;
  height: 1.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.person::before {
  top: 0.45rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.person::after {
  bottom: 0.5rem;
  width: 1.8rem;
  height: 1.15rem;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 1.4rem 1.4rem 0 0;
}

.leaf::before {
  width: 1.85rem;
  height: 1.35rem;
  border: 1px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-38deg);
}

.leaf::after {
  width: 1px;
  height: 2.2rem;
  background: currentColor;
  transform: rotate(38deg);
}

.sun::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -1.1rem 0 -0.58rem currentColor, 0 1.1rem 0 -0.58rem currentColor, 1.1rem 0 0 -0.58rem currentColor, -1.1rem 0 0 -0.58rem currentColor;
}

.phone::before {
  width: 1.25rem;
  height: 1.95rem;
  border: 1px solid currentColor;
  border-radius: 0.45rem;
  transform: rotate(-28deg);
}

.chain::before,
.chain::after {
  width: 1.35rem;
  height: 0.7rem;
  border: 1px solid currentColor;
  border-radius: 1rem;
}

.chain::before {
  transform: translateX(-0.35rem) rotate(-38deg);
}

.chain::after {
  transform: translateX(0.35rem) rotate(-38deg);
}

.shield::before {
  width: 1.6rem;
  height: 1.9rem;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.shield::after {
  width: 1.35rem;
  height: 1.62rem;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.section-dark .shield::after {
  background: var(--olive);
}

.briefcase::before {
  width: 2rem;
  height: 1.35rem;
  border: 1px solid currentColor;
  border-radius: 0.15rem;
}

.briefcase::after {
  top: 0.54rem;
  width: 0.8rem;
  height: 0.45rem;
  border: 1px solid currentColor;
  border-bottom: 0;
}

.group::before {
  width: 1.75rem;
  height: 1rem;
  border: 1px solid currentColor;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
}

.group::after {
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: -0.8rem 0.3rem 0 -0.08rem var(--ink), -0.8rem 0.3rem 0 0 currentColor, 0.8rem 0.3rem 0 -0.08rem var(--ink), 0.8rem 0.3rem 0 0 currentColor;
}

.lock::before {
  bottom: 0.55rem;
  width: 1.65rem;
  height: 1.25rem;
  border: 1px solid currentColor;
}

.lock::after {
  top: 0.55rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
}

.calendar::before {
  width: 2rem;
  height: 1.8rem;
  border: 1px solid currentColor;
  border-radius: 0.2rem;
}

.calendar::after {
  top: 1rem;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.clock::before {
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.clock::after {
  width: 0.7rem;
  height: 0.85rem;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translate(0.18rem, -0.18rem);
}

.transition-story {
  position: relative;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--cream), var(--paper) 64%, var(--cream));
  overflow: hidden;
}

.transition-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(200, 164, 106, 0.13), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(30, 36, 24, 0.07), transparent 28%);
  pointer-events: none;
}

.transition-story .section-shell {
  position: relative;
}

.story-heading {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.story-heading p {
  max-width: 50rem;
  margin: 0 auto;
  color: var(--muted);
}

.story-heading p + p {
  margin-top: -0.15rem;
}

.program-details {
  padding-top: 0.45rem;
  color: var(--text) !important;
  font-weight: 600;
}

.program-journey {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.journey-stage {
  position: relative;
  display: grid;
  gap: 0.8rem;
  width: min(100%, 22rem);
  max-width: 100%;
  margin-inline: auto;
  padding: 0.25rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.journey-stage::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 2.55rem;
  width: 1px;
  background: rgba(15, 15, 15, 0.38);
}

.journey-line {
  display: none;
}

.journey-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3rem auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 4rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.65rem 0.75rem;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color var(--motion-quick), transform var(--motion-quick);
}

.journey-node span {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(15, 15, 15, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1;
}

.journey-node strong {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.journey-node.is-active {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.journey-node.is-active span {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.journey-detail {
  display: grid;
  justify-items: center;
  width: min(100%, 48rem);
  min-height: 10rem;
  padding: 0.9rem 0 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.journey-step,
.journey-duration {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-step {
  font-size: 0.78rem;
}

.journey-detail h3 {
  margin: 0.45rem 0 0.2rem;
  font-size: clamp(1.8rem, 7vw, 2.55rem);
}

.journey-duration {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
}

.journey-detail p:last-child {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--muted);
}

.program-price {
  display: grid;
  justify-items: center;
  margin-top: 1.4rem;
}

.price-card {
  display: grid;
  justify-items: center;
  width: min(100%, 42rem);
  align-content: center;
  padding: clamp(0.7rem, 3vw, 1.2rem) 0;
  color: var(--text);
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.price-product,
.price-eyebrow {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-product {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.price-eyebrow {
  margin-bottom: 0.55rem;
}

.price-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.95rem, 5.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.price-card p {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
}

.price-card small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.nature-meetups {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 164, 106, 0.1), transparent 22%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.nature-meetups::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.36) 48%, transparent 60%);
  opacity: 0.44;
  transform: translateX(-32%);
  animation: quiet-sweep 10s ease-in-out infinite;
  pointer-events: none;
}

.nature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  align-items: center;
}

.nature-copy {
  display: grid;
  gap: 0.85rem;
}

.nature-copy h2 {
  max-width: 12ch;
}

.nature-copy p:not(.section-kicker) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.nature-copy .button {
  width: fit-content;
}

.nature-rail {
  display: flex;
  gap: 0.9rem;
  margin-inline: -1rem;
  padding: 0.2rem 1rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(200, 164, 106, 0.5) transparent;
}

.nature-card {
  flex: 0 0 min(82vw, 21rem);
  display: grid;
  grid-template-rows: 12.5rem 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: transform var(--motion-smooth), border-color var(--motion-smooth), box-shadow var(--motion-smooth);
}

.nature-card > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.nature-card p {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nature-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.nature-card span:not(.nature-scene) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.nature-scene {
  position: relative;
  display: block;
  min-height: 12.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 232, 169, 0.88), transparent 12%),
    linear-gradient(145deg, rgba(15, 15, 15, 0.18), transparent 36%),
    linear-gradient(120deg, #1e2418 0%, #5f6a43 45%, #d8c3a5 100%);
}

.nature-scene::before,
.nature-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nature-scene::before {
  background:
    repeating-linear-gradient(102deg, rgba(30, 36, 24, 0.62) 0 0.15rem, transparent 0.15rem 1.9rem),
    radial-gradient(ellipse at 50% 112%, rgba(15, 15, 15, 0.76), transparent 38%);
  mix-blend-mode: multiply;
  opacity: 0.66;
}

.nature-scene::after {
  background:
    linear-gradient(0deg, rgba(15, 15, 15, 0.42), transparent 46%),
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.26) 48%, transparent 58%);
  transform: translateX(-24%);
  animation: panel-aura 9s ease-in-out infinite;
}

.nature-palava .nature-scene {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 214, 142, 0.9), transparent 14%),
    linear-gradient(160deg, rgba(15, 15, 15, 0.2), transparent 44%),
    linear-gradient(12deg, #3f4a2f 0 22%, transparent 22% 100%),
    linear-gradient(-8deg, #6f7446 0 34%, transparent 34% 100%),
    linear-gradient(130deg, #1e2418 0%, #b08a57 54%, #f3eee7 100%);
}

.nature-palava .nature-scene::before {
  background:
    repeating-linear-gradient(84deg, rgba(243, 238, 231, 0.2) 0 0.1rem, transparent 0.1rem 1.1rem),
    radial-gradient(ellipse at 45% 105%, rgba(30, 36, 24, 0.62), transparent 34%);
}

.nature-konopiste .nature-scene {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 226, 170, 0.82), transparent 13%),
    linear-gradient(0deg, rgba(30, 36, 24, 0.72), transparent 46%),
    linear-gradient(125deg, #11150f 0%, #47543a 48%, #d8c3a5 100%);
}

.nature-konopiste .nature-scene::before {
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(15, 15, 15, 0.78) 22% 27%, transparent 27% 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.68) 0 22%, transparent 22%),
    repeating-linear-gradient(98deg, rgba(15, 15, 15, 0.5) 0 0.13rem, transparent 0.13rem 1.6rem);
}

.session-info {
  display: grid;
  gap: 1.6rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.session-info h2 {
  max-width: 16ch;
  margin-bottom: 0;
  line-height: 1.08;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.session-grid article {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.session-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.session-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-copy p:not(.section-kicker),
.about-quote p:not(.signature) {
  max-width: 36rem;
  color: var(--text);
}

.about-copy h2 {
  max-width: 23ch;
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.portrait-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 900ms ease, filter 900ms ease;
}

.about-quote {
  margin-top: 1.7rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.quote-mark {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
}

.signature {
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--script);
  font-size: 2.4rem;
  line-height: 1;
}

.section-heading-row {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.section-heading-row h2,
.areas-panel h2 {
  margin-bottom: 0;
  max-width: 42rem;
}

.section-heading-row p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.path-intro {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.path-intro h2 {
  max-width: 38rem;
  margin-bottom: 0;
}

.process-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.4rem;
}

.process-line article {
  position: relative;
  padding: 1.3rem 1.2rem 1.3rem 4.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.process-line span {
  position: absolute;
  left: 0;
  top: 1.3rem;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--cream);
  background: var(--olive);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.process-line p,
.areas-grid p,
.booking-notes p {
  color: var(--muted);
}

.path-line article {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.path-line h3,
.path-line p {
  margin-bottom: 0;
}

.path-cta {
  justify-self: center;
  width: fit-content;
  margin-top: 0.8rem;
}

@media (max-width: 47.99rem) {
  .path-line article {
    justify-items: center;
    padding: 1.4rem;
    text-align: center;
  }

  .path-line span {
    position: static;
    margin-bottom: 0.25rem;
  }
}

.path-step-label {
  color: var(--gold) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-video {
  overflow: hidden;
}

.project-video-shell {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}

.project-video-copy {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: min(100%, 36rem);
  text-align: center;
}

.project-video-copy h2 {
  max-width: 18ch;
  margin-bottom: 0;
}

.project-video-copy p:not(.section-kicker) {
  max-width: 43ch;
  margin: 0;
  color: var(--muted);
}

.youtube-frame {
  position: relative;
  width: min(100%, 58rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 106, 0.32);
  border-radius: var(--radius-soft);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-frame-short {
  width: min(100%, 17.5rem);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.project-video-copy .button {
  width: min(100%, 31rem);
}

.project-video-actions {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 31rem);
}

.project-video-actions .button {
  width: 100%;
}

.project-video-actions .button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.project-video-actions .button-gold:hover,
.project-video-actions .button-gold:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.seven-day {
  color: var(--text);
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.seven-day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
}

.seven-day-media {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  align-content: center;
}

.seven-day-copy {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.seven-day-copy h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.seven-day-copy p:not(.section-kicker) {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
}

.seven-day-price {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  padding-top: 0.15rem;
}

.seven-day-price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.seven-day-price span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seven-day-actions {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 31rem);
}

.seven-day-actions .button {
  width: 100%;
}

.seven-day-actions .button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.seven-day-actions .button-gold:hover,
.seven-day-actions .button-gold:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.journal-mockup {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: clamp(1rem, 4vw, 1.4rem);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.journal-cover {
  display: grid;
  align-content: end;
  min-height: 18rem;
  padding: 1.25rem;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.12), rgba(15, 15, 15, 0.76)),
    url("/assets/hero-path.jpg") center / cover no-repeat;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.journal-cover span {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journal-cover strong {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.journal-cover p {
  max-width: 16rem;
  margin: 0.8rem 0 0;
  color: rgba(243, 238, 231, 0.82);
}

.journey-days-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.25rem);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.journey-days-card h3,
.journey-days-card p {
  margin: 0;
}

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

.day-list li {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.72rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.day-list li:first-child {
  border-top: 0;
}

.day-list span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-list .is-free-day {
  grid-template-columns: 4.4rem minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.72rem 0;
}

.day-list .is-free-day strong {
  font: inherit;
}

.day-list .is-free-day em {
  justify-self: end;
  margin-right: 0.95rem;
  padding: 0.42rem 0.62rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-price-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: linear-gradient(135deg, rgba(200, 164, 106, 0.2), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(200, 164, 106, 0.34);
  border-radius: var(--radius-soft);
}

.journey-price-note p {
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.journey-price-badge {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.9rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius-soft);
  box-shadow: rgba(30, 36, 24, 0.14) 0 10px 24px;
  font-size: 0.88rem;
  line-height: 1;
  text-transform: uppercase;
}

.journey-modes {
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.journey-modes > p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  line-height: 1.12;
}

.journey-modes > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.journey-modes article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.journey-modes article:first-child {
  border-top: 0;
}

.journey-modes h3 {
  margin: 0;
  font-size: 1.3rem;
}

.journey-modes .button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.journey-modes .button-gold:hover,
.journey-modes .button-gold:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.areas-panel {
  display: grid;
  gap: 1.8rem;
  margin-top: 4.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--line);
}

.areas-panel > div:first-child p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 0;
  background: transparent;
  border: 0;
}

.areas-grid article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.8rem;
  align-items: start;
  min-height: 0;
  padding: 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.areas-grid h3,
.areas-grid p {
  margin-bottom: 0;
}

.deep-cta {
  overflow: hidden;
}

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

.cta-copy {
  max-width: 48rem;
}

.cta-copy h2 {
  max-width: 13ch;
}

.cta-copy p {
  max-width: 38rem;
  color: rgba(243, 238, 231, 0.74);
}

.seed-panel {
  position: relative;
  min-height: 21rem;
  padding: 1.4rem;
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 164, 106, 0.22), transparent 26%),
    linear-gradient(112deg, rgba(15, 15, 15, 0.98) 0%, rgba(30, 36, 24, 0.94) 38%, rgba(200, 164, 106, 0.55) 66%, rgba(243, 238, 231, 0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 231, 0.16), 0 1.6rem 4.5rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
  animation: panel-breathe 9s ease-in-out infinite;
}

.seed-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.38;
  pointer-events: none;
}

.seed-panel::after {
  content: "";
  position: absolute;
  inset: -34%;
  background: var(--warm-aura);
  opacity: 0.5;
  transform: rotate(0deg) scale(1);
  animation: panel-aura 10s ease-in-out infinite;
  pointer-events: none;
}

.cta-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0.8rem;
  min-height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-path li {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 4.85rem;
  padding: 1rem 1rem 1rem 4.6rem;
  color: var(--cream);
  background: rgba(15, 15, 15, 0.58);
  border-radius: var(--radius-soft);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 231, 0.16);
  transition: background var(--motion-smooth), box-shadow var(--motion-smooth), color var(--motion-smooth), transform var(--motion-smooth);
}

.cta-path li:nth-child(2) {
  background: rgba(30, 36, 24, 0.58);
}

.cta-path li:nth-child(3) {
  color: var(--ink);
  background: rgba(243, 238, 231, 0.9);
  box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.12);
}

.cta-path span {
  position: absolute;
  left: 1rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: var(--cream);
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid rgba(243, 238, 231, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  line-height: 1;
  transform: translateY(-50%);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.cta-path li:nth-child(2) span {
  color: var(--ink);
  background: radial-gradient(circle at 35% 28%, #f3eee7, #c8a46a 46%, #806d45 100%);
  border-color: rgba(200, 164, 106, 0.9);
  animation: node-pulse 5.5s ease-in-out infinite;
}

.cta-path li:nth-child(3) span {
  color: var(--ink);
  background: var(--cream);
  border-color: rgba(15, 15, 15, 0.26);
}

.cta-path strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 0 1.2rem 4.5rem;
  border-top: 1px solid var(--line-dark);
}

.trust-row div {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.trust-row .line-icon {
  grid-row: span 2;
}

.trust-row strong {
  color: var(--gold);
  text-transform: uppercase;
}

.trust-row p {
  margin: 0;
  color: rgba(243, 238, 231, 0.7);
  font-size: 0.9rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.booking-form-shell {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.booking-heading {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
}

.booking-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.booking-story {
  position: relative;
  overflow: hidden;
}

.booking-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(200, 164, 106, 0.22), transparent 30%),
    linear-gradient(140deg, rgba(15, 15, 15, 0.92), rgba(30, 36, 24, 0.96));
  pointer-events: none;
}

.booking-story-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: clamp(5.6rem, 12vw, 6.6rem);
  justify-items: center;
  text-align: center;
}

.booking-story-copy {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 42rem;
}

.booking-story-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.booking-story-copy p:not(.section-kicker) {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(243, 238, 231, 0.78);
}

.booking-story .button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.booking-story .button-gold:hover,
.booking-story .button-gold:focus-visible {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.booking-story-points {
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(200, 164, 106, 0.34);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 86% 18%, rgba(200, 164, 106, 0.24), transparent 32%),
    linear-gradient(145deg, var(--olive), #11140f);
  box-shadow: rgba(30, 36, 24, 0.16) 0 1.2rem 3rem;
  overflow: hidden;
}

.booking-story-points::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(243, 238, 231, 0.1);
  border-radius: calc(var(--radius-soft) - 2px);
  pointer-events: none;
}

.booking-story-points,
.booking-story-points div {
  position: relative;
}

.booking-story-points div {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1rem;
  text-align: center;
}

.booking-story-points div + div {
  border-top: 1px solid rgba(243, 238, 231, 0.16);
}

.booking-story-points .line-icon {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold);
}

.booking-story-points .shield::after {
  background: var(--olive);
}

.booking-story-points strong {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-story-points p {
  margin: 0;
  color: rgba(243, 238, 231, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-copy {
  display: grid;
  align-content: start;
  gap: 1.05rem;
  padding: 0;
}

.booking-copy h2 {
  max-width: 11ch;
}

.booking-intro {
  max-width: 36rem;
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.booking-offer article {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition: transform 220ms ease;
}

.booking-offer article:last-child {
  border-bottom: 1px solid var(--line);
}

.booking-offer strong {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.booking-offer small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.reservation-form {
  --field-height: 3.65rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-self: stretch;
  width: min(100%, 58rem);
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 238, 231, 0.62)),
    var(--paper);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--motion-smooth), box-shadow var(--motion-smooth), transform var(--motion-smooth);
}

.reservation-form label {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.reservation-form input:not([type="checkbox"]):not([type="hidden"]):not([type="radio"]),
.reservation-form textarea {
  display: block;
  width: 100%;
  min-height: var(--field-height);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color var(--motion-quick), box-shadow var(--motion-quick), background var(--motion-quick);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 7.4rem;
}

.field-error {
  color: #8c2f20;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.4;
}

.reservation-form input:not([type="checkbox"]):not([type="hidden"]):not([type="radio"]):focus,
.reservation-form textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.16);
}

.date-picker {
  position: relative;
  display: block;
  min-height: var(--field-height);
}

.date-display {
  height: var(--field-height);
  cursor: pointer;
  caret-color: transparent;
}

.date-display.is-invalid {
  border-color: #8c2f20;
}

.date-picker-panel {
  position: absolute;
  display: block;
  z-index: 20;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(25rem, calc(100vw - 3rem));
  padding: 1rem;
  color: var(--ink);
  border: 1px solid rgba(200, 164, 106, 0.42);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 238, 231, 0.9)),
    var(--paper);
  box-shadow: 0 1.2rem 3rem rgba(15, 15, 15, 0.16);
}

.date-picker-panel[hidden] {
  display: none;
}

.calendar-head,
.calendar-weekdays,
.calendar-grid,
.time-slots {
  display: grid;
}

.calendar-head {
  grid-template-columns: 2.35rem 1fr 2.35rem;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.calendar-head strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav,
.calendar-day,
.time-slot {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: background var(--motion-quick), border-color var(--motion-quick), color var(--motion-quick), transform var(--motion-quick);
}

.calendar-nav {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold);
  border-color: var(--line);
  font-size: 1.5rem;
  line-height: 1;
}

.calendar-nav:hover:not(:disabled),
.calendar-day:hover:not(:disabled),
.time-slot:hover:not(:disabled) {
  border-color: rgba(200, 164, 106, 0.58);
  background: rgba(200, 164, 106, 0.12);
  transform: translateY(-1px);
}

.calendar-nav:disabled,
.calendar-day:disabled,
.time-slot:disabled {
  color: rgba(103, 98, 88, 0.36);
  cursor: not-allowed;
  opacity: 0.55;
}

.calendar-weekdays,
.calendar-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-day.is-today {
  color: var(--olive);
  border-color: rgba(200, 164, 106, 0.42);
}

.calendar-day.is-selected,
.time-slot.is-selected {
  color: var(--paper);
  border-color: var(--olive);
  background: var(--olive);
}

.time-slots {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.time-slot {
  min-height: 2.15rem;
  padding: 0.35rem 0.4rem;
  border-color: var(--line);
  font-size: 0.74rem;
  font-weight: 700;
}

.request-field,
.topic-field {
  display: grid;
  gap: 0.75rem;
  margin: 0.15rem 0 0;
  border: 0;
}

.topic-field {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.request-field {
  padding: 0 0 0.2rem;
}

.request-field legend,
.topic-field legend {
  float: left;
  width: 100%;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.request-options,
.topic-options {
  clear: both;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.request-options label,
.topic-options label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  gap: 0.55rem;
  min-height: 2.55rem;
  padding: 0.55rem 0.65rem;
  color: var(--text);
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background var(--motion-quick), border-color var(--motion-quick), transform var(--motion-quick);
}

.request-options label {
  min-height: 4.45rem;
  padding: 0.72rem 0.75rem;
}

.request-options strong,
.request-options small {
  display: block;
}

.request-options strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.28;
}

.request-options small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.request-options input,
.topic-options input {
  width: 1rem;
  height: 1rem;
  min-height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--olive);
}

.request-options label:has(input:checked),
.topic-options label:has(input:checked) {
  border-color: rgba(200, 164, 106, 0.58);
  background: rgba(200, 164, 106, 0.12);
}

.consent {
  grid-template-columns: 1.2rem 1fr !important;
  align-items: start;
  gap: 0.7rem !important;
}

.consent input {
  min-height: 1.1rem;
  margin-top: 0.2rem;
}

.consent a {
  color: var(--olive);
  text-decoration-color: rgba(200, 164, 106, 0.72);
  text-underline-offset: 0.18em;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.booking-notes {
  display: grid;
  gap: 0;
  padding-top: 0.4rem;
}

.booking-notes div {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 0 0.8rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.booking-notes .line-icon {
  grid-row: span 2;
}

.booking-notes strong {
  color: var(--olive);
  text-transform: uppercase;
}

.booking-notes p {
  margin: 0;
}

.finish-video {
  overflow: hidden;
}

.finish-video-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}

.finish-video-copy {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.finish-video-copy h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.finish-video-copy p:not(.section-kicker) {
  max-width: 38rem;
  margin: 0;
  color: rgba(243, 238, 231, 0.72);
}

.video-page .site-header {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.video-series {
  padding-top: 5.5rem;
}

.video-series-shell {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.video-series-intro {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.video-series-intro h1 {
  max-width: 13ch;
  margin: 0;
}

.video-series-intro p:not(.section-kicker) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.video-series-grid {
  display: grid;
  gap: 1rem;
}

.video-series-card {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.48);
}

.video-series-copy {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 34rem);
  text-align: center;
}

.video-series-copy > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--cream);
  background: var(--olive);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.video-series-copy h2 {
  max-width: 14ch;
  margin: 0;
}

.video-series-copy p:not(.section-kicker) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.video-series-copy .button {
  width: min(100%, 20rem);
}

.video-series-card .youtube-frame-short {
  width: min(100%, 17.5rem);
}

.video-series-cta-shell {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.video-series-cta-shell h2 {
  max-width: 15ch;
  margin: 0;
}

.video-series-cta-shell p:not(.section-kicker) {
  max-width: 41rem;
  margin: 0;
  color: rgba(243, 238, 231, 0.72);
}

.video-series-cta-shell .button {
  width: min(100%, 20rem);
}

.first-day {
  padding-top: 5.5rem;
}

.first-day-shell,
.first-day-copy {
  display: grid;
  justify-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
}

.first-day-copy {
  max-width: min(100%, 78rem);
  gap: 0.95rem;
}

.first-day-copy h1 {
  max-width: none;
  margin: 0;
}

.first-day-copy p:not(.section-kicker) {
  max-width: min(100%, 74rem);
  margin: 0;
  color: var(--muted);
}

.first-day-grid {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
}

.first-day-grid > .youtube-frame {
  width: min(100%, 48rem);
}

.first-day-download {
  display: grid;
  justify-items: center;
  width: 100%;
}

.first-day-download .button {
  width: min(100%, 24rem);
}

.first-day-download .button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.first-day-download .button-gold:hover,
.first-day-download .button-gold:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.simpleshop-panel {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px dashed rgba(200, 164, 106, 0.62);
  border-radius: var(--radius-soft);
  background: rgba(200, 164, 106, 0.1);
  text-align: center;
}

.simpleshop-panel h3,
.simpleshop-panel p {
  margin: 0;
}

.simpleshop-panel p:not(.section-kicker) {
  max-width: 36rem;
  color: var(--muted);
}

.order-page {
  min-height: 72vh;
  padding-top: 5.5rem;
}

.order-page-shell,
.order-page-copy,
.simpleshop-embed-placeholder {
  display: grid;
  justify-items: center;
  text-align: center;
}

.order-page-shell {
  gap: clamp(1.6rem, 4vw, 3rem);
}

.order-page-copy {
  max-width: 46rem;
  gap: 0.95rem;
}

.order-page-copy h1,
.order-page-copy p {
  margin: 0;
}

.order-page-copy p:not(.section-kicker) {
  color: var(--muted);
}

.simpleshop-embed-placeholder {
  width: min(100%, 48rem);
  gap: 0.75rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px dashed rgba(200, 164, 106, 0.68);
  border-radius: var(--radius-soft);
  background: rgba(200, 164, 106, 0.09);
  box-shadow: var(--shadow-soft);
}

.simpleshop-embed-placeholder h2,
.simpleshop-embed-placeholder p {
  margin: 0;
}

.simpleshop-embed-placeholder p:not(.section-kicker) {
  max-width: 35rem;
  color: var(--muted);
}

@media (max-width: 47.99rem) {
  .about-copy,
  .seven-day-copy,
  .journey-modes,
  .cta-copy,
  .finish-video-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .about-copy h2,
  .about-copy p:not(.section-kicker),
  .about-quote,
  .about-quote p:not(.signature),
  .seven-day-copy h2,
  .seven-day-copy p:not(.section-kicker),
  .cta-copy h2,
  .cta-copy p,
  .finish-video-copy h2,
  .finish-video-copy p:not(.section-kicker) {
    margin-inline: auto;
  }

  .seven-day-price,
  .seven-day-actions,
  .journey-modes > div,
  .journey-modes article {
    justify-items: center;
    text-align: center;
  }

  .journey-modes article {
    grid-template-columns: 1fr;
  }

  .day-list .is-free-day {
    grid-template-columns: 4.4rem minmax(0, 1fr);
  }

  .day-list .is-free-day em {
    grid-column: 2;
    justify-self: start;
    margin-right: 0;
  }

  .journey-price-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .journey-price-badge {
    width: 100%;
  }

  .seven-day-copy .button,
  .cta-copy .button,
  .finish-video-copy .button {
    align-self: center;
    justify-content: center;
    width: min(100%, 20rem);
  }
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--olive);
  border: 1px solid rgba(30, 36, 24, 0.18);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #8c2f20;
  border-color: rgba(140, 47, 32, 0.22);
  background: rgba(140, 47, 32, 0.06);
}

@media (hover: hover) {
  .pillars-grid article:hover,
  .areas-grid article:hover,
  .session-grid article:hover,
  .process-line article:hover,
  .nature-card:hover {
    border-color: rgba(200, 164, 106, 0.42);
    transform: translateY(-0.18rem);
  }

  .journey-node:hover {
    border-color: rgba(200, 164, 106, 0.72);
    transform: translateY(-0.12rem);
  }

  .pillars-grid article:hover .line-icon,
  .areas-grid article:hover .line-icon,
  .booking-notes div:hover .line-icon,
  .booking-offer article:hover .line-icon,
  .trust-row div:hover .line-icon {
    transform: translateY(-0.12rem) scale(1.04);
  }

  .booking-offer article:hover {
    transform: translateX(0.18rem);
  }

  .reservation-form:hover {
    border-color: rgba(200, 164, 106, 0.36);
    box-shadow: 0 1.8rem 5rem rgba(30, 36, 24, 0.11);
  }

  .topic-options label:hover {
    border-color: rgba(200, 164, 106, 0.34);
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
  }

  .nature-card:hover {
    box-shadow: 0 1.5rem 3rem rgba(30, 36, 24, 0.12);
  }

  .portrait-card:hover img {
    transform: scale(1.018);
    filter: saturate(1.03);
  }

  .cta-path li:hover {
    transform: translateX(0.28rem);
    box-shadow: inset 0 0 0 1px rgba(200, 164, 106, 0.4);
  }

  .cta-path li:hover span {
    box-shadow: 0 0 0 0.36rem rgba(200, 164, 106, 0.12);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes shade-breathe {
  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 1;
  }
}

@keyframes quiet-sweep {
  0%,
  100% {
    transform: translateX(-28%);
    opacity: 0.24;
  }

  48% {
    transform: translateX(22%);
    opacity: 0.55;
  }
}

@keyframes draw-journey {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes panel-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(243, 238, 231, 0.16), 0 1.6rem 4.5rem rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(200, 164, 106, 0.24), 0 1.9rem 5.4rem rgba(0, 0, 0, 0.2);
  }
}

@keyframes panel-aura {
  0%,
  100% {
    transform: rotate(-8deg) scale(0.95);
    opacity: 0.34;
  }

  50% {
    transform: rotate(10deg) scale(1.06);
    opacity: 0.56;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 164, 106, 0.2);
  }

  50% {
    box-shadow: 0 0 0 0.42rem rgba(200, 164, 106, 0.12);
  }
}

.site-footer {
  padding: 2.2rem 1.2rem;
  text-align: center;
}

.footer-grid,
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.footer-grid {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-links {
  padding: 1.3rem 0 0.9rem;
  color: var(--gold);
}

.site-footer p {
  margin: 0;
  color: rgba(243, 238, 231, 0.72);
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 0.7rem !important;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-page {
  min-height: 100vh;
  padding: 6rem 1.2rem;
  color: var(--text);
  background: var(--paper);
}

.legal-page main {
  width: min(100%, 48rem);
  margin: 0 auto;
}

.legal-page a {
  color: var(--olive);
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .site-header {
    padding: 1.1rem 2rem;
  }

  .hero-inner,
  .section-shell,
  .pillars-grid,
  .trust-row,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  h1 {
    max-width: 45rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .hero-claim {
    max-width: 32rem;
    font-size: 1.2rem;
  }

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

  .pillars-grid article {
    border-right: 1px solid var(--line);
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.9fr);
    gap: 3rem;
  }

  .nature-rail {
    margin-inline: 0;
    padding-inline: 0;
  }

  .nature-card {
    flex-basis: 21.5rem;
  }

  .cta-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.8fr);
  }

  .project-video-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(15rem, 0.52fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  .project-video-shell .youtube-frame-short {
    justify-self: center;
    width: min(100%, 18.5rem);
  }

  .project-video-copy {
    justify-items: center;
    text-align: center;
  }

  .project-video-actions {
    justify-self: center;
  }

  .video-series {
    padding-top: 6.5rem;
  }

  .video-series-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(15rem, 0.5fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    justify-items: stretch;
    padding: clamp(1.2rem, 3vw, 2rem);
  }

  .video-series-card:nth-child(even) .video-series-copy {
    order: 2;
  }

  .video-series-copy {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .video-series-card:nth-child(even) .youtube-frame-short {
    order: 1;
  }

  .video-series-card .youtube-frame-short {
    justify-self: center;
    width: min(100%, 18.5rem);
  }

  .portrait-card img {
    aspect-ratio: 4 / 4.55;
  }

  .process-line {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
  }

  .offer-flow .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seven-day-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
    gap: 2.5rem;
  }

  .seven-day-copy {
    justify-items: center;
    text-align: center;
  }

  .seven-day-copy h2,
  .seven-day-copy p:not(.section-kicker) {
    margin-inline: auto;
  }

  .first-day {
    padding-top: 6.5rem;
  }

  .first-day-grid {
    gap: 1.25rem;
  }

  .finish-video-shell {
    grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 1fr);
    gap: 2.6rem;
  }

  .journey-modes {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr) max-content;
    align-items: center;
  }

  .journey-modes > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-modes article {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 1rem;
    text-align: center;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .journey-modes article:first-child {
    border-left: 0;
  }

  .process-line article {
    padding: 3.1rem 1rem 0.4rem;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    text-align: center;
  }

  .process-line article:last-child {
    border-right: 0;
  }

  .process-line span {
    left: 50%;
    top: -3.3rem;
    transform: translateX(-50%);
  }

  .reservation-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.4rem;
  }

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

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

  .request-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-story-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1fr);
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .booking-story-copy {
    justify-items: start;
  }

  .booking-story-copy h2 {
    max-width: 13ch;
  }

  .booking-story-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: center;
  }

  .booking-story-points div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.15rem;
  }

  .booking-story-points .line-icon {
    grid-row: auto;
  }

  .booking-story-points p {
    grid-column: auto;
  }

  .booking-story-points div + div {
    border-top: 0;
    border-left: 1px solid rgba(243, 238, 231, 0.16);
  }

  .booking-grid {
    grid-template-columns: minmax(20rem, 0.86fr) minmax(0, 1.14fr);
    gap: 2.4rem;
  }

  .form-wide {
    grid-column: 1 / -1;
  }

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

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}

@media (min-width: 64rem) {
  .first-day-copy h1,
  .first-day-copy p:not(.section-kicker) {
    white-space: nowrap;
  }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .hero-media {
    background:
      linear-gradient(90deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.84) 44%, rgba(15, 15, 15, 0.28) 75%, rgba(15, 15, 15, 0.44) 100%),
      url("/assets/jan-dark.jpg") 18% center / cover no-repeat;
  }

  .hero h1 {
    max-width: 33rem;
    font-size: clamp(3.7rem, 7vw, 4.2rem);
  }

  .hero-claim {
    max-width: 29rem;
  }
}

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 2.5rem;
    padding: 0.7rem 0.9rem;
  }

  .nav-cta {
    padding-inline: 1rem !important;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(15, 15, 15, 0.99) 0%, rgba(15, 15, 15, 0.92) 32%, rgba(15, 15, 15, 0.36) 64%, rgba(15, 15, 15, 0.52) 100%),
      url("/assets/jan-dark.jpg") 92% center / auto 108% no-repeat;
  }

  .nature-grid {
    grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .nature-card {
    flex-basis: 22rem;
  }

  .program-journey {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
  }

  .journey-stage {
    width: min(100%, 74rem);
    min-height: clamp(8.5rem, 12vw, 10rem);
    padding: 0;
    background: transparent;
  }

  .journey-stage::before {
    display: none;
  }

  .journey-line {
    position: absolute;
    inset: 1.3rem 1.4rem;
    display: block;
    width: calc(100% - 2.8rem);
    height: calc(100% - 2.6rem);
    pointer-events: none;
  }

  .journey-line path {
    fill: none;
    stroke-linecap: round;
    stroke-width: 1.1;
  }

  .journey-line-base {
    stroke: rgba(15, 15, 15, 0.16);
  }

  .journey-line-progress {
    stroke: rgba(15, 15, 15, 0.72);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw-journey 1.35s ease-out forwards;
  }

  .journey-node {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.42rem;
    width: min-content;
    min-width: 6.6rem;
    min-height: 5.7rem;
    padding: 0;
    color: var(--ink);
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translate(-50%, 50%);
  }

  .journey-node:hover {
    transform: translate(-50%, calc(50% - 0.12rem));
  }

  .journey-node span {
    width: 3.25rem;
    height: 3.25rem;
    background: var(--cream);
    box-shadow: 0 0 0 0.55rem rgba(251, 250, 246, 0.62);
  }

  .journey-node.is-active {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .journey-node.is-active span {
    color: var(--cream);
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 0 0 0.55rem rgba(15, 15, 15, 0.08);
  }

  .journey-node strong {
    width: max-content;
    max-width: 10rem;
    color: inherit;
  }

  .journey-node-1 {
    left: 8%;
    bottom: 50%;
  }

  .journey-node-2 {
    left: 36%;
    bottom: 50%;
  }

  .journey-node-3 {
    left: 62%;
    bottom: 50%;
  }

  .journey-node-4 {
    left: 88%;
    bottom: 50%;
  }

  .journey-detail {
    min-height: 11rem;
    align-content: center;
    padding: 0.2rem 0 0;
  }

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

  .pillars-grid article {
    display: block;
    padding: 1.8rem;
    text-align: center;
    border-bottom: 0;
  }

  .pillars-grid .line-icon {
    margin-bottom: 1rem;
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.62fr);
  }

  .areas-panel {
    grid-template-columns: minmax(20rem, 0.58fr) minmax(0, 1fr);
    align-items: start;
  }

  .session-info {
    grid-template-columns: minmax(20rem, 0.58fr) minmax(0, 1fr);
    align-items: start;
  }

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

  .areas-grid article {
    text-align: left;
  }

  .areas-grid .line-icon {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
