@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --bg: #efe8dd;
  --bg-soft: #e7ddd0;
  --surface: rgba(248, 244, 237, 0.84);
  --surface-strong: #f4eee4;
  --surface-deep: #211c1a;
  --text: #231f1c;
  --text-soft: #5d564e;
  --text-light: #f5ede2;
  --line: rgba(49, 41, 35, 0.11);
  --line-strong: rgba(49, 41, 35, 0.2);
  --accent: #676253;
  --accent-deep: #4f4a3f;
  --moss: #4d554d;
  --forest: #272320;
  --shadow: 0 18px 42px rgba(29, 24, 20, 0.08);
  --shadow-soft: 0 8px 18px rgba(29, 24, 20, 0.05);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1160px, calc(100% - 48px));
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Source Sans 3", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html.prelaunch-locked body {
  overflow: hidden;
}

html.prelaunch-locked body > * {
  visibility: hidden;
}

html.prelaunch-locked body > .prelaunch-gate {
  visibility: visible;
}

body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 30%),
    radial-gradient(circle at bottom right, rgba(109, 100, 85, 0.07), transparent 28%),
    linear-gradient(180deg, #f4eee5 0%, #ece3d7 54%, #e5dacd 100%);
  line-height: 1.68;
}

.page-experiences {
  background:
    linear-gradient(180deg, #1a1614 0%, #241d1a 20rem, #efe6da 34rem, #e5dacd 100%);
}

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

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

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

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

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

.prelaunch-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 247, 237, 0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(110, 101, 88, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(23, 19, 17, 0.98), rgba(27, 22, 20, 0.98));
}

.prelaunch-gate__panel {
  width: min(100%, 520px);
  display: grid;
  gap: 22px;
  padding: 34px 32px 30px;
  border: 1px solid rgba(255, 242, 224, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(248, 242, 234, 0.08), rgba(248, 242, 234, 0.04));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  color: var(--text-light);
}

.prelaunch-gate__kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 238, 222, 0.72);
}

.prelaunch-gate__panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--text-light);
}

.prelaunch-gate__panel p {
  margin: 0;
  color: rgba(247, 238, 222, 0.74);
}

.prelaunch-gate__form {
  display: grid;
  gap: 14px;
}

.prelaunch-gate__label {
  display: grid;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 238, 222, 0.84);
}

.prelaunch-gate__input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 242, 224, 0.18);
  border-radius: 16px;
  background: rgba(248, 242, 234, 0.08);
  color: var(--text-light);
}

.prelaunch-gate__input::placeholder {
  color: rgba(247, 238, 222, 0.4);
}

.prelaunch-gate__input:focus {
  outline: none;
  border-color: rgba(247, 238, 222, 0.32);
  box-shadow: 0 0 0 4px rgba(247, 238, 222, 0.06);
}

.prelaunch-gate__submit {
  justify-self: start;
}

.prelaunch-gate__status {
  min-height: 1.4em;
  font-size: 0.88rem;
  color: rgba(230, 197, 145, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(241, 234, 223, 0.86);
  box-shadow: 0 10px 24px rgba(28, 23, 20, 0.04);
  backdrop-filter: blur(20px);
}

.site-header--overlay {
  position: fixed;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(24, 19, 18, 0.62), rgba(24, 19, 18, 0.14));
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header--overlay,
.site-header--overlay .site-nav,
.site-header--overlay .site-nav a {
  color: var(--text-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 2;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 54px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
  mix-blend-mode: multiply;
}

.site-header--overlay .brand__icon {
  mix-blend-mode: normal;
  filter: brightness(1.08) saturate(0.9);
}

.site-header--overlay .brand__wordmark {
  color: rgba(246, 238, 228, 0.98);
  text-shadow: 0 4px 18px rgba(13, 10, 10, 0.2);
}

.brand__wordmark {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: var(--forest);
  white-space: nowrap;
}

.site-header .brand__badge {
  width: 40px;
  height: 46px;
}

.site-header .brand__wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.brand--footer .brand__badge {
  width: 52px;
  height: 60px;
}

.brand--footer .brand__wordmark {
  font-size: 1.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header .button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.79rem;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.page-home {
  color: var(--text);
}

.page-home .site-header,
.page-home .site-nav,
.page-home .site-nav a {
  color: var(--text-light);
}

.page-home .brand__wordmark {
  color: rgba(246, 238, 228, 0.98);
  text-shadow: 0 4px 18px rgba(13, 10, 10, 0.2);
}

.hero,
.experience-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media,
.experience-hero__media,
.page-hero__image {
  position: absolute;
  inset: 0;
}

.hero__media img,
.experience-hero__media img,
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.experience-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 18, 18, 0.34) 0%, rgba(23, 18, 18, 0.28) 24%, rgba(23, 18, 18, 0.78) 100%);
}

