:root {
  --blue: #2f4967;
  --blue-dark: #18334c;
  --blue-deep: #10263a;
  --turquoise: #18b7b3;
  --turquoise-dark: #0e8683;
  --ink: #101820;
  --muted: #6a7480;
  --sand: #f4efe6;
  --aqua: #8ab8c9;
  --paper: #ffffff;
  --soft: #f7f5f0;
  --font-sans: Lato, Arial, sans-serif;
  --font-display: Lato, Arial, sans-serif;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.8;
}

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  clip: auto;
  background: var(--paper);
}

.container {
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
}

.container--narrow {
  max-width: 980px;
}

.section {
  padding: 86px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--turquoise-dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  max-width: none;
  align-items: end;
  text-align: left;
}

.section-head--split h2 {
  text-align: left;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 38, 58, 0.12);
  box-shadow: 0 12px 32px rgba(16, 38, 58, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  align-items: center;
  min-height: 58px;
  padding-left: clamp(18px, 4vw, 56px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 5px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__menu,
.nav__menu ul {
  display: flex;
  gap: clamp(18px, 2.3vw, 34px);
  align-items: center;
  margin: 0;
  justify-content: center;
  padding: 0 24px;
  list-style: none;
}

.nav__menu ul {
  padding-left: 0;
}

.nav__menu a {
  display: block;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.2px;
  line-height: 58px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--turquoise-dark);
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav__menu a:hover::after,
.nav__menu a.is-active::after {
  transform: scaleX(1);
}

.nav__search,
.nav__toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 58px;
  border: 0;
  border-left: 1px solid #e7e9ed;
  background: transparent;
  cursor: pointer;
}

.nav__toggle {
  display: none;
}

.nav__search span {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: relative;
}

.nav__search span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 6px;
  height: 1.5px;
  background: var(--blue);
  transform: rotate(45deg);
  transform-origin: center;
}

.search-panel {
  display: none;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 5vw;
  border-top: 1px solid #e7e9ed;
}

.search-panel.is-open {
  display: flex;
}

.search-panel input {
  width: min(360px, 100%);
  padding: 9px 12px;
  border: 1px solid #d7dce3;
  font: inherit;
}

.search-panel button {
  border: 0;
  background: var(--turquoise-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 9px 16px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  background: url("../img/hero-surf.png") center 42% / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 58, 0.86), rgba(24, 183, 179, 0.22), rgba(244, 239, 230, 0.1)),
    linear-gradient(180deg, rgba(16, 38, 58, 0.22), rgba(16, 38, 58, 0.58)),
    rgba(38, 57, 82, 0.66);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 24px 48px;
  text-align: center;
  text-transform: uppercase;
}

.hero__brand {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 82px);
  font-weight: 300;
  letter-spacing: 10px;
  line-height: 1.1;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.4px;
}

.hero__claim {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: none;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  background: var(--turquoise);
  color: var(--blue-deep);
}

