@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=EB+Garamond:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap");

/* Premium gold/brown palette — warm parchment, muted brass, aged oak */
:root {
  --bg: #ece3d3;
  --bg-soft: #e1d3be;
  --surface: rgba(253, 247, 239, 0.9);
  --surface-strong: #f6ede1;
  --surface-deep: #211b17;
  --text: #231d19;
  --text-soft: #504539;
  --text-light: #f8f0e3;
  --line: rgba(48, 37, 28, 0.13);
  --line-strong: rgba(48, 37, 28, 0.24);
  --accent: #826b4e;
  --accent-deep: #52402e;
  --moss: #4d554d;
  --forest: #272320;
  --shadow: 0 22px 54px rgba(29, 22, 16, 0.09);
  --shadow-soft: 0 10px 24px rgba(29, 22, 16, 0.055);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1160px, calc(100% - 48px));
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --page-dissolve-duration: 520ms;
  --page-dissolve-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --hero-height: 43svh;
  --subpage-hero-height: 34svh;
}

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

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

/* Exit: faster ease-in — old content recedes quietly */
::view-transition-old(root) {
  animation-name: kd-view-old;
  animation-duration: 340ms;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  animation-fill-mode: both;
  mix-blend-mode: normal;
}

/* Enter: slower ease-out — new content arrives with presence */
::view-transition-new(root) {
  animation-name: kd-view-new;
  animation-duration: 580ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  mix-blend-mode: normal;
}

@keyframes kd-view-old {
  to {
    opacity: 0;
    filter: blur(1.5px);
    transform: translateY(-7px) scale(1.003);
  }
}

@keyframes kd-view-new {
  from {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
    transform: translateY(11px) scale(0.998);
  }
}

.page-transition-veil {
  isolation: isolate;
}

.page-transition-veil::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 247, 235, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(20, 14, 12, 0.08), rgba(238, 228, 215, 0.16));
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }
}

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, 251, 241, 0.44), transparent 30%),
    radial-gradient(circle at bottom right, rgba(108, 92, 68, 0.09), transparent 28%),
    linear-gradient(180deg, #f5eadd 0%, #ecdfd0 54%, #e2d4c0 100%);
  line-height: 1.72;
}

.page-experiences {
  background:
    linear-gradient(180deg, #191410 0%, #231b17 20rem, #ede3d1 34rem, #e2d5c1 100%);
}

.page-home,
.page-concept,
.page-experience-single,
.page-about-legacy {
  background:
    linear-gradient(180deg, #191410 0%, #231b17 20rem, #ede3d1 34rem, #e2d5c1 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.16em;
  text-transform: uppercase;
  color: rgba(247, 238, 222, 0.72);
}

.prelaunch-gate__panel h1 {
  margin: 0;
  font-size: clamp(2.08rem, 4.7vw, 2.95rem);
  line-height: 0.97;
  letter-spacing: -0.024em;
  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(242, 233, 219, 0.9);
  box-shadow: 0 14px 34px rgba(28, 20, 14, 0.06);
  backdrop-filter: blur(24px);
}

.site-header--overlay {
  position: fixed;
  inset: 0 0 auto 0;
  background:
    linear-gradient(180deg, rgba(18, 13, 11, 0.34), rgba(18, 13, 11, 0.16) 76%, rgba(18, 13, 11, 0));
  border-bottom: none;
  box-shadow: 0 16px 38px rgba(8, 6, 5, 0.08);
  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: 84px;
}

.site-header--overlay .site-header__inner {
  min-height: 82px;
  margin-top: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.brand--header-logo {
  width: auto;
  min-height: 62px;
  padding: 7px 10px 7px 8px;
  border-radius: 999px;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header--overlay .brand--header-logo {
  min-height: 70px;
  padding: 5px 4px 5px 0;
}

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

.brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/logos/LOGO-ICON-transparent-20260424.png") center / contain no-repeat;
  transform: scale(1.38);
  transform-origin: center;
  pointer-events: none;
}

.brand__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.38);
  background: transparent;
  opacity: 0;
  mix-blend-mode: normal;
  filter: contrast(1.06) saturate(0.92);
}

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

.site-header--overlay .brand__wordmark {
  color: rgba(248, 241, 232, 0.99);
  text-shadow: 0 2px 16px rgba(8, 6, 6, 0.28);
}

/*
  Wordmark: EB Garamond, uppercase, tracked — standard treatment for premium
  hospitality / estate wordmarks. Nothing else on the page is uppercase + tracked,
  so this reads immediately as identity typography, not content typography.
*/
.brand__wordmark {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.78rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.148em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}

.site-header .brand__badge {
  width: 38px;
  height: 43px;
  margin-top: -2px;
}

.site-header--overlay .brand__badge {
  width: 43px;
  height: 48px;
}

.site-header .brand--header-logo {
  min-height: 60px;
  gap: 9px;
}

.site-header .brand__wordmark {
  font-size: 1.96rem;
  letter-spacing: 0.115em;
}

.site-header .brand__text {
  justify-content: center;
}

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

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

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

.site-nav a:not(.button) {
  position: relative;
  font-family: var(--font-body);
  padding: 9px 0;
  color: inherit;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-header .button {
  min-height: 38px;
  padding: 0 28px;
  font-size: 0.66rem;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.54;
  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;
}

.experience-hero {
  min-height: var(--subpage-hero-height);
}

.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;
  opacity: 0.9;
  transform: scale(1.01);
  animation: hero-image-settle 420ms ease-out 40ms forwards;
}

@keyframes hero-image-settle {
  from {
    opacity: 0.88;
    transform: scale(1.01);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hero__overlay,
.experience-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 48%, rgba(13, 10, 9, 0.42) 0%, rgba(13, 10, 9, 0.22) 34%, rgba(13, 10, 9, 0) 62%),
    linear-gradient(180deg, rgba(17, 12, 10, 0.62) 0%, rgba(18, 13, 11, 0.28) 38%, rgba(18, 13, 11, 0.78) 100%),
    linear-gradient(90deg, rgba(13, 10, 9, 0.54) 0%, rgba(13, 10, 9, 0.25) 44%, rgba(13, 10, 9, 0.16) 100%);
}

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

.hero__content--compact {
  padding-top: 124px;
  padding-bottom: 70px;
}

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

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7a6148;
}

