@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope-800.ttf") format("truetype");
}

:root {
  --pine: #173f35;
  --pine-2: #0f2d27;
  --lake: #2f6f85;
  --reed: #d9bc69;
  --clay: #b85f3f;
  --berry: #7a2f48;
  --ink: #1f2a24;
  --muted-ink: #61706a;
  --paper: #fffaf1;
  --milk: #f5efe4;
  --white: #ffffff;
  --line: rgba(31, 42, 36, 0.14);
  --shadow: 0 24px 60px rgba(15, 45, 39, 0.14);
  --radius: 8px;
  --radius-soft: 6px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

::selection {
  background: rgba(217, 188, 105, 0.55);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--pine);
  color: var(--white);
  border-radius: var(--radius-soft);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 14px 34px rgba(15, 45, 39, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--reed);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted-ink);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius-soft);
  color: rgba(31, 42, 36, 0.76);
  font-weight: 700;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--pine);
  background: rgba(217, 188, 105, 0.18);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pine);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.phone-link svg,
.contact-mini svg,
.service-list svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--white);
  color: var(--pine);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-backdrop {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--pine);
  border-radius: var(--radius-soft);
  background: var(--pine);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 45, 39, 0.22);
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary {
  background: var(--clay);
  border-color: var(--clay);
}

.btn-outline {
  background: transparent;
  color: var(--pine);
  border-color: rgba(23, 63, 53, 0.3);
}

.btn-outline:hover {
  background: rgba(23, 63, 53, 0.06);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(88svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.page-hero::before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-home .hero-media {
  background-image: url("../images/lake-shchuchye.jpg");
  background-position: center 62%;
}

.hero-shade,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 31, 27, 0.78), rgba(12, 31, 27, 0.44) 48%, rgba(12, 31, 27, 0.16));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 380px);
  align-items: end;
  gap: 42px;
  padding: 88px 0 44px;
}

.hero-copy {
  padding-bottom: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--reed);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(52px, 8vw, 104px);
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
  backdrop-filter: blur(20px);
}

.hero-facts div {
  padding: 18px;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.12);
}

.fact-label {
  display: block;
  color: var(--reed);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.1;
}

.hero-facts small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 28px 0;
}

.muted {
  background: var(--milk);
}

.lake-band {
  background: var(--pine);
  color: var(--white);
}

.lake-band p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2 {
  color: var(--pine-2);
}

.lake-band .section-copy h2 {
  color: var(--white);
}

.section-copy {
  max-width: 630px;
}

.section-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted-ink);
  font-size: 18px;
}

.lake-band .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.row-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.text-link,
.mini-link {
  color: var(--clay);
  font-weight: 900;
  border-bottom: 2px solid rgba(184, 95, 63, 0.26);
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover,
.mini-link:hover {
  color: var(--berry);
  border-color: currentColor;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(15, 45, 39, 0.08);
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rating-block p {
  margin: 0;
  color: var(--muted-ink);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--reed);
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.proof-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 0.76fr 0.55fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.feature-photo img,
.food-panel img,
.room-card img,
.detail-card img {
  border-radius: var(--radius);
  object-fit: cover;
}

.image-stack img:first-child {
  height: 520px;
}

.image-stack img:last-child {
  height: 360px;
  margin-bottom: 42px;
}

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

.benefit-card,
.service-card,
.faq-item,
.review-action,
.contact-card,
.booking-form,
.review-form,
.rating-panel,
.price-callout,
.booking-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 45, 39, 0.07);
}

.benefit-card,
.service-card,
.faq-item {
  min-height: 250px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:hover,
.service-card:hover,
.room-card:hover,
.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 95, 63, 0.35);
}

.benefit-card svg,
.service-card svg {
  width: 34px;
  height: 34px;
  color: var(--lake);
  margin-bottom: 26px;
}

.benefit-card p,
.service-card p,
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted-ink);
}

.service-card h2,
.faq-item h2 {
  font-size: 28px;
  line-height: 1.12;
}

.faq-item {
  display: flex;
  flex-direction: column;
}

.faq-item h2 {
  min-height: 3.36em;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.room-card img {
  height: 260px;
  border-radius: 0;
}

.room-body {
  padding: 24px;
}

.room-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47, 111, 133, 0.11);
  color: var(--lake);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.room-body p {
  margin: 12px 0 0;
  color: var(--muted-ink);
}