.hero__content,
.experience-hero__content {
  position: relative;
  z-index: 1;
  padding: 208px 0 104px;
  color: var(--text-light);
}

.hero__content--compact {
  padding-top: 116px;
  padding-bottom: 84px;
}

.hero__kicker {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 244, 235, 0.75);
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.page-home .eyebrow,
.experience-hero .eyebrow,
.page-hero__inner--light .eyebrow {
  color: rgba(247, 238, 222, 0.88);
}

.page-home .hero .eyebrow {
  margin-bottom: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.6rem, 6.2vw, 6.6rem);
}

.page-home .hero h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.042em;
  text-shadow: 0 10px 28px rgba(12, 10, 10, 0.14);
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.42rem, 2vw, 1.92rem);
}

p {
  margin: 0;
}

.hero__lead,
.experience-hero__lead,
.page-hero__inner p {
  margin-top: 24px;
  max-width: 38rem;
  font-size: 1.12rem;
}

.page-home .hero__lead {
  margin-top: 18px;
  max-width: 31rem;
  font-size: 1rem;
  line-height: 1.6;
}

.hero__lead--keywords {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(245, 237, 227, 0.76);
  text-transform: none;
  line-height: 1.55;
}

.page-home .hero {
  min-height: 46svh;
  align-items: end;
}

.hero__actions,
.button-row,
.meta-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 28px;
}

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 76px 0;
}

#pieteikums {
  scroll-margin-top: 96px;
  padding-top: 36px;
  padding-bottom: 76px;
}

#pieteikums .section-heading--center {
  margin-bottom: 22px;
}

#pieteikums .panel {
  padding: 28px;
}

#pieteikums .contact-layout {
  gap: 22px;
}

#pieteikums .contact-points {
  margin-top: 22px;
  gap: 16px;
}

#pieteikums .contact-direct {
  margin-top: 28px;
  padding-top: 18px;
}

#pieteikums .inquiry-form {
  gap: 18px;
}

.page-home .showcase.section {
  padding-top: 52px;
}

.section--intro {
  position: relative;
  margin-top: -1px;
  background: linear-gradient(180deg, #f6f0e5 0%, #f2ecdf 100%);
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(248, 243, 235, 0.86), rgba(238, 230, 220, 0.92)),
    radial-gradient(circle at left, rgba(109, 101, 86, 0.1), transparent 36%);
}

.section--forest {
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(28, 24, 23, 0.62), rgba(28, 24, 23, 0.84)),
    url("../assets/images/module-placeholder.svg") center/cover no-repeat;
}

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

