:root {
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Inter, system-ui, sans-serif;
  --color-ivory: #f8f4eb;
  --color-cream: #efe7d8;
  --color-sand: #c3a06a;
  --color-gold: #b58b4e;
  --color-olive: #26311d;
  --color-forest: #394523;
  --color-brown: #735d43;
  --color-stone: #8d8a7f;
  --color-ink: #1f2419;
  --color-footer: #1d2118;
  --color-line: rgba(181, 139, 78, 0.5);
  --shadow-soft: 0 24px 70px rgba(39, 49, 29, 0.13);
  --shadow-glow: 0 18px 60px rgba(181, 139, 78, 0.26);
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --container: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(195, 160, 106, 0.15), transparent 32rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--color-ivory) 44%, #efe6d5 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  color: var(--color-ivory);
  background: var(--color-forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  transition: background 450ms var(--ease), box-shadow 450ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 244, 235, 0.94);
  box-shadow: 0 10px 36px rgba(38, 49, 29, 0.09);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: clamp(170px, 16vw, 230px);
}

.brand-mark {
  width: clamp(170px, 16vw, 230px);
  height: auto;
  max-height: 58px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.brand-text {
  display: grid;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-olive);
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 22px);
}

.site-nav a {
  position: relative;
  font-size: clamp(0.94rem, 0.9vw, 1.04rem);
  font-weight: 800;
  color: rgba(31, 36, 25, 0.72);
  white-space: nowrap;
  transition: color 250ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-olive);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(181, 139, 78, 0.36);
  border-radius: 999px;
  background: transparent;
  color: var(--color-olive);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease);
}

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

.btn-primary {
  background: var(--color-olive);
  color: var(--color-ivory);
  border-color: var(--color-olive);
}

.btn-secondary {
  background: rgba(248, 244, 235, 0.72);
  color: var(--color-olive);
}

.btn-light {
  background: var(--color-ivory);
  color: var(--color-olive);
  border-color: rgba(248, 244, 235, 0.35);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(38, 49, 29, 0.16);
  border-radius: 50%;
  background: rgba(248, 244, 235, 0.78);
  color: var(--color-olive);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.living-path {
  position: fixed;
  inset: 0 auto 0 58%;
  width: min(760px, 82vw);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.24;
  mix-blend-mode: multiply;
  contain: layout paint style;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 78%, transparent 100%);
}

.living-path svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.living-path .path-base,
.living-path .path-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.living-path .path-base {
  stroke: rgba(181, 139, 78, 0.08);
  stroke-width: 1.3;
}

.living-path .path-progress {
  stroke: rgba(181, 139, 78, 0.34);
  stroke-width: 1.8;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 86px));
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(3rem, 5vw, 4.75rem) 0 clamp(2.75rem, 4.5vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 26%, rgba(226, 204, 161, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(20, 26, 16, 0.72) 0%, rgba(38, 49, 29, 0.48) 38%, rgba(31, 36, 25, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 36, 25, 0.08), rgba(31, 36, 25, 0.02) 54%, rgba(248, 244, 235, 0.7) 84%, var(--color-ivory) 100%),
    var(--hero-image, url("../img/monastyrok-landscape.jpg")) center bottom / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--color-ivory));
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.hero-content {
  max-width: min(900px, 76vw);
  min-width: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 8vw, 8.8rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--color-ivory);
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

.hero h1 {
  color: var(--color-ivory);
  max-width: 900px;
  text-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
  margin: 18px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-style: italic;
  color: rgba(226, 204, 161, 0.96);
  text-shadow: 0 16px 52px rgba(0, 0, 0, 0.34);
}

.hero-text {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(248, 244, 235, 0.82);
  font-size: 1.08rem;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(226, 204, 161, 0.34);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(145deg, rgba(248, 244, 235, 0.18), rgba(31, 36, 25, 0.38));
  backdrop-filter: blur(14px);
  color: var(--color-ivory);
  box-shadow:
    0 42px 110px rgba(10, 16, 8, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -90px 120px rgba(19, 25, 15, 0.36);
}

.hero-card-still-life {
  min-height: 430px;
}

.hero-card-still-life::before,
.hero-card-still-life::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-card-still-life::before {
  z-index: -2;
  background: url("../img/hero-ukrainian-still-life.jpg") center 64% / cover no-repeat;
  filter: saturate(0.78) contrast(0.92) brightness(0.74);
  transform: scale(1.035);
}

.hero-card-still-life::after {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 8%, rgba(248, 244, 235, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(20, 26, 16, 0.02), rgba(20, 26, 16, 0.48) 76%, rgba(20, 26, 16, 0.78)),
    linear-gradient(90deg, rgba(248, 244, 235, 0.1), transparent 46%);
}

.hero-card-still-life {
  background: rgba(31, 36, 25, 0.2);
}

.hero-emblem {
  width: min(320px, 72vw);
  height: auto;
  margin-bottom: auto;
  padding: 12px 16px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(248, 244, 235, 0.88);
  box-shadow: 0 24px 80px rgba(31, 36, 25, 0.2);
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-trail {
  width: 100%;
  min-height: 170px;
  margin-top: 28px;
}

.hero-trail path {
  fill: none;
  stroke: rgba(226, 204, 161, 0.86);
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-note {
  margin: 0;
  color: rgba(248, 244, 235, 0.78);
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(190px, 25vh, 265px);
  padding: clamp(1.75rem, 2.8vw, 2.8rem) 0 clamp(3rem, 4.2vw, 4rem);
  color: var(--color-ivory);
  isolation: isolate;
  z-index: 3;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31, 36, 25, 0.74), rgba(31, 36, 25, 0.32), rgba(31, 36, 25, 0.58)),
    var(--hero-image, url("../img/seret-landscape.jpg")) var(--hero-position, center) / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 clamp(-3.8rem, -4.2vw, -2.2rem);
  z-index: 1;
  pointer-events: none;
  height: 58%;
  opacity: 0.94;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.5) 42%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.5) 42%, #000 100%);
  background:
    radial-gradient(54% 82% at 18% 32%, rgba(191, 145, 82, 0.16), rgba(191, 145, 82, 0.04) 42%, rgba(191, 145, 82, 0) 72%),
    radial-gradient(48% 70% at 84% 18%, rgba(248, 244, 235, 0.20), rgba(248, 244, 235, 0) 66%),
    linear-gradient(90deg, rgba(248, 244, 235, 0.24), rgba(248, 244, 235, 0.04) 45%, rgba(248, 244, 235, 0.22)),
    linear-gradient(
      180deg,
      rgba(248, 244, 235, 0) 0%,
      rgba(248, 244, 235, 0.16) 34%,
      rgba(248, 244, 235, 0.48) 62%,
      rgba(248, 244, 235, 0.82) 82%,
      var(--color-ivory) 100%
    );
}