.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.room-foot strong {
  color: var(--pine);
}

.feature-photo img {
  height: 520px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.service-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
}

.food-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.food-panel > div {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--white);
}

.food-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.food-panel ul,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.food-panel li,
.check-list li {
  position: relative;
  margin-top: 11px;
  padding-left: 24px;
}

.food-panel li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reed);
  content: "";
}

.food-panel img {
  height: 360px;
}

.price-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--white);
}

.price-note p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.reviews-preview,
.reviews-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.reviews-preview,
.reviews-grid,
.booking-grid {
  align-items: center;
}

.contact-grid {
  align-items: stretch;
}

.review-action,
.rating-panel {
  padding: 34px;
}

.review-action p,
.rating-panel p {
  margin: 14px 0 24px;
  color: var(--muted-ink);
}

.big-rating {
  display: block;
  color: var(--pine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 108px;
  font-weight: 700;
  line-height: 0.88;
}

.booking-section {
  background: var(--pine);
  color: var(--white);
}

.booking-section .section-copy h2 {
  color: var(--white);
}

.booking-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.booking-form,
.review-form {
  min-width: 0;
  padding: 28px;
}

.review-form h2 {
  margin-bottom: 24px;
  font-size: 34px;
  line-height: 1.08;
}

.booking-form label,
.review-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--pine-2);
  font-size: 14px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.form-row label {
  margin-bottom: 0;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(31, 42, 36, 0.16);
  border-radius: var(--radius-soft);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  border-color: var(--lake);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 111, 133, 0.14);
}

.messenger-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 20px;
}

.messenger-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(31, 42, 36, 0.12);
  border-radius: var(--radius-soft);
  background: var(--paper);
  cursor: pointer;
}

.messenger-choice input {
  width: auto;
}

.messenger-choice input,
.consent-check input {
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.messenger-choice input:focus,
.consent-check input:focus {
  background: transparent;
  box-shadow: none;
}

.messenger-choice input:focus-visible,
.consent-check input:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 3px;
}

.legal-consents {
  display: grid;
  gap: 12px;
  margin: 6px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.booking-form .consent-check,
.review-form .consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pine);
}