.button--quiet {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.button--outline {
  border-color: rgba(24, 183, 179, 0.5);
  color: var(--turquoise-dark);
}

.intro {
  border-top: 58px solid var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.intro-grid h2 {
  text-align: left;
}

.intro-lead {
  max-width: 430px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.intro-copy {
  border-left: 3px solid var(--turquoise);
  padding-left: 34px;
}

h2 {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
}

.intro p {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.8;
}

.approach {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(255, 255, 255, 0.96)),
    var(--sand);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.approach-grid article {
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 18px 48px rgba(16, 38, 58, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.approach-grid article:hover {
  border-color: rgba(24, 183, 179, 0.28);
  box-shadow: 0 22px 58px rgba(16, 38, 58, 0.12);
  transform: translateY(-3px);
}

.approach-grid article {
  padding: 30px;
}

.approach-grid h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.approach-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.home-paths {
  background: #fff;
}

.home-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-path {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  background: var(--blue-deep);
}

.home-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 38, 58, 0.16), rgba(16, 38, 58, 0.9)),
    var(--blue-deep);
  transition: background-color 180ms ease, opacity 180ms ease;
}

.home-path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0.74;
  transform: scale(1.01);
  transition: transform 220ms ease, opacity 220ms ease;
}

.home-path--travel::after {
  background-image: url("../img/hero-surf.png");
}

.home-path--online::after {
  background-image: url("../img/quote-surf.png");
}

.home-path--calendar::after {
  background-image: url("../img/pillar-entwicklung.jpg");
}

.home-path > * {
  position: relative;
  z-index: 1;
}

.home-path span {
  margin-bottom: 14px;
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.home-path strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.home-path small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.home-path:hover::after {
  opacity: 0.88;
  transform: scale(1.06);
}

.journey-preview {
  background:
    linear-gradient(180deg, #fff 0%, #fff 70%, var(--soft) 70%, var(--soft) 100%);
}

.journey-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 0;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 28px 70px rgba(16, 38, 58, 0.11);
}

.journey-preview__image {
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(16, 38, 58, 0.56), rgba(24, 183, 179, 0.16)),
    url("../img/quote-surf.png") center / cover no-repeat;
}

.journey-preview__copy {
  padding: clamp(34px, 5vw, 70px);
}

.journey-preview__copy h2 {
  text-align: left;
}

.journey-preview__copy p {
  margin: 0 0 24px;
  font-size: 19px;
  line-height: 1.8;
}

.pillars {
  padding-top: 70px;
  background: #fff;
  scroll-margin-top: 72px;
}

.philosophy-flow {
  display: grid;
  gap: 34px;
  margin-top: 44px;
}

.philosophy-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 22px 60px rgba(16, 38, 58, 0.08);
}

.philosophy-item[id] {
  scroll-margin-top: 72px;
}

.philosophy-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.philosophy-item:nth-child(even) .philosophy-item__media {
  order: 2;
}

.philosophy-item__media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: center / cover no-repeat;
}

.philosophy-item__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 38, 58, 0.62), rgba(24, 183, 179, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 38, 58, 0.42));
}

.philosophy-item__media--begegnung {
  background-image: url("../img/pillar-begegnung.jpg");
}

.philosophy-item__media--entwicklung {
  background-image: url("../img/pillar-entwicklung.jpg");
}

.philosophy-item__media--ueberwindung {
  background-image: url("../img/pillar-ueberwindung.jpg");
}

.philosophy-item__media span {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-sans);
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1;
}

.philosophy-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.philosophy-item__eyebrow {
  margin: 0 0 12px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.philosophy-item h3 {
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.16;
}

.philosophy-item p {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}

.quote-band {
  position: relative;
  padding: 70px 0 76px;
  background: url("../img/quote-surf.png") center / cover no-repeat;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 58, 0.96), rgba(16, 38, 58, 0.82), rgba(16, 38, 58, 0.68)),
    rgba(24, 183, 179, 0.18);
}

.quote-band .container {
  position: relative;
}

blockquote {
  width: min(880px, 100%);
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 38px);
  font-weight: 300;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(16, 38, 58, 0.5);
}

blockquote em {
  color: var(--turquoise);
  font-style: normal;
  font-weight: 700;
}

.contact {
  padding: 94px 0 110px;
  background: var(--soft);
}

.simple-overview {
  background: #fff;
  border-top: 1px solid rgba(16, 38, 58, 0.08);
  border-bottom: 1px solid rgba(16, 38, 58, 0.08);
}

.simple-overview__head {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.simple-overview__head h2 {
  margin: 0;
  text-align: left;
}

.overview-list {
  border-top: 1px solid rgba(16, 38, 58, 0.14);
}

.overview-list a {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 38, 58, 0.14);
  color: var(--blue-dark);
  text-decoration: none;
}

.overview-list span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.overview-list small {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.overview-list a:hover span {
  color: var(--turquoise-dark);
}

.subhero {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 58, 0.9), rgba(24, 183, 179, 0.18), rgba(47, 73, 103, 0.72)),
    url("../img/hero-surf.png") center / cover no-repeat;
}

.subhero--online {
  background-image:
    linear-gradient(90deg, rgba(16, 38, 58, 0.9), rgba(24, 183, 179, 0.18), rgba(47, 73, 103, 0.72)),
    url("../img/quote-surf.png");
}

.subhero--reisen,
.subhero--about {
  background-image:
    linear-gradient(90deg, rgba(16, 38, 58, 0.9), rgba(24, 183, 179, 0.18), rgba(47, 73, 103, 0.72)),
    url("../img/hero-surf.png");
}