.page-hero + .section {
  margin-top: clamp(-2.6rem, -3vw, -1.5rem);
  padding-top: clamp(3.2rem, 5vw, 5rem);
}

.page-hero + .section::before {
  content: "";
  position: absolute;
  inset: clamp(-6.5rem, -7vw, -3.8rem) 0 auto;
  height: clamp(7rem, 13vw, 13rem);
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(50% 72% at 18% 22%, rgba(191, 145, 82, 0.08), rgba(191, 145, 82, 0) 70%),
    linear-gradient(180deg, rgba(248, 244, 235, 0), rgba(248, 244, 235, 0.78) 50%, rgba(248, 244, 235, 0));
}

.page-hero + .section > .section-inner {
  position: relative;
  z-index: 2;
}

.contacts-page .page-hero {
  min-height: clamp(190px, 25vh, 265px);
}

.retreat-page .page-hero,
.investors-page .page-hero,
.contacts-page .page-hero {
  z-index: 2;
}

.retreat-page .page-hero::after,
.investors-page .page-hero::after,
.contacts-page .page-hero::after {
  inset: auto 0 clamp(-1.8rem, -2.2vw, -1rem);
  height: 34%;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 44%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 44%, #000 100%);
  background:
    radial-gradient(48% 78% at 20% 18%, rgba(191, 145, 82, 0.08), transparent 64%),
    linear-gradient(180deg, rgba(248, 244, 235, 0), rgba(248, 244, 235, 0.34) 54%, var(--color-ivory) 100%);
}

.retreat-page .page-hero + .section,
.investors-page .page-hero + .section,
.contacts-page .page-hero + .section {
  margin-top: 0;
  padding-top: clamp(3.6rem, 5.4vw, 5.8rem);
}

.retreat-page .page-hero + .section::before,
.investors-page .page-hero + .section::before,
.contacts-page .page-hero + .section::before {
  content: none;
}

.contacts-page .page-hero h1 {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.25rem);
}

.page-hero p {
  margin-top: 10px;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.adventures-page .option-nav {
  margin-top: -26px;
}

.adventures-page .option-section {
  align-items: stretch;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: start;
}

.page-hero-inner,
.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.1rem, 5.8vw, 5.9rem);
}

.page-hero p {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: rgba(248, 244, 235, 0.86);
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--space-8) 0;
}

#directions {
  scroll-margin-top: 104px;
}

.section-compact {
  padding: var(--space-6) 0;
}

.section-dark {
  color: var(--color-ivory);
  background: var(--color-footer);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.62fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-kicker {
  display: none;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 5.6vw, 6.2rem);
  font-weight: 600;
  line-height: 0.96;
  color: var(--color-olive);
  text-wrap: balance;
}

.section-title em,
.feature-copy em,
.quote-block em {
  font-style: italic;
  color: var(--color-gold);
}

.section-copy {
  margin: 0;
  color: rgba(31, 36, 25, 0.68);
  font-size: 1.02rem;
}

.lead {
  max-width: 940px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  color: var(--color-olive);
  text-wrap: balance;
}

.atmosphere-intro {
  display: block;
  max-width: 100%;
  margin-bottom: clamp(1.8rem, 3.2vw, 3rem);
}

.atmosphere-section .section-inner {
  width: min(1760px, calc(100vw - 112px));
}

.atmosphere-intro .section-title {
  max-width: 100%;
  font-size: clamp(2.8rem, 4.15vw, 4.85rem);
  line-height: 0.98;
}

.atmosphere-lead {
  position: relative;
  max-width: 100%;
  padding: clamp(1.8rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem) 0 clamp(1.4rem, 2.4vw, 2.6rem);
  border-top: 1px solid rgba(191, 145, 82, 0.24);
  font-size: clamp(1.9rem, 2.85vw, 3.45rem);
  line-height: 1.08;
}

.atmosphere-lead::before {
  content: "";
  position: absolute;
  top: clamp(2.25rem, 4vw, 3.9rem);
  left: 0;
  width: 2px;
  height: calc(100% - clamp(2.25rem, 4vw, 3.9rem));
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(191, 145, 82, 0.72), rgba(191, 145, 82, 0.08));
}

.directions-intro {
  display: block;
  max-width: 100%;
  margin-bottom: clamp(2.2rem, 4.4vw, 4rem);
}

.directions-intro .section-title {
  max-width: 100%;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  line-height: 0.98;
}

.audience-intro {
  display: block;
  max-width: 100%;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.audience-intro .section-title {
  max-width: 100%;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  line-height: 0.98;
}

.audience-intro .section-title em {
  white-space: nowrap;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial-grid.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.editorial-grid.reverse .image-panel {
  order: -1;
}

.gastronomy-feature .image-panel {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.gastronomy-page .section:has(.gastronomy-feature) {
  padding-bottom: clamp(0.75rem, 1.6vw, 1.5rem);
}

.gastronomy-options-section {
  padding-top: clamp(0.75rem, 1.4vw, 1.4rem);
}

.gastronomy-options-section .option-section:first-child {
  padding-top: 0;
}

.seret-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.image-panel.small {
  min-height: 380px;
}

.option-section .image-panel.small {
  align-self: center;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.gastronomy-page .option-section {
  align-items: stretch;
}

.gastronomy-page .option-section .image-panel.small {
  align-self: stretch;
  aspect-ratio: auto;
  height: 100%;
  min-height: clamp(430px, 27vw, 520px);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1200ms var(--ease);
}

.gastronomy-page .image-panel img {
  filter: saturate(0.58) contrast(0.9) sepia(0.16) brightness(0.84);
}

.gastronomy-page .image-panel {
  background: #e5ddcd;
}

.gastronomy-page .image-panel::after {
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 244, 235, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(29, 33, 24, 0.08), rgba(29, 33, 24, 0.18)),
    linear-gradient(180deg, transparent 54%, rgba(29, 33, 24, 0.36));
}

.gastronomy-page .image-panel:hover img {
  transform: scale(1.055);
}

.image-panel:hover img {
  transform: scale(1.08);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31, 36, 25, 0.3));
  pointer-events: none;
}

.feature-copy h2,
.feature-copy h3 {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-olive);
}