.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.13em;
}

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

h1 {
  font-size: clamp(3.2rem, 5.6vw, 5.72rem);
}

.page-home .hero h1 {
  max-width: 11.7ch;
  font-size: clamp(2.22rem, 3.6vw, 3.96rem);
  line-height: 0.88;
  letter-spacing: -0.026em;
  text-shadow: 0 12px 36px rgba(8, 6, 6, 0.28);
}

h2 {
  font-size: clamp(2.12rem, 3.75vw, 3.36rem);
}

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

p {
  margin: 0;
}

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

.page-home .hero__lead {
  margin-top: 17px;
  max-width: 38ch;
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(222, 207, 184, 0.78);
}

.hero__lead--keywords {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.115em;
  color: rgba(222, 207, 184, 0.76);
  text-transform: none;
  line-height: 1.48;
}

.page-home .hero {
  min-height: var(--hero-height);
  align-items: center;
}

.page-home .hero__content {
  width: var(--shell);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 104px;
  padding-bottom: 34px;
  padding-left: 0;
  transform: translateY(-6px);
}

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

.hero__actions {
  margin-top: 30px;
}

.page-home .hero__actions .button {
  min-height: 40px;
  padding-inline: 24px;
  font-size: 0.66rem;
  letter-spacing: 0.125em;
}

.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: 48px;
}

.section--intro {
  position: relative;
  margin-top: -1px;
  background: linear-gradient(180deg, #f5ede0 0%, #f0e8d9 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: 16px;
}

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

.section-subtitle {
  margin: 8px auto 0;
  max-width: 32rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
  font-weight: 400;
}

.prelaunch-gate__panel h1,
.page-hero--slim h1,
.concept-hero h1,
.experiences-hero h1,
.thankyou-wrap h1,
.question-bridge h2,
.concept-card__content h3,
.showcase__experiences .section-heading--center h2,
.showcase__experiences .experience-card__body h3,
.info-card--essay h3,
.question-panel h3,
.concept-signature__lead h2 {
  line-height: 1;
  letter-spacing: -0.02em;
}

.prose,
.comparison-list,
.cta-band__actions {
  display: grid;
  gap: 16px;
  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: 36rem;
  font-size: 1rem;
  line-height: 1.82;
}

.page-home .prose p {
  max-width: 34rem;
  line-height: 1.86;
}

.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: 0 24px 58px rgba(29, 23, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.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 {
  max-width: 35rem;
  font-size: 1.06rem;
  line-height: 1.86;
}

.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.94rem;
}

.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(248, 242, 234, 0.96), rgba(238, 229, 217, 0.92)),
    radial-gradient(circle at right, rgba(95, 88, 77, 0.15), transparent 30%);
  border-top: 1px solid rgba(45, 36, 29, 0.08);
  border-bottom: 1px solid rgba(45, 36, 29, 0.1);
}