.subhero--kalender {
  background-image:
    linear-gradient(90deg, rgba(16, 38, 58, 0.9), rgba(24, 183, 179, 0.18), rgba(47, 73, 103, 0.72)),
    url("../img/pillar-entwicklung.jpg");
}

.subhero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 7px;
  line-height: 1.05;
  text-transform: none;
}

.page-intro {
  background: #fff;
}

.page-intro__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.page-intro h2 {
  text-align: left;
}

.page-intro p:last-child {
  margin: 0;
  border-left: 3px solid var(--turquoise);
  padding-left: 34px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.75;
}

.module-band {
  background: var(--soft);
}

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

.module-card,
.event-item {
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 18px 48px rgba(16, 38, 58, 0.08);
}

.module-card {
  padding: 32px;
}

.module-card span,
.event-item time {
  display: block;
  margin-bottom: 22px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.module-card h3,
.event-item h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 25px;
  line-height: 1.2;
}

.module-card p,
.event-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.online-flow {
  background: #fff;
}

.online-flow__grid,
.online-feature__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.online-flow h2,
.online-feature h2 {
  text-align: left;
}

.online-flow__steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 38, 58, 0.14);
}

.online-flow__steps article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 38, 58, 0.14);
}

.online-flow__steps span {
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.online-flow__steps h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1.2;
}

.online-flow__steps p,
.online-feature__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.online-flow__steps p {
  grid-column: 2;
}

.online-feature {
  background: var(--blue-deep);
  color: #fff;
}

.online-feature h2 {
  color: #fff;
}

.online-feature__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.9);
}

.trip-feature {
  background: var(--soft);
}

.trip-feature__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 22px 60px rgba(16, 38, 58, 0.08);
}

.trip-feature__image {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(16, 38, 58, 0.56), rgba(24, 183, 179, 0.16)),
    url("../img/hero-surf.png") center / cover no-repeat;
}

.trip-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.trip-feature__copy h2 {
  text-align: left;
}

.trip-feature__copy p {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}

.trip-feature__copy .button {
  align-self: flex-start;
}

.travel-details {
  padding-top: 0;
  background: var(--soft);
}

.travel-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 38, 58, 0.12);
  border: 1px solid rgba(16, 38, 58, 0.12);
}

.travel-details article {
  padding: 30px;
  background: #fff;
}

.travel-details span,
.retreat-flow__list span {
  display: block;
  margin-bottom: 14px;
  color: var(--turquoise-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.travel-details strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.travel-details p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.retreat-flow {
  background: #fff;
}

.retreat-flow__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 38, 58, 0.14);
}

.retreat-flow__list article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 38px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(16, 38, 58, 0.14);
}

.retreat-flow__list h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.2;
}

.retreat-flow__list p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.included-section {
  background: var(--blue-deep);
  color: #fff;
}

.included-section h2 {
  color: #fff;
  text-align: left;
}

.included-section__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
}

.fit-section {
  background: #fff;
}

.fit-section__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.fit-section h2 {
  text-align: left;
}

.fit-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.fit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 38, 58, 0.14);
}

.fit-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 38, 58, 0.14);
}

.fit-list span {
  width: 16px;
  height: 3px;
  margin-top: 14px;
  background: var(--turquoise);
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 16px;
  height: 3px;
  background: var(--turquoise);
}

.event-list {
  display: grid;
  gap: 18px;
}

.calendar-section {
  background: var(--soft);
}

.event-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
}

.event-item time {
  margin: 0;
}