.feature-copy p {
  margin: 0 0 18px;
  color: rgba(31, 36, 25, 0.68);
}

.seret-feature h2 {
  font-size: clamp(2.35rem, 3.55vw, 3.85rem);
  line-height: 1.04;
}

.location-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 18px;
  border: 1px solid rgba(181, 139, 78, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 50px rgba(39, 49, 29, 0.08);
  transition: transform 500ms var(--ease), border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}

.location-link:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 139, 78, 0.48);
  box-shadow: 0 24px 70px rgba(39, 49, 29, 0.13);
}

.location-pin {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-gold);
  background: rgba(195, 160, 106, 0.12);
}

.location-pin svg {
  width: 25px;
  height: 25px;
}

.location-pin path,
.location-pin circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-label {
  display: block;
  margin-bottom: 2px;
  color: rgba(31, 36, 25, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-link strong {
  color: var(--color-olive);
  font-size: 1.05rem;
  font-weight: 800;
}

.location-action {
  color: var(--color-gold);
  font-weight: 800;
  white-space: nowrap;
}

.soft-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  padding: 14px 16px;
  border-left: 2px solid rgba(181, 139, 78, 0.46);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(16px, 1.4vw, 22px);
  padding: clamp(26px, 3vw, 44px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.route-map::before {
  content: none;
}

.route-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 218px;
  padding: clamp(18px, 1.7vw, 24px);
  border: 1px solid rgba(181, 139, 78, 0.18);
  border-radius: var(--radius-md);
  background: rgba(248, 244, 235, 0.96);
  box-shadow: 0 18px 46px rgba(38, 49, 29, 0.08);
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease), background 450ms var(--ease);
}

.route-stop:nth-child(even) {
  transform: none;
}

.route-stop:last-child {
  grid-column: auto;
}

.route-stop:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-glow);
  background: #fffaf0;
}

.route-stop:nth-child(even):hover {
  transform: translateY(-8px) scale(1.03);
}

.route-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 18px;
}

.route-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(181, 139, 78, 0.22);
  border-radius: 50%;
  color: var(--color-gold);
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.9), transparent 56%),
    rgba(239, 231, 216, 0.72);
  box-shadow: 0 10px 26px rgba(38, 49, 29, 0.07);
}

.route-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-heading h3 {
  margin: 0;
}

.route-stop h3,
.experience-card h3,
.audience-card h3,
.option-section h2,
.roadmap-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.42rem, 1.75vw, 1.8rem);
  line-height: 1;
  color: var(--color-olive);
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
}

.route-stop .route-heading h3 {
  margin: 0;
  line-height: 0.94;
  transform: translateY(0.06em);
}

.route-stop p,
.experience-card p,
.audience-card p {
  max-width: 100%;
  margin: 0 0 18px;
  color: rgba(31, 36, 25, 0.66);
  font-size: 0.94rem;
  overflow-wrap: break-word;
}

.route-stop .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--color-gold);
  font-weight: 800;
}

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

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

.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.experience-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.experience-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(1.03);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 36, 25, 0.08), rgba(31, 36, 25, 0.74));
}

.experience-card h3,
.experience-card p {
  color: var(--color-ivory);
}

.experience-card .text-link {
  color: #ead7ad;
}

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

.audience-card,
.investment-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(181, 139, 78, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.32);
  transition: transform 350ms var(--ease), background 350ms var(--ease), box-shadow 350ms var(--ease);
}

.audience-card {
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 139, 78, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

.audience-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  margin-bottom: 22px;
}

.audience-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(181, 139, 78, 0.24);
  border-radius: 50%;
  color: var(--color-gold);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86), transparent 58%),
    rgba(248, 244, 235, 0.68);
  box-shadow: 0 12px 32px rgba(38, 49, 29, 0.07);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-heading h3 {
  margin: 0;
}

.audience-card:hover,
.investment-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 44px rgba(38, 49, 29, 0.08);
}

.investors-page .investment-card,
.investors-page .audience-card {
  padding-top: 86px;
}

.investors-page .investment-card::before,
.investors-page .audience-card::before {
  position: absolute;
  top: 24px;
  left: 26px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(181, 139, 78, 0.24);
  border-radius: 50%;
  color: var(--color-gold);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.88), transparent 58%),
    rgba(248, 244, 235, 0.72);
  box-shadow: 0 12px 30px rgba(38, 49, 29, 0.07);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1;
}

.investors-page .investment-card::after,
.investors-page .audience-card::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 88px;
  width: 38px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(181, 139, 78, 0.42), transparent);
}

.investors-page .investment-grid .investment-card:nth-child(1)::before { content: "✶"; }
.investors-page .investment-grid .investment-card:nth-child(2)::before { content: "⌂"; }
.investors-page .investment-grid .investment-card:nth-child(3)::before { content: "↟"; }
.investors-page .investment-grid .investment-card:nth-child(4)::before { content: "◦"; }
.investors-page .investment-grid .investment-card:nth-child(5)::before { content: "♡"; }
.investors-page .investment-grid .investment-card:nth-child(6)::before { content: "☼"; }
.investors-page .investment-grid .investment-card:nth-child(7)::before { content: "♨"; }
.investors-page .investment-grid .investment-card:nth-child(8)::before { content: "↗"; }