.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% 18%, rgba(255, 251, 244, 0.72), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(120, 109, 91, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(246, 240, 233, 0.98), rgba(233, 224, 213, 0.92));
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 172px), rgba(79, 74, 63, 0.035) calc(100% - 172px), rgba(79, 74, 63, 0.035) calc(100% - 171px), transparent calc(100% - 171px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 28px), rgba(79, 74, 63, 0.045) calc(100% - 28px), rgba(79, 74, 63, 0.045) calc(100% - 27px), transparent calc(100% - 27px));
}

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

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  gap: 20px;
  padding: 64px 0 8px;
}

.about-hero__title-wrap {
  display: flex;
  align-items: end;
  min-height: 92px;
}

.about-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--forest);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.about-hero__art {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.about-hero__art-frame {
  position: relative;
  width: min(100%, 320px);
  min-height: 110px;
  border-radius: 22px;
  border: 1px solid rgba(79, 74, 63, 0.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(160deg, rgba(246, 240, 233, 0.92), rgba(231, 222, 211, 0.72));
  overflow: hidden;
  box-shadow:
    0 14px 26px rgba(39, 32, 28, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.about-hero__art-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 250, 243, 0.24);
  pointer-events: none;
}

.about-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
}

.about-hero__lines path {
  stroke: rgba(92, 82, 72, 0.64);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(92, 82, 72, 0.58);
  box-shadow: 0 0 0 8px rgba(92, 82, 72, 0.05);
}

.about-hero__dot--one {
  left: 124px;
  top: 42px;
}

.about-hero__dot--two {
  right: 56px;
  bottom: 34px;
}

.page-hero--image {
  min-height: var(--subpage-hero-height);
  padding: 0;
  border-bottom: none;
  background: none;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero--image.about-hero {
  min-height: var(--subpage-hero-height);
}

.page-hero--image.about-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.page-hero--image.about-hero .page-hero__inner--light {
  padding-bottom: 42px;
}

.page-hero--image.about-hero + .section {
  padding-top: 28px;
}

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

.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: 32rem;
  font-size: 1.04rem;
  line-height: 1.78;
}

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

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

.concept-hero .page-hero__inner--light {
  padding: 80px 0 32px;
}

.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: var(--subpage-hero-height);
}

.experiences-hero {
}

.experiences-hero.page-hero--compact {
  min-height: var(--subpage-hero-height);
}

.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: 86px 0 34px;
}

.experiences-hero + .section {
  padding-top: 32px;
  padding-bottom: 64px;
}

.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.82rem;
  line-height: 1.62;
  color: rgba(49, 41, 35, 0.72);
  font-style: italic;
}

.concept-aside {
  font-size: 0.88em;
  font-style: italic;
  color: rgba(49, 41, 35, 0.68);
  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;
}

.section--tall {
  padding: 140px 0 120px;
}

.thankyou-wrap {
  max-width: 600px;
}

.thankyou-wrap h1 {
  margin: 0 0 28px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.thankyou-lead {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.thankyou-sub {
  margin: 0 0 40px;
  color: var(--text-muted);
}

.thankyou-sub a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.elements-strip {
  position: relative;
  padding: 0 0 42px;
  margin-bottom: 36px;
  background: none;
}

.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(2.42rem, 3.65vw, 3.38rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--forest);
  text-align: center;
  margin: 0 auto 12px;
  padding: 0 18px 28px;
  justify-self: center;
}

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

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

.question-bridge__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.1fr);
  gap: 0;
  align-items: start;
}

.question-bridge__body {
  display: grid;
  gap: 16px;
  padding-right: 52px;
}

.question-bridge h2 {
  max-width: 14ch;
  font-size: clamp(1.92rem, 2.75vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.036em;
}

.question-bridge .prose {
  gap: 14px;
  max-width: 32rem;
  color: #433a32;
  line-height: 1.84;
}

.question-bridge .prose p {
  font-size: 0.93rem;
  line-height: 1.84;
}

.question-bridge__examples {
  display: grid;
  gap: 32px;
  padding-left: 52px;
  border-left: 1px solid rgba(45, 36, 29, 0.11);
}

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

.question-bridge__examples.theme-categories {
  gap: 0;
  counter-reset: theme;
}

.theme-categories-header {
  font-size: 0.7rem;
  font-family: var(--font-ui);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 2px solid rgba(130, 107, 78, 0.35);
  grid-column: 1 / -1;
}

.theme-category {
  counter-increment: theme;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  column-gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(130, 107, 78, 0.25);
  align-items: start;
}

.theme-category:first-child {
  border-top: none;
}

.theme-category::before {
  content: counter(theme, upper-roman);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  grid-row: 1 / 3;
}

.theme-category__title {
  font-size: 0.9rem;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-deep);
  grid-column: 2;
  margin-bottom: 2px;
}

.theme-category__desc {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text);
  grid-column: 2;
}

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

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

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

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