.consent-check a,
.form-privacy-note a {
  color: var(--lake);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy-note {
  margin: 0;
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.55;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.contact-mini {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-mini span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-card {
  padding: 34px;
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.4vw, 46px);
  line-height: 1.02;
}

dl {
  margin: 0;
}

dl div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.map-wrap {
  overflow: hidden;
  min-height: 540px;
  display: grid;
  border-radius: var(--radius);
  background: var(--milk);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 92px 0 42px;
  background: var(--pine-2);
  color: var(--white);
}

.legal-hero .eyebrow {
  color: var(--reed);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.legal-content {
  max-width: 900px;
  padding: 64px 0 84px;
}

.legal-content h2 {
  margin: 48px 0 16px;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 30px 0 10px;
  color: var(--pine-2);
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #3d4a44;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-meta {
  padding: 20px 22px;
  border-left: 4px solid var(--reed);
  background: var(--milk);
}

.legal-meta p {
  margin: 0;
}

.legal-meta p + p {
  margin-top: 8px;
}

.legal-content a {
  color: var(--lake);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
}

.rooms-hero::before {
  background-image: url("../images/main-house.jpg");
  background-position: center 42%;
}

.services-hero::before {
  background-image: url("../images/territory.jpg");
}

.prices-hero::before {
  background-image: url("../images/lake-shchuchye.jpg");
  background-position: center 62%;
}

.reviews-hero::before {
  background-image: url("../images/veranda.jpg");
}

.contacts-hero::before {
  background-image: url("../images/gazebo.jpg");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 110px 0 72px;
}

.page-hero-inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.room-detail-grid {
  display: grid;
  gap: 28px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-card img {
  height: 360px;
}

.detail-card h2 {
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.02;
}

.detail-card > div {
  padding: 10px 18px 10px 0;
}

.detail-card p {
  color: var(--muted-ink);
}

.booking-cta,
.price-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
}

.booking-cta h2,
.price-callout h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.booking-cta p,
.price-callout p {
  margin: 16px 0 0;
  color: var(--muted-ink);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 45, 39, 0.07);
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.price-table caption {
  padding: 22px 24px;
  color: var(--pine);
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: rgba(217, 188, 105, 0.16);
  color: var(--pine);
  font-size: 13px;
  text-transform: uppercase;
}

.price-table td:nth-child(3) {
  color: var(--clay);
  font-weight: 900;
}

.price-callout {
  margin-top: 28px;
}

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

.timeline-item {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--reed);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
  color: var(--muted-ink);
}

.site-footer {
  background: var(--pine-2);
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 0.8fr;
  gap: 42px;
}

.brand-footer .brand-mark {
  background: var(--reed);
  color: var(--pine);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--reed);
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.site-footer a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

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

.site-footer .footer-legal a {
  display: inline;
  margin: 0;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  gap: 10px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 45, 39, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact a:last-child {
  background: var(--lake);
}

.floating-contact a:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-contact svg {
  width: 24px;
  height: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

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

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

@media (max-width: 1080px) {
  .header-inner {
    gap: 16px;
  }

  .phone-link {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .reviews-preview,
  .reviews-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 72px;
  }

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

  .benefit-grid,
  .service-grid,
  .room-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --container: min(1180px, calc(100% - 28px));
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 2;
    justify-self: stretch;
    display: grid;
    gap: 0;
    width: 100vw;
    max-height: calc(100dvh - var(--header-height));
    padding: 8px 14px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 250, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(15, 45, 39, 0.14);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(31, 42, 36, 0.1);
    border-radius: 0;
    font-size: 16px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    transform: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 990;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(12, 31, 27, 0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(217, 188, 105, 0.72);
    outline-offset: 2px;
  }

  .header-actions .btn-small {
    display: none;
  }

  .hero {
    min-height: calc(92svh - var(--header-height));
  }

  .hero-grid {
    gap: 22px;
    padding: 62px 0 24px;
  }

  .hero .reveal,
  .page-hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  h1 {
    font-size: clamp(42px, 12.8vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .hero-text,
  .page-hero-inner p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-facts,
  .proof-strip,
  .price-note,
  .booking-cta,
  .price-callout {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 72px 0;
  }

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

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

  .detail-card > div {
    padding: 0;
  }

  .booking-grid,
  .reviews-grid,
  .contact-grid {
    gap: 32px;
  }

  .booking-form,
  .review-form {
    width: 100%;
    align-self: stretch;
  }

}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100% - 24px));
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-inner {
    padding: 72px 0 44px;
  }

  .price-table-wrap.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .legal-hero {
    padding: 64px 0 36px;
  }

  .legal-content {
    padding: 44px 0 64px;
  }

  .legal-content h2 {
    margin-top: 36px;
  }

  .legal-meta {
    padding: 18px;
  }

  .hero-actions,
  .proof-actions,
  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .benefit-grid,
  .service-grid,
  .room-grid,
  .faq-grid,
  .timeline-grid,
  .service-list,
  .form-row,
  .food-panel {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .image-stack img:last-child,
  .feature-photo img,
  .food-panel img,
  .detail-card img,
  .map-wrap,
  .map-wrap iframe {
    height: 340px;
    min-height: 340px;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

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

  .booking-form,
  .review-form,
  .contact-card,
  .review-action,
  .rating-panel {
    padding: 20px;
  }

  .review-form h2 {
    font-size: 30px;
  }

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

  .messenger-choice label {
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    padding: 9px 8px;
  }

  .benefit-card,
  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .benefit-card svg,
  .service-card svg {
    margin-bottom: 18px;
  }

  .big-rating {
    font-size: 82px;
  }

  .faq-item h2 {
    min-height: 0;
  }

  .faq-item {
    min-height: 0;
  }

  .price-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-table {
    display: block;
    min-width: 0;
  }

  .price-table caption {
    display: block;
    padding: 0;
    margin-bottom: 18px;
    font-size: 26px;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: grid;
    gap: 14px;
  }

  .price-table tr {
    display: grid;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(15, 45, 39, 0.06);
  }

  .price-table td,
  .price-table td:nth-child(3) {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border: 0;
    color: var(--ink);
    font-weight: 600;
  }

  .price-table td + td {
    border-top: 1px solid var(--line);
  }

  .price-table td::before {
    content: attr(data-label);
    color: var(--muted-ink);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .price-table td:nth-child(3) {
    color: var(--clay);
    font-weight: 900;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 82px;
  }

  .floating-contact {
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    gap: 8px;
  }

  .floating-contact a {
    width: 44px;
    height: 44px;
  }
}