.investors-page .cards-grid .audience-card:nth-child(1)::before { content: "⌂"; }
.investors-page .cards-grid .audience-card:nth-child(2)::before { content: "△"; }
.investors-page .cards-grid .audience-card:nth-child(3)::before { content: "◌"; }
.investors-page .cards-grid .audience-card:nth-child(4)::before { content: "♨"; }
.investors-page .cards-grid .audience-card:nth-child(5)::before { content: "≈"; }
.investors-page .cards-grid .audience-card:nth-child(6)::before { content: "✣"; }
.investors-page .cards-grid .audience-card:nth-child(7)::before { content: "✶"; }

.audience-card:hover::after {
  opacity: 1;
  transform: translate(-6px, -6px);
}

.option-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: min(var(--container), calc(100% - 32px));
  margin: -36px auto 0;
  padding: 8px;
  border: 1px solid rgba(181, 139, 78, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 244, 235, 0.9)),
    rgba(248, 244, 235, 0.88);
  box-shadow: 0 22px 70px rgba(38, 49, 29, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.option-nav-toggle {
  display: none;
}

.option-nav::-webkit-scrollbar {
  display: none;
}

.option-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(31, 36, 25, 0.66);
  font-size: clamp(0.94rem, 0.9vw, 1.05rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}

.option-nav a:hover,
.option-nav a.is-active {
  color: var(--color-ivory);
  background: var(--color-olive);
  box-shadow: 0 10px 26px rgba(38, 49, 29, 0.14);
}

main:has(> .option-nav) > .option-nav + .section {
  padding-top: clamp(1.25rem, 2.4vw, 2.4rem);
}

main:has(> .option-nav) > .option-nav + .section .option-section:first-child {
  padding-top: clamp(1.25rem, 2.6vw, 2.5rem);
}

.option-section {
  scroll-margin-top: 108px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(181, 139, 78, 0.18);
}

.option-section:last-child {
  border-bottom: 0;
}

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

.meta-item {
  padding: 14px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.4);
}

.meta-item span {
  display: block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-item strong {
  color: var(--color-olive);
  font-weight: 800;
}

.quote-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.quote-block p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: 1.02;
  color: var(--color-olive);
}

.investor-split,
.profit-layout,
.investment-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5.5vw, 6rem);
  align-items: center;
}

.investor-copy h2,
.investor-wide-title h2 {
  max-width: 1080px;
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-olive);
  text-wrap: balance;
}

.investor-copy p,
.investor-wide-title p {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(31, 36, 25, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.75;
}

.investor-lead {
  color: rgba(31, 36, 25, 0.74) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.36rem) !important;
  line-height: 1.55 !important;
}

.settlement-panel {
  display: grid;
  gap: 14px;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(181, 139, 78, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 100% at 18% 10%, rgba(191, 145, 82, 0.16), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(248, 244, 235, 0.42));
  box-shadow: var(--shadow-soft);
}

.settlement-panel article,
.project-card {
  position: relative;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(181, 139, 78, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
}

.settlement-panel span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--color-ivory);
  background: var(--color-olive);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.settlement-panel h3,
.project-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1;
  color: var(--color-olive);
}

.settlement-panel p,
.project-card p {
  margin: 0;
  color: rgba(31, 36, 25, 0.65);
  line-height: 1.65;
}

.investor-wide-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.investor-wide-title h2 {
  margin-bottom: 0;
}

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

.project-card {
  overflow: hidden;
  min-height: 260px;
  padding-top: 82px;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), background 420ms var(--ease);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(181, 139, 78, 0.28);
  border-radius: 50%;
  background:
    var(--project-icon) center / 24px 24px no-repeat,
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.86), transparent 58%),
    rgba(248, 244, 235, 0.72);
  box-shadow: 0 14px 34px rgba(38, 49, 29, 0.08);
}

.project-card:nth-child(1) {
  --project-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 11.5L12 5l7.5 6.5' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.5 10.5V19h11v-8.5' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 19v-5h4v5' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.5 7.5V5.25' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.project-card:nth-child(2) {
  --project-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 20V9' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M12 13.5c-3.5 0-5.8-2.1-6.4-5.5 3.8-.2 6.4 1.7 6.4 5.5Z' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 15c3.5 0 5.8-2.1 6.4-5.5-3.8-.2-6.4 1.7-6.4 5.5Z' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 20h10' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.project-card:nth-child(3) {
  --project-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 16.5c2.2-1.9 4.2-1.9 6 0s3.8 1.9 6 0 3.3-1.6 4-.8' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M5 11.5c2-1.5 3.8-1.4 5.4.1 1.7 1.5 3.5 1.5 5.4 0 1.5-1.2 2.8-1.2 4-.4' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M12.3 4.5l3.2 3.2-3.2 3.2' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 7.7h10' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.project-card:nth-child(4) {
  --project-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4v7.5c0 1.7-1.1 3-2.5 3S2 13.2 2 11.5V4' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M4.5 4v16' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M13.5 4v16' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M13.5 4c3 0 5 2.2 5 5.1 0 2.5-1.6 4.4-4 4.9' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M18.5 20h-5' stroke='%23b58b4e' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.project-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 56px rgba(38, 49, 29, 0.09);
}

.profit-layout {
  align-items: start;
}

.profit-card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  color: var(--color-ivory);
  background:
    radial-gradient(78% 92% at 16% 8%, rgba(195, 160, 106, 0.2), transparent 64%),
    linear-gradient(135deg, rgba(31, 36, 25, 0.96), rgba(73, 72, 51, 0.9));
  box-shadow: var(--shadow-soft);
}

.profit-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(248, 244, 235, 0.16);
}

.profit-total span {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.8;
  color: #f8f4eb;
}

.profit-total strong {
  max-width: 220px;
  color: rgba(248, 244, 235, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profit-bars {
  display: grid;
  gap: 18px;
}

.profit-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 52px minmax(160px, 1fr);
  gap: 16px;
  align-items: center;
}

.profit-row span {
  color: rgba(248, 244, 235, 0.78);
  font-weight: 800;
}

.profit-row strong {
  color: #f3d79e;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1;
}

.profit-row i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(248, 244, 235, 0.13);
}

.profit-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--value) * 1%);
  border-radius: inherit;
  background: linear-gradient(90deg, #e8cf9a, #b98b4f);
  box-shadow: 0 0 30px rgba(195, 160, 106, 0.34);
}