.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-subtitle {
  margin: 6px auto 0;
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.prose,
.comparison-list,
.cta-band__actions {
  display: grid;
  gap: 18px;
  align-content: start;
}

.prose p,
.comparison-list p,
.cta-band__actions p,
.feature__lede,
.page-hero__inner p,
.site-footer__note {
  color: var(--text-soft);
  max-width: 40rem;
}

.prose--light p {
  color: rgba(248, 244, 236, 0.82);
}

.grid {
  display: grid;
  gap: 32px;
}

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

.grid--gap-large {
  gap: 54px;
}

.feature {
  display: grid;
  align-items: center;
  gap: 42px;
}

.feature--split {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.feature--split .section-heading h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
}

.media-card,
.panel,
.info-card,
.step-card,
.experience-card,
.timeline__item {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature__content {
  display: grid;
  gap: 20px;
}

.concept-intro {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.88fr);
  gap: 48px;
}

.concept-intro .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.concept-intro .prose p {
  font-size: 1.04rem;
  line-height: 1.76;
}

.meta-row {
  gap: 12px 20px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.meta-row span {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.meta-row--light {
  color: rgba(248, 244, 236, 0.82);
}

.price-note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.concept-essay-grid {
  gap: 22px;
}

.cards-grid--experiences {
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
}

.comparison-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-list h3 {
  margin-bottom: 12px;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(246, 240, 232, 0.94), rgba(237, 228, 216, 0.9)),
    radial-gradient(circle at right, rgba(95, 88, 77, 0.12), transparent 28%);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.page-hero {
  position: relative;
  padding: 122px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(93, 86, 75, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(125, 117, 103, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(248, 242, 234, 0.96), rgba(237, 228, 216, 0.86));
}

.page-hero--slim {
  padding: 94px 0 26px;
}

.page-hero--quiet {
  background:
    radial-gradient(circle at top left, rgba(93, 86, 75, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(247, 241, 233, 0.96), rgba(238, 229, 217, 0.82));
}

.about-hero {
  overflow: hidden;
  border-bottom-color: rgba(49, 41, 35, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 250, 242, 0.68), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(116, 104, 89, 0.09), transparent 20%),
    radial-gradient(circle at 76% 72%, rgba(167, 148, 119, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(245, 239, 232, 0.98), rgba(236, 228, 217, 0.9));
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 188px), rgba(79, 74, 63, 0.05) calc(100% - 188px), rgba(79, 74, 63, 0.05) calc(100% - 187px), transparent calc(100% - 187px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 52px), rgba(79, 74, 63, 0.07) calc(100% - 52px), rgba(79, 74, 63, 0.07) calc(100% - 51px), transparent calc(100% - 51px));
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 1px solid rgba(79, 74, 63, 0.07);
  border-radius: 24px;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.74fr);
  align-items: end;
  gap: 38px;
  padding: 94px 0 24px;
}

.about-hero__heading {
  display: grid;
  align-content: end;
  min-height: 168px;
}

.about-hero__title {
  margin: 0;
  font-size: clamp(3.8rem, 5.8vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--forest);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.26);
}

.about-hero__title span {
  display: inline-block;
}

.about-hero__title span:last-child {
  font-style: italic;
  margin-left: 0.12em;
}

.about-hero__drawing {
  position: relative;
  width: min(340px, 100%);
  min-height: 168px;
  justify-self: end;
  border: 1px solid rgba(79, 74, 63, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(249, 244, 238, 0.68), rgba(238, 230, 220, 0.4)),
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.28), transparent 18%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.about-hero__drawing::before {
  content: "";
  position: absolute;
  inset: 22px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 44px, rgba(103, 98, 83, 0.16) 44px 45px, transparent 45px),
    radial-gradient(circle at 50% 50%, transparent 0 70px, rgba(103, 98, 83, 0.1) 70px 71px, transparent 71px),
    linear-gradient(90deg, transparent 0, transparent 58%, rgba(103, 98, 83, 0.16) 58%, rgba(103, 98, 83, 0.16) calc(58% + 1px), transparent calc(58% + 1px)),
    linear-gradient(180deg, transparent 0, transparent 76%, rgba(103, 98, 83, 0.12) 76%, rgba(103, 98, 83, 0.12) calc(76% + 1px), transparent calc(76% + 1px));
}

.about-hero__drawing::after {
  content: "";
  position: absolute;
  right: 52px;
  bottom: 42px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(103, 98, 83, 0.56);
}

.page-hero--image {
  min-height: 70svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero--compact {
  min-height: 52svh;
}

.page-hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 56px;
  padding: 128px 0 72px;
}

.page-hero__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero__col--body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 4px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 28px 0 0;
}

.page-hero--slim .page-hero__inner {
  gap: 10px;
  padding-top: 0;
}

.page-hero--slim .eyebrow {
  margin-bottom: 8px;
}

.page-hero--slim h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
  line-height: 0.95;
}

.page-hero--slim .page-note,
.page-hero--slim .page-hero__inner p:not(.eyebrow) {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.6;
}