.event-type {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  background: rgba(24, 183, 179, 0.12);
  color: var(--turquoise-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-item a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;
}

.event-item a:hover {
  color: var(--blue-dark);
}

.calendar-note {
  background: #fff;
}

.about-story {
  background: var(--soft);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.about-story__quote {
  color: var(--blue-dark);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.14;
}

.about-story p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.8;
}

.values-section {
  background: #fff;
}

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

.values-grid article {
  padding: 30px;
  background: var(--soft);
  border-top: 3px solid var(--turquoise);
}

.values-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.values-grid h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1.24;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-method {
  background: var(--blue-deep);
  color: #fff;
}

.about-method__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.about-method h2 {
  color: #fff;
  text-align: left;
}

.about-method p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.contact h2 {
  margin-bottom: 0;
  text-transform: none;
  text-align: left;
}

.contact p {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
}

.contact a {
  color: var(--blue);
  text-decoration-thickness: 1px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 22px 60px rgba(16, 38, 58, 0.08);
}

.contact-panel__copy {
  border-left: 3px solid var(--turquoise);
  padding-left: 34px;
}

.contact-panel__copy .button {
  margin-top: 18px;
  color: var(--blue-deep);
  text-decoration: none;
}

.page-content h1 {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.page-content a {
  color: var(--blue);
}

.publii-page-body > :not(.section) {
  width: min(980px, calc(100% - 8vw));
  margin-right: auto;
  margin-left: auto;
}

.publii-page-body > p:first-child,
.publii-page-body > h2:first-child,
.publii-page-body > h3:first-child,
.publii-page-body > ul:first-child,
.publii-page-body > ol:first-child,
.page-featured-image {
  margin-top: 70px;
}

.publii-page-body > p:last-child,
.publii-page-body > ul:last-child,
.publii-page-body > ol:last-child {
  margin-bottom: 90px;
}

.publii-page-body > p,
.publii-page-body > ul,
.publii-page-body > ol {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}

.publii-page-body > h2,
.publii-page-body > h3 {
  text-align: left;
}

.page-content h2 {
  margin-top: 42px;
  text-align: left;
}

.page-content p,
.post-list p {
  font-size: 18px;
}

.page-content__image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 0 0 34px;
}

.post-meta {
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 1px;
}

.post-detail__image {
  margin-top: 70px;
}

.post-detail__image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.post-detail__image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.post-detail__body {
  padding: 70px 0 96px;
}

.post-detail__body > * {
  max-width: 100%;
}

.post-detail__body p,
.post-detail__body li {
  font-size: 18px;
  line-height: 1.82;
}

.post-detail__body h2,
.post-detail__body h3 {
  margin-top: 42px;
  text-align: left;
}

.impulse-post {
  display: grid;
  gap: 38px;
}

.impulse-post__lead {
  margin: 0 0 10px;
  padding-left: 28px;
  border-left: 3px solid var(--turquoise);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.55;
}

.impulse-intro,
.impulse-box {
  padding: clamp(28px, 4vw, 46px);
  background: var(--soft);
  border-top: 3px solid var(--turquoise);
}

.impulse-intro h2,
.impulse-box h2,
.impulse-practice h2 {
  margin-top: 0;
}

.impulse-quote {
  margin: 4px 0;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid rgba(26, 64, 96, 0.16);
  border-bottom: 1px solid rgba(26, 64, 96, 0.16);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.35;
}

.impulse-questions {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.impulse-questions li {
  position: relative;
  padding-left: 32px;
}

.impulse-questions li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 16px;
  height: 3px;
  background: var(--turquoise);
  content: "";
}

.impulse-practice {
  padding: clamp(28px, 4vw, 46px);
  background: var(--blue-deep);
  color: #fff;
}

.impulse-practice h2,
.impulse-practice p,
.impulse-practice li {
  color: inherit;
}

.impulse-practice p,
.impulse-practice li {
  color: rgba(255, 255, 255, 0.84);
}

.impulse-note {
  margin-top: 0;
  color: var(--muted);
  font-size: 16px;
}

.archive-description {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.archive-list {
  background: var(--soft);
}

.archive-list__grid {
  display: grid;
  gap: 24px;
}

.archive-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(16, 38, 58, 0.1);
  box-shadow: 0 18px 48px rgba(16, 38, 58, 0.08);
}

.archive-card__image {
  min-height: 260px;
  background: var(--blue-deep);
  overflow: hidden;
}

.archive-card__image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.archive-card:hover .archive-card__image img {
  transform: scale(1.04);
}

.archive-card__body {
  padding: clamp(28px, 4vw, 48px);
}

.archive-card__body h2 {
  margin: 0 0 14px;
  text-align: left;
}

.archive-card__body h2 a,
.archive-card__link {
  color: var(--blue-dark);
  text-decoration: none;
}

.archive-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.archive-card__link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--turquoise-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.author-hero {
  display: flex;
  gap: 28px;
  align-items: center;
}

.author-hero__avatar {
  width: 96px;
  height: 96px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.tags-overview {
  background: var(--soft);
}

.tags-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.tag-card {
  display: grid;
  min-height: 180px;
  align-content: end;
  padding: 28px;
  background: #fff;
  border-top: 3px solid var(--turquoise);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(16, 38, 58, 0.08);
}

.tag-card span {
  margin-bottom: 24px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.tag-card strong {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.tag-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.search-page {
  background: #fff;
}

.search-page input[type="search"],
.search-page input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 38, 58, 0.18);
  font: inherit;
}

.search-page button,
.search-page input[type="submit"] {
  margin-top: 14px;
  border: 0;
  background: var(--turquoise);
  color: var(--blue-deep);
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: 1.8px;
  padding: 12px 18px;
  text-transform: uppercase;
}

.error-page {
  position: relative;
  display: grid;
  min-height: calc(100vh - 58px);
  place-items: center;
  overflow: hidden;
  background: url("../img/hero-surf.png") center / cover no-repeat;
}

.error-page__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 58, 0.94), rgba(16, 38, 58, 0.72)),
    rgba(24, 183, 179, 0.14);
}