.investment-form-layout {
  align-items: start;
}

.investment-form {
  position: relative;
  z-index: 4;
  max-width: 760px;
  margin-left: auto;
  overflow: visible;
}

.investment-form .btn {
  width: 100%;
}

.investor-roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding-top: 40px;
  counter-reset: roadmap;
}

.investors-page .section {
  padding-top: clamp(3.6rem, 6vw, 5.6rem);
  padding-bottom: clamp(3.6rem, 6vw, 5.6rem);
}

.investors-page .page-hero + .section {
  padding-top: clamp(2.8rem, 4.8vw, 4.6rem);
}

.investors-page .investor-wide-title {
  margin-bottom: clamp(1.5rem, 3vw, 2.8rem);
}

.investors-page .investor-roadmap {
  padding-top: clamp(1.25rem, 2.6vw, 2rem);
}

.investors-page .investor-split,
.investors-page .profit-layout,
.investors-page .investment-form-layout {
  gap: clamp(1.6rem, 4.2vw, 4.2rem);
}

.roadmap-item {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(181, 139, 78, 0.18);
}

.roadmap-item::before {
  counter-increment: roadmap;
  content: "0" counter(roadmap);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--color-ivory);
  background: var(--color-olive);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.roadmap-item p {
  margin: 0;
  color: rgba(31, 36, 25, 0.64);
  font-size: 1rem;
}

.roadmap-item h3 {
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem);
  border-radius: var(--radius-lg);
  color: var(--color-ivory);
  background:
    linear-gradient(90deg, rgba(29, 33, 24, 0.92), rgba(38, 49, 29, 0.66)),
    url("../img/seret-landscape.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.cta-section h2 {
  max-width: 820px;
  margin: 0 0 26px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.98;
  font-weight: 600;
}

.final-cta h2 {
  max-width: 1280px;
  font-size: clamp(3rem, 3.9vw, 4.35rem);
  line-height: 0.98;
}

.cta-section p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(248, 244, 235, 0.78);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 235, 0.86)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(181, 139, 78, 0.16);
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.booking-form > * {
  min-width: 0;
}

.contacts-page .booking-form {
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.form-field {
  position: relative;
  display: grid;
  gap: 7px;
  z-index: 1;
}

.form-field.is-select-open,
.form-field:has(.custom-select.is-open) {
  z-index: 999;
}

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

.form-field label {
  color: var(--color-olive);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(38, 49, 29, 0.14);
  border-radius: var(--radius-xs);
  background: rgba(248, 244, 235, 0.78);
  color: var(--color-ink);
  padding: 14px 15px;
  outline: none;
  transition: border 250ms var(--ease), box-shadow 250ms var(--ease);
}

.native-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: -1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
}

.custom-select {
  position: relative;
  z-index: 10;
  font-size: 1rem;
}

.custom-select.is-open {
  z-index: 120;
}

.custom-select-button {
  width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(38, 49, 29, 0.14);
  border-radius: var(--radius-xs);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(248, 244, 235, 0.82)),
    rgba(248, 244, 235, 0.78);
  color: var(--color-ink);
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: border 250ms var(--ease), box-shadow 250ms var(--ease), background 250ms var(--ease);
}

.custom-select-button:hover,
.custom-select.is-open .custom-select-button,
.custom-select-button:focus-visible {
  border-color: rgba(181, 139, 78, 0.58);
  box-shadow: 0 0 0 4px rgba(181, 139, 78, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.native-select[aria-invalid="true"] + .custom-select .custom-select-button {
  border-color: rgba(140, 59, 37, 0.58);
  box-shadow: 0 0 0 4px rgba(140, 59, 37, 0.1);
}

.custom-select-button.is-placeholder {
  color: rgba(31, 36, 25, 0.62);
}

.custom-select-chevron {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-gold);
  background: rgba(181, 139, 78, 0.08);
  transition: transform 250ms var(--ease), background 250ms var(--ease);
}

.custom-select-chevron svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
  background: rgba(181, 139, 78, 0.14);
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  bottom: auto;
  right: auto;
  z-index: 40;
  display: grid;
  gap: 4px;
  width: 100%;
  max-height: min(var(--select-max-height, 248px), 42vh);
  padding: 8px;
  border: 1px solid rgba(181, 139, 78, 0.2);
  border-radius: 18px;
  background: rgba(248, 244, 235, 0.96);
  box-shadow: 0 24px 70px rgba(38, 49, 29, 0.18);
  backdrop-filter: blur(18px);
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(181, 139, 78, 0.5) transparent;
}

.custom-select.is-drop-up .custom-select-list {
  top: auto;
  bottom: calc(100% + 10px);
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom;
}

.custom-select-list::-webkit-scrollbar {
  width: 8px;
}

.custom-select-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(181, 139, 78, 0.45);
}

.custom-select.is-open .custom-select-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select.is-open.is-drop-up .custom-select-list {
  transform: translateY(0) scale(1);
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(31, 36, 25, 0.74);
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.custom-select-option:hover,
.custom-select-option.is-selected {
  color: var(--color-olive);
  background: rgba(181, 139, 78, 0.13);
}

.custom-select-option.is-selected {
  font-weight: 900;
}

.custom-select-option.is-selected:not(.is-placeholder)::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 6px rgba(181, 139, 78, 0.12);
}

.custom-select-option:not(.is-selected)::before,
.custom-select-option.is-placeholder::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(181, 139, 78, 0.18);
}

.custom-select-option.is-placeholder {
  color: rgba(31, 36, 25, 0.46);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(181, 139, 78, 0.14);
}

.form-error {
  min-height: 18px;
  color: #8c3b25;
  font-size: 0.78rem;
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--color-ivory);
  background: var(--color-olive);
}

.booking-form.is-success .form-success {
  display: block;
}

.map-placeholder,
.contact-panel {
  min-height: 360px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(38, 49, 29, 0.88), rgba(115, 93, 67, 0.78));
  color: var(--color-ivory);
  box-shadow: var(--shadow-soft);
}

.map-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
}