.page-hero__inner--light {
  padding: 180px 0 92px;
  color: var(--text-light);
}

.page-hero__inner--light p:not(.eyebrow):not(.concept-hero__accent) {
  color: rgba(244, 236, 226, 0.82);
}

.concept-hero .page-hero__inner--light {
  padding: 100px 0 40px;
}

.concept-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.042em;
}

.concept-hero.page-hero--compact {
  min-height: 30svh;
}

.experiences-hero {
  padding-bottom: 0;
}

.experiences-hero.page-hero--compact {
  min-height: 34svh;
}

.experiences-hero h1 {
  font-size: clamp(2.45rem, 4.3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.042em;
}

.experiences-hero .page-hero__inner--light {
  padding: 108px 0 42px;
}

.concept-hero__accent {
  margin-top: 8px;
  max-width: 34rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 238, 222, 0.86);
}

.concept-inset {
  min-height: 100%;
}

.concept-intro .concept-inset {
  min-height: auto;
  max-width: 420px;
  justify-self: end;
}

.concept-intro .concept-inset img {
  min-height: 320px;
}

.concept-inset__caption {
  margin: 0;
  padding: 12px 18px 16px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(49, 41, 35, 0.52);
  font-style: italic;
}

.concept-aside {
  font-size: 0.88em;
  font-style: italic;
  color: rgba(49, 41, 35, 0.52);
  font-weight: 400;
}

.wanderseminar-word {
  font-family: var(--font-display);
  font-size: 1.45em;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--forest);
  line-height: 1;
}

.section--soft-center {
  padding-top: 86px;
  padding-bottom: 86px;
}

.elements-strip {
  position: relative;
  padding: 0 0 38px;
  margin-bottom: 32px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.38), transparent 42%);
}

.elements-strip--compact {
  padding-bottom: 24px;
  margin-bottom: 18px;
}

.elements-strip__title {
  position: relative;
  display: block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.035em;
  color: var(--forest);
  text-align: center;
  margin: 0 auto 12px;
  padding: 0 18px 24px;
  justify-self: center;
}

.elements-strip__intro {
  max-width: 42rem;
  margin: 0 auto 38px;
  color: var(--text-soft);
  font-size: 0.99rem;
  line-height: 1.78;
  text-align: center;
  text-wrap: balance;
}

.question-bridge {
  margin: 0 0 22px;
}

.question-bridge__content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 30px;
  align-items: start;
}

.question-bridge__body {
  display: grid;
  gap: 14px;
  }

.question-bridge h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.question-bridge .prose {
  gap: 12px;
}

.question-bridge__examples {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.question-bridge__group {
  display: grid;
  gap: 10px;
}

.question-bridge__label {
  padding-left: 10px;
  border-left: 2px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-bridge__label--universal {
  color: var(--forest);
  opacity: 0.6;
}

.question-bridge__label--team {
  color: var(--accent-deep);
}

.question-bridge .question-list {
  gap: 0;
}

.question-bridge .question-list__item p {
  font-size: 1.02rem;
  line-height: 1.28;
}

.question-bridge__actions {
  margin-top: 18px;
}

.question-bridge + .button-row .button--outline {
  background: rgba(210, 185, 155, 0.28);
  border-color: rgba(49, 41, 35, 0.26);
}

.question-bridge + .button-row .button--outline:hover {
  background: rgba(210, 185, 155, 0.48);
}

.concept-grid--bare .concept-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(249, 245, 239, 0.96), rgba(239, 231, 221, 0.72));
  border: 1px solid rgba(49, 41, 35, 0.09);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(29, 24, 20, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  gap: 0;
  justify-items: start;
  text-align: left;
}

.elements-strip .concept-grid {
  gap: 16px;
}

.concept-card__media {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(49, 41, 35, 0.08);
  background: #ddd4c8;
}

.concept-card__media img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.94);
}

.concept-card__content {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 22px 22px 22px;
}

.concept-card__content h3 {
  position: relative;
  padding-bottom: 12px;
  color: var(--forest);
  font-size: clamp(1.5rem, 1.95vw, 1.92rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.concept-card__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 168, 122, 0.52), rgba(196, 168, 122, 0.2) 70%, transparent);
}