.question-bridge .question-list__item {
  padding: 15px 0;
}

.question-bridge .question-list__item p {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--forest);
}

.question-bridge.panel {
  padding: 32px 38px;
  border-color: rgba(45, 36, 29, 0.13);
  background: linear-gradient(160deg, rgba(253, 249, 243, 0.96), rgba(241, 232, 220, 0.86));
  box-shadow: 0 24px 56px rgba(29, 23, 18, 0.085), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.question-bridge + .button-row {
  margin-bottom: 34px;
}

.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(251, 247, 240, 0.98), rgba(239, 230, 218, 0.8));
  border: 1px solid rgba(45, 36, 29, 0.085);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(29, 23, 18, 0.058), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  gap: 0;
  justify-items: start;
  text-align: left;
}

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

.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: 256px;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.88) contrast(1.03);
}

.concept-card__content {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 31px 31px 32px;
}

.concept-card__content h3 {
  position: relative;
  padding-bottom: 12px;
  color: var(--forest);
  font-size: clamp(1.76rem, 2.15vw, 2.18rem);
  line-height: 0.94;
  letter-spacing: -0.028em;
}

.concept-card__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 124, 82, 0.62), rgba(151, 124, 82, 0.2) 72%, transparent);
}

.concept-card__content p {
  width: 100%;
  max-width: 35ch;
  color: #4f463d;
  font-size: 0.95rem;
  line-height: 1.86;
  text-wrap: pretty;
}

.showcase__feature {
  padding: 0;
}

.showcase__experiences {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 42px 0 0;
}


.showcase__experiences::after {
  content: none;
}

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

.includes-note {
  padding-top: 14px;
  border-top: 1px solid rgba(151, 124, 82, 0.3);
  display: grid;
  gap: 7px;
}

.includes-note__label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(116, 91, 56, 0.92);
}

.includes-note p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.9rem;
  color: #544a41;
  line-height: 1.72;
}

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

.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: 36rem;
  margin-bottom: 18px;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.showcase__experiences .section-heading--center h2 {
  position: relative;
  display: block;
  width: fit-content;
  font-size: clamp(2.55rem, 4vw, 3.75rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  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: 31rem;
  margin-top: 8px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.92;
  text-wrap: balance;
}

.elements-strip__title::after,
.showcase__experiences .section-heading--center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 210px;
  height: 16px;
  transform: translateX(-50%);
  opacity: 0.68;
  background: center / 196px 16px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='18' viewBox='0 0 210 18'%3E%3Cline x1='7' y1='9' x2='91' y2='9' stroke='%23977c52' stroke-opacity='0.72' stroke-width='1.1'/%3E%3Ccircle cx='97' cy='9' r='1.6' fill='%23977c52' fill-opacity='0.72'/%3E%3Cpath d='M103 9L107 4.5L111 9L107 13.5Z' fill='%23977c52' fill-opacity='0.8'/%3E%3Ccircle cx='117' cy='9' r='1.6' fill='%23977c52' fill-opacity='0.72'/%3E%3Cline x1='123' y1='9' x2='203' y2='9' stroke='%23977c52' stroke-opacity='0.72' stroke-width='1.1'/%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(380px, 0.82fr);
  align-items: stretch;
}

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

.showcase__experiences .experience-card__body {
  gap: 22px;
  padding: 40px 44px 38px;
  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: 33ch;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #4b453c;
}

.showcase__experiences .experience-card__details {
  gap: 11px;
  font-size: 0.96rem;
  color: #4f463e;
}

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

.showcase__experiences .experience-card__details strong {
  min-width: 76px;
  font-size: 0.72rem;
  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.82rem;
  color: var(--text-soft);
  opacity: 0.72;
  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: 16px;
  padding: 30px 30px 32px;
  text-align: left;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(251, 247, 241, 0.97), rgba(240, 232, 222, 0.82));
}

.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: #50473f;
  font-size: 1rem;
  line-height: 1.78;
}

.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.12rem;
  line-height: 1.36;
}

.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.84);
  font-size: 1.03rem;
  line-height: 1.84;
}

.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.8);
  line-height: 1.76;
}

.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: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.profile-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(155deg, rgba(80, 92, 76, 0.18) 0%, rgba(48, 56, 44, 0.1) 100%);
}

.profile-card__cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px 28px;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.52) 0%, transparent 65%);
}

.profile-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 500;
  color: rgba(248, 236, 216, 0.95);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.profile-card__body {
  padding: 28px 36px 36px;
}

.page-note {
  color: var(--text-soft);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.78;
}

.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 .brand__icon {
  mix-blend-mode: screen;
  filter: brightness(0.88) saturate(0.92) opacity(0.9);
}

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

.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;
}