.custom-map-card {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(181, 139, 78, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(38, 49, 29, 0.92), rgba(115, 93, 67, 0.8)),
    var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.custom-map {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 32% 34%, rgba(195, 160, 106, 0.26), transparent 34rem),
    linear-gradient(135deg, rgba(38, 49, 29, 0.9), rgba(115, 93, 67, 0.82));
}

.custom-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 33, 24, 0.58), rgba(29, 33, 24, 0.1) 45%, rgba(29, 33, 24, 0.28)),
    radial-gradient(circle at 82% 18%, rgba(248, 244, 235, 0.18), transparent 28rem);
}

.map-info-panel {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 3rem);
  z-index: 2;
  width: min(430px, calc(100% - 2.4rem));
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgba(248, 244, 235, 0.18);
  border-radius: var(--radius-md);
  color: var(--color-ivory);
  background: rgba(29, 33, 24, 0.74);
  box-shadow: 0 22px 70px rgba(29, 33, 24, 0.28);
  backdrop-filter: blur(16px);
}

.map-info-panel .section-kicker {
  margin-bottom: 12px;
  color: #d6b77f;
}

.map-info-panel h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.7vw, 3.6rem);
  line-height: 0.98;
}

.map-info-panel p {
  margin: 0 0 22px;
  color: rgba(248, 244, 235, 0.78);
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: rgba(248, 244, 235, 0.78);
  text-align: center;
}

.custom-map-card.is-map-ready .map-fallback {
  display: none;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: var(--space-7) 0 28px;
  color: rgba(248, 244, 235, 0.76);
  background: var(--color-footer);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-logo {
  width: min(300px, 100%);
  height: auto;
  padding: 12px 16px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(248, 244, 235, 0.96);
  margin-bottom: 20px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-ivory);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-grid > div:nth-child(3) p,
.footer-contact {
  position: relative;
  padding-left: 38px;
}

.site-footer .footer-grid > div:nth-child(3) p + p,
.footer-contact + .footer-contact {
  margin-top: 10px;
}

.site-footer .footer-grid > div:nth-child(3) p::before,
.footer-links a::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 183, 127, 0.28);
  border-radius: 999px;
  background:
    var(--footer-icon) center / 13px 13px no-repeat,
    radial-gradient(circle at 50% 42%, rgba(214, 183, 127, 0.16), rgba(214, 183, 127, 0.03) 68%),
    rgba(248, 244, 235, 0.055);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  line-height: 1;
}

.site-footer .footer-grid > div:nth-child(3) p::before {
  position: absolute;
  left: 0;
  top: 0.1em;
}

.site-footer .footer-grid > div:nth-child(3) p:nth-of-type(1)::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 10.8c0-3.6 2.9-6.3 6.5-6.3s6.5 2.7 6.5 6.3' fill='none' stroke='%23d6b77f' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M7.8 11.2h2.3v5.4H7.8a2.2 2.2 0 0 1-2.2-2.2v-1a2.2 2.2 0 0 1 2.2-2.2Zm6.1 0h2.3a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 1-2.2 2.2h-2.3v-5.4Z' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linejoin='round'/%3E%3Cpath d='M16.2 16.6c-.5 1.7-1.9 2.6-4.2 2.6' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3C/svg%3E");
}

.site-footer .footer-grid > div:nth-child(3) p:nth-of-type(2)::before,
.footer-links a[href="contacts.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.8' y='6.7' width='14.4' height='10.6' rx='1.8' fill='none' stroke='%23d6b77f' stroke-width='1.55'/%3E%3Cpath d='m6.2 8.3 5.8 4.5 5.8-4.5' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m6.5 16 4.1-3.2m6.9 3.2-4.1-3.2' fill='none' stroke='%23d6b77f' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E");
}

.site-footer .footer-grid > div:nth-child(3) p:nth-of-type(3)::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s6-5.1 6-10.4a6 6 0 1 0-12 0C6 15.9 12 21 12 21Z' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10.6' r='2.2' fill='none' stroke='%23d6b77f' stroke-width='1.55'/%3E%3C/svg%3E");
}

.footer-contact {
  display: block;
}

.footer-contact .contact-label,
.footer-contact .contact-value {
  display: inline;
}

.footer-contact .contact-value a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 250ms var(--ease), opacity 250ms var(--ease);
}

.footer-contact .contact-value a:hover {
  color: var(--color-ivory);
}

.footer-contact .contact-value a:focus-visible {
  outline: 1px solid rgba(214, 183, 127, 0.72);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-contact-phone {
  display: grid;
  gap: 2px;
}

.footer-contact .nowrap {
  white-space: nowrap;
}

.footer-contact-phone .contact-label,
.footer-contact-phone .contact-value {
  display: block;
  white-space: nowrap;
}

.footer-contact-address .contact-label,
.footer-contact-address .contact-value {
  display: block;
}

.footer-contact-address .address-line {
  display: block;
  white-space: nowrap;
}

.footer-map-link {
  display: inline-block;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-links a::before {
  flex: 0 0 24px;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease);
}

.footer-links a:hover::before {
  transform: translateX(2px);
  border-color: rgba(214, 183, 127, 0.58);
  background:
    var(--footer-icon) center / 13px 13px no-repeat,
    radial-gradient(circle at 50% 42%, rgba(214, 183, 127, 0.26), rgba(214, 183, 127, 0.06) 68%),
    rgba(214, 183, 127, 0.14);
}

.footer-links a[href="adventures.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17.5c3.1-4.8 5.2-8.1 7.1-12.2l3.1 7.3h-3.4l2.1 4.9' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.2 18.7h11.6' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3C/svg%3E");
}

.footer-links a[href="stay.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 11.2 12 6l6.5 5.2' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.3 10.5v7.3h9.4v-7.3' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linejoin='round'/%3E%3Cpath d='M10.2 17.8v-4h3.6v4' fill='none' stroke='%23d6b77f' stroke-width='1.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-links a[href="learning.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 18.8v-6.3' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3Cpath d='M12 12.7c-3.2 0-5.2-1.9-5.2-5.2 3.2 0 5.2 2 5.2 5.2Zm0 1.1c3.6 0 5.6-2.1 5.6-5.6-3.5 0-5.6 2.1-5.6 5.6Z' fill='none' stroke='%23d6b77f' stroke-width='1.45' stroke-linejoin='round'/%3E%3Cpath d='M8.3 18.8h7.4' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3C/svg%3E");
}