.concept-card__content p {
  width: 100%;
  max-width: none;
  color: #554f48;
  font-size: 0.96rem;
  line-height: 1.74;
  text-wrap: pretty;
}

.showcase__feature {
  padding: 0;
}

.showcase__experiences {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 56px 0 0;
}


.showcase__experiences::after {
  content: none;
}

.showcase__actions {
  margin-top: 4px;
  margin-bottom: -28px;
}

.includes-note {
  padding-top: 12px;
  border-top: 1px solid rgba(196, 168, 122, 0.32);
  display: grid;
  gap: 5px;
}

.includes-note__label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 168, 122, 0.9);
}

.includes-note p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.includes-note__transport {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.85;
}

.experience-card__detail--distance em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--forest);
  line-height: 1;
}

.showcase__experiences .section-heading--center {
  max-width: 42rem;
  margin-bottom: 16px;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.showcase__experiences .section-heading--center h2 {
  position: relative;
  display: block;
  width: fit-content;
  font-size: clamp(2.35rem, 3.7vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
  margin: 0 auto;
  padding: 0 18px 30px;
  text-align: center;
  justify-self: center;
}

.showcase__experiences .section-heading--center .section-subtitle {
  max-width: 40rem;
  margin-top: 4px;
  text-align: center;
  line-height: 1.8;
  text-wrap: balance;
}

.elements-strip__title::after,
.showcase__experiences .section-heading--center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  height: 20px;
  transform: translateX(-50%);
  opacity: 0.98;
  background: center / 220px 20px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='20' viewBox='0 0 220 20'%3E%3Cline x1='8' y1='10' x2='96' y2='10' stroke='%23c4a87a' stroke-opacity='0.82' stroke-width='1.4'/%3E%3Ccircle cx='100' cy='10' r='1.8' fill='%23c4a87a' fill-opacity='0.82'/%3E%3Cpath d='M106 10L110 5L114 10L110 15Z' fill='%23c4a87a' fill-opacity='0.9'/%3E%3Ccircle cx='120' cy='10' r='1.8' fill='%23c4a87a' fill-opacity='0.82'/%3E%3Cline x1='124' y1='10' x2='212' y2='10' stroke='%23c4a87a' stroke-opacity='0.82' stroke-width='1.4'/%3E%3C/svg%3E");
}

.showcase__experiences .cards-grid--experiences {
  grid-template-columns: 1fr;
  gap: 22px;
}

.showcase__experiences .experience-card--inline {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: stretch;
}

.showcase__experiences .experience-card--inline img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
}

.showcase__experiences .experience-card__body {
  gap: 20px;
  padding: 32px 36px 30px;
  align-content: center;
}

.showcase__experiences .experience-card__body h3 {
  font-size: clamp(1.92rem, 2.45vw, 2.7rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.showcase__experiences .experience-card__tagline {
  max-width: 34ch;
  font-size: 1.1rem;
  line-height: 1.72;
  color: #4b453c;
}

.showcase__experiences .experience-card__details {
  gap: 11px;
  font-size: 0.94rem;
}

.showcase__experiences .experience-card__details span {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: 9px;
  border-top: 1px solid rgba(49, 41, 35, 0.08);
}

.showcase__experiences .experience-card__details strong {
  min-width: 76px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b554a;
}

.experience-card__price-row {
  justify-content: space-between;
}

.experience-card__min {
  margin-left: auto;
  font-size: 0.76rem;
  color: var(--text-soft);
  opacity: 0.55;
  letter-spacing: 0.01em;
}

.showcase__experiences .experience-card__badge {
  padding: 8px 14px;
  border-color: rgba(49, 41, 35, 0.12);
  background: linear-gradient(180deg, rgba(114, 108, 92, 0.08), rgba(114, 108, 92, 0.03));
  color: var(--accent-deep);
}

.trail-section,
.retreat-cta {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.trail-section__media,
.retreat-cta__media {
  position: absolute;
  inset: 0;
}

.trail-section__media img,
.retreat-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail-section__overlay,
.retreat-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 23, 22, 0.58), rgba(29, 23, 22, 0.8));
}

.trail-section__content,
.retreat-cta__content {
  position: relative;
  z-index: 1;
}

