:root {
  --ground: #eef4ea;
  --surface: #fbfdf8;
  --surface-raised: #ffffff;
  --ink: #182219;
  --ink-soft: #4f5c49;
  --ink-faint: #8a9581;
  --line: #d7e0cd;
  --moss: #3f7a52;
  --moss-deep: #1f3a28;
  --moss-soft: #e1f0e2;
  --amber: #d98f3d;
  --amber-soft: #faead2;
  --amber-ink: #6b4416;
  --river: #3f8f93;
  --river-soft: #dcf0ef;
  --shadow:
    0 1px 2px rgba(24, 34, 25, 0.05), 0 16px 40px -20px rgba(24, 34, 25, 0.3);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}
::selection {
  background: var(--amber-soft);
  color: var(--amber-ink);
}
a {
  color: var(--moss);
}
img {
  max-width: 100%;
  display: block;
}
[hidden] {
  display: none !important;
}

.display {
  font-family: "Yeseva One", "PT Serif", Georgia, serif;
  font-weight: 400;
}
.mono {
  font-family: "PT Sans", system-ui, sans-serif;
}
h1,
h2,
h3 {
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-family: "Yeseva One", "PT Serif", Georgia, serif;
  font-size: clamp(38px, 6.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
h2 {
  font-family: "Yeseva One", "PT Serif", Georgia, serif;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.12;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
p {
  margin: 0 0 14px;
  color: var(--ink);
}
p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.measure {
  max-width: 64ch;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--moss);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 200;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.shell {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* ---------- Kicker (replaces generic eyebrow tags) ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid var(--line);
  background: var(--surface-raised);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kicker__mark svg {
  width: 16px;
  height: 16px;
}
.kicker__text {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  max-width: 1160px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  height: 38px;
  width: auto;
  flex: none;
  display: block;
}
.brand-name {
  font-family: "Yeseva One", serif;
  font-size: 17px;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--ink);
  border-bottom-color: var(--line);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--amber);
  color: var(--moss-deep);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--surface-raised);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* icon buttons: theme toggle, lang switch */
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.icon-btn:hover {
  color: var(--ink);
  border-color: var(--moss);
}
.icon-btn svg {
  width: 17px;
  height: 17px;
}

.lang-switch {
  position: relative;
}
.lang-btn {
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.lang-btn:hover {
  color: var(--ink);
  border-color: var(--moss);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  min-width: 140px;
  z-index: 120;
}
.lang-menu li {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.lang-menu li:hover {
  background: var(--moss-soft);
  color: var(--ink);
}
.lang-menu li[aria-selected="true"] {
  color: var(--moss);
  font-weight: 700;
}
.lang-menu li .code {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-faint);
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  cursor: pointer;
  flex: none;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars {
  width: 16px;
  height: 12px;
  position: relative;
}
.nav-toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    top 0.25s ease;
}
.nav-toggle .bar:nth-child(1) {
  top: 0;
}
.nav-toggle .bar:nth-child(2) {
  top: 5px;
}
.nav-toggle .bar:nth-child(3) {
  top: 10px;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 10, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 130;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-panel {
  position: fixed;
  top: 0;
  right: -86vw;
  width: min(84vw, 340px);
  height: 100%;
  z-index: 140;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  transition: right 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  padding: 20px 22px 26px;
  overflow-y: auto;
}
.nav-panel.open {
  right: 0;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.panel-links {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.panel-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16.5px;
  font-family: "PT Serif", Georgia, serif;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.panel-links a:active {
  background: var(--moss-soft);
  border-color: var(--moss);
}
.plink-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  flex: none;
}
.plink-icon svg {
  width: 16px;
  height: 16px;
}
.panel-foot {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-controls {
  display: flex;
  gap: 10px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .nav-right .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
@media (min-width: 821px) {
  .nav-overlay,
  .nav-panel {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 52px 60px;
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--moss);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-facts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-fact .num {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--moss);
  font-variant-numeric: tabular-nums;
}
.hero-fact .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.hero-visual {
  position: relative;
}
.topo {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-grid > * {
  animation: riseIn 0.6s ease both;
}
.hero-grid > *:nth-child(2) {
  animation-delay: 0.08s;
}

/* ---------- Photo slots ---------- */
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(
    155deg,
    var(--moss-soft),
    var(--surface-raised) 70%
  );
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 22px,
    color-mix(in srgb, var(--moss) 22%, transparent) 22px 23px
  );
  -webkit-mask-image: radial-gradient(
    ellipse at 30% 20%,
    black,
    transparent 70%
  );
  mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 70%);
}
.shot--hero {
  aspect-ratio: 16/9;
}

.shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot__tag {
  position: relative;
  margin: 14px;
  padding: 6px 11px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-raised) 82%, transparent);
  backdrop-filter: blur(6px);
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
}
.shot__tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

/* ---------- Sections ---------- */
section {
  padding-block: 64px;
  scroll-margin-top: 88px;
}
section.alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.sec-head {
  margin-bottom: 34px;
  max-width: 64ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.amenities {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
}
.amenities li {
  font-size: 14.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.amenities li::before {
  content: "·";
  color: var(--amber);
  font-weight: 700;
}
.fact-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.fact-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 14px;
  font-size: 14.5px;
}
.fact-card dt {
  color: var(--ink-soft);
}
.fact-card dd {
  margin: 0;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 13.5px;
}

/* Gallery - one banner + a tidy uniform grid */
.gallery-banner {
  margin-bottom: 14px;
}
.gallery-banner .shot {
  aspect-ratio: 21/7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid .shot {
  aspect-ratio: 4/5;
}
.gallery-more {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.gallery-more .shot {
  aspect-ratio: 4/5;
}
.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-more {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-banner .shot {
    aspect-ratio: 4/3;
  }
}

/* Pricing */
.price-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .price-wrap {
    grid-template-columns: 1fr;
  }
}
table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.price-table th {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table td.amount {
  font-family: "PT Sans", system-ui, sans-serif;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--moss);
  font-weight: 600;
}
.price-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 12px;
}
.tbd {
  background: var(--amber-soft);
  color: var(--amber-ink);
  padding: 1px 7px;
  border-radius: 5px;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 12px;
}

.calendar-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-head h3 {
  margin: 0;
  font-size: 15px;
}
.cal-embed-wrap {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-raised);
}
.cal-embed {
  width: 100%;
  height: 340px;
  display: block;
}
@media (max-width: 480px) {
  .cal-embed {
    height: 300px;
  }
}
.cal-demo-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* Form */
.form-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  font-family: "PT Serif", Georgia, serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.field textarea {
  height: 96px;
  resize: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--moss);
}
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.form-foot p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: 40ch;
}

/* Location */
.loc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.route-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.route-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.route-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.route-list .place {
  color: var(--ink);
}
.route-list .dist {
  font-family: "PT Sans", system-ui, sans-serif;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* Nearby */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) {
  .nearby-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
}
.poi {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.poi .kind {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 8px;
  display: block;
}
.poi h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.poi p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* Rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 760px) {
  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.rule {
  background: var(--surface-raised);
  padding: 20px 18px;
}
.rule .lbl {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
  display: block;
}
.rule .val {
  font-size: 15px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card .lbl {
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-card .val {
  font-size: 15.5px;
}
.contact-card .val .tbd {
  font-size: 12px;
}

.cta-band {
  background: var(--moss-deep);
  color: #eef4ea;
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 26px;
}
.cta-band p {
  color: color-mix(in srgb, #eef4ea 78%, transparent);
  margin: 0;
  max-width: 46ch;
}

footer.site-foot {
  border-top: 1px solid var(--line);
  padding-block: 28px;
  margin-top: 20px;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}
.foot-row a {
  color: var(--ink-faint);
}

/* =========================================================
   ПАРАЛАКС: гора + река (добавено в о4)
   ========================================================= */
html { overflow-x: clip; }
body { overflow-x: clip; }
.plx { will-change: transform; }

/* hero: снимката се движи в рамката си */
.shot--hero .shot__img {
  inset: -10% 0;
  height: 120%;
}
.hero {
  padding-bottom: clamp(130px, 16vw, 290px);
  background: linear-gradient(180deg, var(--ground) 0%, #e6efe1 100%);
}
.forest {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(120px, 15vw, 280px);
  pointer-events: none;
  z-index: 0;
}
.forest svg {
  position: absolute;
  left: -2%;
  width: 104%;
  height: auto;
  aspect-ratio: 1440 / 160;
  min-height: 76px;
  bottom: 0;
  display: block;
  overflow: visible;
}
.forest .f-far  { bottom: 22%; fill: #cfe0cb; }
.forest .f-mid  { bottom: 9%;  fill: #adc9ab; }
.forest .f-near { fill: #7fa487; }
.forest .f-ground {
  height: clamp(18px, 2.4vw, 34px);
  min-height: 0;
  aspect-ratio: auto;
  width: 200%;
  left: 0;
  fill: var(--ground);
}
.hero-grid { position: relative; z-index: 1; }

/* река */
.river {
  position: relative;
  min-height: clamp(380px, 62vh, 580px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--river);
}
.river-media {
  position: absolute;
  inset: -16% 0;
  z-index: -2;
}
.river-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.river::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 34, 25, 0.55) 0%, rgba(24, 34, 25, 0.15) 60%, transparent 100%);
}
.river-copy {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px;
  color: #fff;
}
.river-copy .kicker__mark {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.river-copy .kicker__text { color: rgba(255, 255, 255, 0.85); }
.river-copy h2 {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 12px;
}
.river-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 44ch;
  margin: 0;
}
.waves {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(44px, 6vw, 80px);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.waves--top { top: -1px; transform: scaleY(-1); }
.waves--bottom { bottom: -1px; }
.waves .w {
  position: absolute;
  inset: 0 auto 0 0;
  width: 200%;
  height: 100%;
  animation: flow 30s linear infinite;
}
.waves .w svg { width: 100%; height: 100%; display: block; }
.waves .w1 { fill: var(--river-soft); opacity: 0.45; }
.waves .w2 { fill: var(--river); opacity: 0.35; animation-duration: 21s; animation-direction: reverse; }
.waves .w3 { fill: var(--ground); animation-duration: 15s; }
.waves--bottom .w3 { fill: var(--surface); }
@keyframes flow { to { transform: translateX(-50%); } }

/* гора в края на страницата */
.forest-edge {
  position: relative;
  height: clamp(120px, 15vw, 280px);
  pointer-events: none;
  margin-top: 10px;
}
.forest-edge .forest { height: 100%; }
.forest-edge .f-far  { fill: #d3e3cf; }
.forest-edge .f-mid  { fill: #9fbf9f; }
.forest-edge .f-near { fill: var(--moss-deep); }
footer.site-foot {
  background: var(--moss-deep);
  border-top: 0;
  margin-top: 0;
}
.foot-row, .foot-row a { color: rgba(238, 244, 234, 0.72); }

@media (max-width: 600px) {
  .river-copy { padding: 80px 20px; }
  .hero { padding-bottom: 110px; }
}
@media (prefers-reduced-motion: reduce) {
  .plx { transform: none !important; }
  .waves .w { animation: none; }
}

.river + section.alt { border-top: 0; }

/* hero: снимката заема 2/3 от ширината */
@media (min-width: 881px) {
  .hero-grid {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(34px, 3.7vw, 52px);
  }
  .hero .lede {
    font-size: 17px;
  }
  .hero-facts {
    gap: 16px;
  }
}

/* =========================================================
   HERO: стек от снимки, които се наслагват
   ========================================================= */
.hero-visual {
  /* леко вдясно — към ръба на екрана, но без да излиза */
  margin-right: min(0px, max(-80px, calc((1160px - 100vw) / 2)));
}
.stack-plx { position: relative; }
.stack {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.stack__card {
  --i: 0;
  --x: 0px;
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--moss-soft);
  box-shadow:
    0 1px 2px rgba(24, 34, 25, 0.06),
    0 22px 50px -24px rgba(24, 34, 25, 0.45);
  z-index: calc(10 - var(--i));
  transform:
    translateX(var(--x))
    translate(calc(var(--i) * -16px), calc(var(--i) * -14px))
    rotate(calc(var(--i) * -2.2deg))
    scale(calc(1 - var(--i) * 0.035));
  filter: brightness(calc(1 - var(--i) * 0.07));
  opacity: calc(1 - max(0, var(--i) - 2));
  transition:
    transform 0.9s cubic-bezier(0.22, 0.8, 0.2, 1),
    filter 0.9s ease,
    opacity 0.5s ease;
  will-change: transform;
}
.stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* паркирана зад десния ръб на екрана: без анимация */
.stack__card.is-parked {
  transition: none;
  transform: translateX(var(--x)) rotate(9deg);
  opacity: 1;
  z-index: 20;
}
/* влита отгоре */
.stack__card.is-flying {
  z-index: 20;
  transition:
    transform 1.1s cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 0.6s ease;
}
.stack__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 30;
}
.stack__dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding-left: 4px;
}
.stack__dots span {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.4s, width 0.4s;
}
.stack__dots span.on {
  width: 34px;
  background: var(--amber);
}
@media (max-width: 880px) {
  .stack { margin: 22px 10px 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .stack__card { transition: opacity 0.4s ease; }
}
@media (max-width: 880px) {
  .stack { margin: 26px 0 0 30px; }
  .stack__dots { padding-left: 34px; }
}

/* =========================================================
   v6: зелен акцент вместо оранжев + по-широк hero
   ========================================================= */
:root {
  --amber: #3f7a52;
  --amber-soft: #e1f0e2;
  --amber-ink: #1f3a28;
}
.btn-primary {
  background: var(--moss);
  color: #fff;
}
.btn-primary:hover {
  background: #356a46;
}

@media (min-width: 881px) {
  /* текстът е подравнен с останалото съдържание, снимките стигат почти до десния ръб */
  .hero-grid {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1160px) / 2 + 24px));
    padding-right: clamp(24px, 3vw, 56px);
    grid-template-columns: minmax(400px, 1fr) 1.65fr;
    gap: clamp(40px, 4vw, 72px);
  }
  .hero h1 {
    font-size: clamp(38px, 3.6vw, 60px);
  }
  .hero .lede {
    font-size: 18px;
    max-width: 44ch;
  }
  .hero-visual {
    margin-right: 0;
  }
}