.footer-links a[href="retreat.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3.2' fill='none' stroke='%23d6b77f' stroke-width='1.55'/%3E%3Cpath d='M12 4.8v2.1m0 10.2v2.1M4.8 12h2.1m10.2 0h2.1M6.9 6.9l1.5 1.5m7.2 7.2 1.5 1.5m0-10.2-1.5 1.5m-7.2 7.2-1.5 1.5' fill='none' stroke='%23d6b77f' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.footer-links a[href="excursions.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5.5v13m-6.5-6.5h13' fill='none' stroke='%23d6b77f' stroke-width='1.35' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='4.6' fill='none' stroke='%23d6b77f' stroke-width='1.45'/%3E%3Ccircle cx='12' cy='12' r='1.3' fill='%23d6b77f'/%3E%3C/svg%3E");
}

.footer-links a[href="gastronomy.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5.4v13.2M6.2 5.7v4.1c0 1.3.8 2.3 1.8 2.3s1.8-1 1.8-2.3V5.7M15 5.5v13.1M15 5.5c2.1.8 3.2 2.4 3.2 4.5 0 2-1.2 3.4-3.2 4' fill='none' stroke='%23d6b77f' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-links a[href="investors.html"]::before {
  --footer-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 18.4h13' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3Cpath d='M7.5 16V9.5m4.5 6.5V6.4m4.5 9.6v-4.8' fill='none' stroke='%23d6b77f' stroke-width='1.55' stroke-linecap='round'/%3E%3Cpath d='M6.6 11.1 12 5.9l3.2 3.1 2.9-3.4' fill='none' stroke='%23d6b77f' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.8 5.5h2.5v2.5' fill='none' stroke='%23d6b77f' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: var(--space-6);
  padding-top: 24px;
  border-top: 1px solid rgba(248, 244, 235, 0.12);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 5px;
    padding: 108px 24px 28px;
    background: rgba(248, 244, 235, 0.97);
    box-shadow: 0 22px 60px rgba(38, 49, 29, 0.16);
    transform: translateY(-110%);
    transition: transform 450ms var(--ease);
  }

  .site-nav::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 24px;
    width: min(230px, calc(100vw - 120px));
    height: 58px;
    background: url("../img/monastyrok-logo-horizontal.png") left center / contain no-repeat;
    filter: drop-shadow(0 10px 24px rgba(38, 49, 29, 0.08));
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-bottom: 0;
    border-radius: 18px;
    font-size: 1.04rem;
    letter-spacing: 0.01em;
  }

  .site-nav a + a {
    box-shadow: inset 0 1px 0 rgba(181, 139, 78, 0.12);
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav a.is-active {
    background:
      linear-gradient(135deg, rgba(255, 252, 244, 0.94), rgba(239, 229, 208, 0.54));
    color: var(--color-olive);
    box-shadow:
      inset 0 0 0 1px rgba(181, 139, 78, 0.18),
      0 16px 34px rgba(38, 49, 29, 0.08);
  }

  .site-nav a.is-active::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 12px;
    border-radius: 999px;
    background: var(--color-gold);
    box-shadow: 0 0 0 7px rgba(181, 139, 78, 0.1);
  }

  .menu-toggle {
    display: block;
    z-index: 55;
  }

  .header-cta {
    justify-self: end;
  }

  .route-map,
  .investor-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-map::before {
    content: none;
  }

  .route-stop:nth-child(even),
  .route-stop:nth-child(even):hover {
    transform: none;
  }

  .route-stop:last-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 28px, 720px);
    --space-8: 5rem;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    max-width: min(230px, calc(100vw - 96px));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 46px;
    margin-left: auto;
    transform: none;
  }

  .menu-toggle span {
    margin: 2px 0;
  }

  .header-cta {
    display: none;
  }

  .living-path {
    display: none;
  }

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

  .hero-inner,
  .section-intro,
  .editorial-grid,
  .investor-split,
  .profit-layout,
  .investment-form-layout,
  .investor-wide-title,
  .contact-layout,
  .editorial-grid.reverse,
  .option-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid.reverse .image-panel {
    order: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .contacts-page .page-hero h1 {
    font-size: clamp(3.4rem, 13vw, 5.4rem);
  }

  .contacts-page .page-hero + .section {
    padding-top: 3rem;
  }

  .atmosphere-section .section-inner {
    width: var(--container);
  }

  .hero-card {
    min-height: 300px;
  }

  .image-panel {
    min-height: 380px;
  }

  .gastronomy-feature .image-panel {
    display: none;
  }

  .cards-grid,
  .cards-grid.two,
  .audience-grid,
  .investment-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .investment-form {
    max-width: none;
    margin-left: 0;
  }

  .profit-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .profit-row i {
    grid-column: 1 / -1;
  }

  .option-nav {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr;
    width: min(var(--container), calc(100% - 32px));
    max-height: 0;
    margin: 36px auto 0;
    padding: 0 10px;
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 320ms var(--ease),
      opacity 220ms var(--ease),
      padding 220ms var(--ease),
      transform 260ms var(--ease);
  }

  .adventures-page .option-nav {
    margin: 36px auto 0;
  }

  .option-nav.is-open {
    max-height: 860px;
    padding: 10px;
    overflow-y: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .option-nav-toggle {
    position: relative;
    top: auto;
    z-index: 22;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: min(var(--container), calc(100% - 32px));
    min-height: 60px;
    margin: -34px auto 0;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(181, 139, 78, 0.23);
    border-radius: 999px;
    color: var(--color-olive);
    background:
      linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(244, 236, 220, 0.88)),
      rgba(248, 244, 235, 0.94);
    box-shadow: 0 24px 70px rgba(38, 49, 29, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    text-align: left;
  }

  .option-nav-toggle-label {
    display: none;
  }

  .option-nav-toggle strong {
    display: block;
    min-width: 0;
    color: var(--color-olive);
    font-family: var(--font-body);
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .option-nav-toggle strong::before {
    content: "Досвіди: ";
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .option-nav-toggle-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(181, 139, 78, 0.11);
    box-shadow: inset 0 0 0 1px rgba(181, 139, 78, 0.15);
  }

  .option-nav-toggle-icon::before,
  .option-nav-toggle-icon::after {
    content: "";
    position: absolute;
    top: 19px;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-gold);
    transition: transform 220ms var(--ease);
  }

  .option-nav-toggle-icon::before {
    left: 12px;
    transform: rotate(42deg);
  }

  .option-nav-toggle-icon::after {
    right: 12px;
    transform: rotate(-42deg);
  }

  .option-nav-toggle.is-open .option-nav-toggle-icon::before {
    transform: rotate(-42deg);
  }

  .option-nav-toggle.is-open .option-nav-toggle-icon::after {
    transform: rotate(42deg);
  }

  .option-nav::-webkit-scrollbar {
    display: none;
  }

  .option-nav a {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(181, 139, 78, 0.14);
    background: rgba(255, 252, 246, 0.44);
    color: rgba(31, 36, 25, 0.72);
    font-size: 1rem;
  }

  .option-nav a::after {
    content: "↘";
    color: rgba(181, 139, 78, 0.72);
    font-size: 0.95rem;
  }

  .option-nav a:hover,
  .option-nav a.is-active {
    color: var(--color-olive);
    background:
      linear-gradient(135deg, rgba(248, 244, 235, 0.86), rgba(255, 252, 246, 0.76));
    box-shadow: inset 0 0 0 1px rgba(181, 139, 78, 0.2);
  }

  .option-nav a.is-active::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 8px rgba(181, 139, 78, 0.1);
  }

  .adventures-page .option-section .image-panel.small {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .gastronomy-page .option-section .image-panel.small {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --space-6: 1.75rem;
    --space-7: 2.25rem;
    --space-8: 2.75rem;
  }

  body {
    font-size: 15px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .custom-select,
  .custom-select-button {
    font-size: 16px;
  }

  .brand-text {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    padding-bottom: 1.35rem;
  }

  .section {
    padding: var(--space-8) 0;
  }

  .section-compact {
    padding: var(--space-6) 0;
  }

  .section-intro,
  .atmosphere-intro,
  .directions-intro,
  .audience-intro {
    margin-bottom: 1.45rem;
  }

  .atmosphere-section {
    padding-top: 2.3rem;
    padding-bottom: 1.35rem;
  }

  #seret-landscape {
    padding-top: 1.35rem;
  }

  .option-section {
    scroll-margin-top: 88px;
  }

  .hero-content,
  .hero-text {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero-text {
    max-width: 23rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 3.75rem);
    line-height: 0.94;
  }

  .contacts-page .page-hero {
    min-height: 340px;
    padding-top: 3.8rem;
    padding-bottom: 3rem;
  }

  .contacts-page .page-hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.65rem);
  }

  .contacts-page .booking-form {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 18px;
    border-radius: 26px;
  }

  .contacts-page .booking-form .form-field,
  .contacts-page .booking-form .custom-select,
  .contacts-page .booking-form input,
  .contacts-page .booking-form textarea,
  .contacts-page .booking-form .custom-select-button {
    max-width: 100%;
  }

  .investors-page .page-hero-inner,
  .investors-page .section-inner {
    width: min(100vw - 28px, 720px);
    max-width: calc(100vw - 28px);
  }

  .investors-page .page-hero h1,
  .investor-copy h2,
  .investor-wide-title h2 {
    font-size: clamp(2.65rem, 10.8vw, 3.35rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .investors-page .page-hero p,
  .investor-copy p,
  .investor-wide-title p,
  .settlement-panel p,
  .project-card p {
    max-width: min(100%, 22rem);
    overflow-wrap: anywhere;
  }

  .investors-page .page-hero p {
    max-width: min(100%, 21rem);
  }

  .settlement-panel p,
  .project-card p {
    max-width: min(100%, 18rem);
  }

  .investor-split,
  .profit-layout,
  .investment-form-layout {
    gap: 1.35rem;
  }

  .investors-page .section {
    padding-top: 1.85rem;
    padding-bottom: 1.85rem;
  }

  .investors-page .page-hero + .section {
    padding-top: 1.55rem;
  }

  .investors-page .investor-wide-title {
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .investors-page .investor-copy h2,
  .investors-page .investor-wide-title h2 {
    margin-bottom: 0.85rem;
  }

  .investors-page .investor-roadmap {
    gap: 14px;
    padding-top: 0.9rem;
  }

  .investors-page .project-grid,
  .investors-page .settlement-panel {
    gap: 14px;
  }

  .settlement-panel {
    padding: 16px;
  }

  .settlement-panel article,
  .project-card,
  .profit-card {
    padding: 22px;
  }

  .project-card {
    min-height: auto;
    padding-top: 78px;
  }

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

  .custom-map-card {
    min-height: 560px;
    border-radius: 26px;
  }

  .map-info-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .atmosphere-intro .section-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.2vw, 2.9rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .atmosphere-lead {
    width: 100%;
    max-width: 20.5rem;
    padding-top: 1.4rem;
    padding-left: 1.1rem;
    padding-right: 0.8rem;
    font-size: clamp(1.32rem, 5.8vw, 1.72rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .seret-feature h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .directions-intro .section-title {
    width: 100%;
    max-width: none;
    font-size: clamp(2.3rem, 10.6vw, 3.15rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .audience-intro .section-title {
    width: 100%;
    max-width: none;
    font-size: clamp(2.25rem, 9.8vw, 3rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .location-link {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 15px;
  }

  .location-action {
    grid-column: 2;
    white-space: normal;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .route-map,
  .investor-roadmap {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .investors-page .investor-roadmap {
    padding: 0.9rem 0 0;
  }

  .investors-page .project-grid,
  .investors-page .investor-roadmap {
    width: 100%;
  }

  .investors-page .project-card,
  .investors-page .roadmap-item {
    width: 100%;
  }

  .option-meta {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 32px 22px;
  }

  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .final-cta h2 br {
    display: none;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .living-path {
    display: none;
  }

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