.trail-section__content {
  padding-top: 0;
}

.trail-section.section {
  padding: 64px 0;
}

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

.concept-card {
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(54, 45, 39, 0.1);
  background: linear-gradient(180deg, rgba(249, 245, 239, 0.94), rgba(238, 230, 220, 0.54));
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.concept-card .icon {
  width: 66px;
  height: 66px;
  margin-bottom: 0;
}

.concept-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 19rem;
}

.info-card--essay {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 28px 30px;
  text-align: left;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(248, 243, 235, 0.96), rgba(239, 231, 221, 0.74));
}

.info-card--essay h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.info-card--essay p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.info-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(49, 41, 35, 0.1);
}

.info-card__marker {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(79, 74, 63, 0.9);
}

.info-card__source {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(103, 98, 83, 0.92);
}

.question-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.question-panel h3 {
  max-width: 14ch;
}

.question-panel .question-bridge__examples {
  gap: 16px;
  padding-top: 0;
}

.question-panel .question-list {
  gap: 0;
}

.question-panel .question-list__item p {
  font-size: 1.02rem;
  line-height: 1.28;
}

.question-list {
  display: grid;
  gap: 14px;
}

.question-list__item {
  padding: 18px 0;
  border-top: 1px solid rgba(49, 41, 35, 0.12);
}

.question-list__item:first-child {
  padding-top: 0;
  border-top: none;
}

.question-list__item p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.concept-signature {
  color: var(--text-light);
  background:
    radial-gradient(circle at top left, rgba(203, 183, 146, 0.1), transparent 32%),
    radial-gradient(circle at bottom right, rgba(94, 109, 96, 0.12), transparent 34%),
    linear-gradient(180deg, #26211f 0%, #1f1a18 100%);
}

.concept-signature .eyebrow {
  color: rgba(247, 238, 222, 0.8);
}

.concept-signature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.concept-signature__lead {
  display: grid;
  gap: 18px;
}

.concept-signature__lead h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: 0.92;
}

.concept-signature__lead p {
  max-width: 34rem;
  color: rgba(244, 236, 226, 0.76);
}

.concept-signature__panel {
  display: grid;
  gap: 18px;
  background: rgba(247, 240, 231, 0.08);
  border-color: rgba(255, 242, 224, 0.12);
  box-shadow: none;
}

.concept-signature__points {
  display: grid;
  gap: 16px;
}

.concept-signature__points article {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 242, 224, 0.12);
}

.concept-signature__points article:first-child {
  padding-top: 0;
  border-top: none;
}

.concept-signature__points h3 {
  margin-bottom: 8px;
  color: var(--text-light);
}

.concept-signature__points p {
  color: rgba(244, 236, 226, 0.72);
}

.trail-section__heading .eyebrow,
.retreat-cta .eyebrow {
  color: rgba(247, 238, 222, 0.88);
}

.button-row--center {
  justify-content: center;
}

.experience-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 28px;
}

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

.profile-card {
  display: grid;
  gap: 20px;
}

.profile-card__image {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(86, 97, 85, 0.06);
  color: var(--text-soft);
}

.page-note {
  color: var(--text-soft);
  font-style: italic;
}

.project-note {
  margin-top: 24px;
}

.site-footer {
  padding: 38px 0;
  background:
    linear-gradient(180deg, #241d1c, #1f1a18),
    radial-gradient(circle at top, rgba(255, 244, 228, 0.04), transparent 34%);
  border-top: 1px solid rgba(255, 242, 224, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: end;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer__contact,
.site-footer__links a,
.site-footer__contact a {
  color: rgba(243, 234, 223, 0.72);
}

.site-footer .brand__wordmark {
  color: var(--text-light);
}

.site-footer .site-footer__note {
  color: rgba(243, 234, 223, 0.58);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 242, 224, 0.16);
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.08);
}

.site-header--overlay .nav-toggle {
  border-color: rgba(255, 242, 224, 0.16);
  background: rgba(255, 249, 241, 0.06);
  color: var(--text-light);
}

.nav-toggle__line {
  width: 18px;
  height: 1.5px;
  background: currentColor;
}