.error-page__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.error-page h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
}

.error-page p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.7;
}

.post-list {
  display: grid;
  gap: 26px;
}

.post-list article {
  border-bottom: 1px solid #e7e9ed;
  padding-bottom: 24px;
}

.imprint-card {
  margin: 24px 0;
  padding: 28px;
  background: var(--soft);
  border-left: 4px solid var(--turquoise);
  color: var(--ink);
  font-style: normal;
  font-size: 19px;
  line-height: 1.75;
}

.footer {
  background: var(--blue-deep);
  color: #d9d9d9;
  padding: 34px 0;
  border-top: 4px solid var(--turquoise);
}

.footer__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer nav ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 42px;
  height: 40px;
  border: 0;
  background: #8f8f8f;
  cursor: pointer;
}

.back-to-top::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 15px auto 0;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
}

.back-to-top.is-visible {
  display: block;
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    min-height: 52px;
    padding-left: 18px;
  }

  .nav__logo {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--blue);
  }

  .nav__menu {
    position: absolute;
    top: 52px;
    left: 0;
    display: none;
    width: 100%;
    padding: 12px 24px 18px;
    background: #fff;
    border-top: 1px solid #e7e9ed;
  }

  .nav__menu ul {
    display: block;
    padding: 0;
  }

  .nav__menu.is-open {
    display: block;
  }

  .nav__menu a {
    line-height: 42px;
  }

  .nav__menu a::after {
    bottom: 8px;
    transform-origin: left;
  }

  .hero {
    min-height: 380px;
  }

  .hero__brand {
    letter-spacing: 5px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head--split,
  .intro-grid,
  .journey-preview__grid,
  .contact-panel,
  .page-intro__grid,
  .trip-feature__grid,
  .about-story__grid,
  .about-method__grid,
  .included-section__grid,
  .fit-section__grid,
  .online-flow__grid,
  .online-feature__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-copy,
  .contact-panel__copy {
    padding-left: 22px;
  }

  .intro {
    border-top-width: 42px;
  }

  .intro p {
    font-size: 18px;
  }

  .approach-grid,
  .module-grid,
  .home-paths__grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .journey-preview__image {
    min-height: 280px;
  }

  .simple-overview__head,
  .overview-list a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trip-feature__image {
    min-height: 280px;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

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

  .author-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .retreat-flow__list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .online-flow__steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .online-flow__steps p {
    grid-column: auto;
  }

  .philosophy-item,
  .philosophy-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .philosophy-item:nth-child(even) .philosophy-item__media {
    order: 0;
  }

  .philosophy-item__media {
    min-height: 260px;
  }

  .philosophy-item__body {
    padding: 28px;
  }

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

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .hero__brand {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .hero h1,
  .nav__menu a {
    letter-spacing: 2px;
  }

  h2 {
    font-size: 28px;
  }

  .intro p,
  .contact p {
    font-size: 17px;
  }

  blockquote {
    font-size: 27px;
  }
}
