:root {
  --bg: #eef6ea;
  --bg-deep: #d9ebd5;
  --surface: rgba(246, 252, 244, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #183022;
  --muted: #56705d;
  --accent: #4f8a57;
  --accent-dark: #2f5f3b;
  --line: rgba(26, 57, 36, 0.12);
  --shadow: 0 24px 70px rgba(48, 93, 60, 0.16);
  --radius: 24px;
  --container: 1180px;
  --pattern-opacity: 0.045;
  --hero-gradient: linear-gradient(160deg, rgba(73, 124, 88, 0.12), rgba(126, 185, 123, 0.24));
  --hero-pattern: linear-gradient(180deg, #d9ecd5, #edf7e9);
}

:root[data-season="winter"] {
  --bg: #eef7ff;
  --bg-deep: #dcecff;
  --surface: rgba(245, 251, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #1c3148;
  --muted: #5f7692;
  --accent: #74a9df;
  --accent-dark: #3d6f9f;
  --line: rgba(44, 84, 122, 0.12);
  --shadow: 0 24px 70px rgba(82, 130, 176, 0.16);
  --hero-gradient: linear-gradient(160deg, rgba(116, 169, 223, 0.1), rgba(194, 227, 255, 0.22));
  --hero-pattern: linear-gradient(180deg, #dcecff, #f7fbff);
}

:root[data-season="spring"] {
  --bg: #eef6ea;
  --bg-deep: #d9ebd5;
  --surface: rgba(246, 252, 244, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #183022;
  --muted: #56705d;
  --accent: #4f8a57;
  --accent-dark: #2f5f3b;
  --line: rgba(26, 57, 36, 0.12);
  --shadow: 0 24px 70px rgba(48, 93, 60, 0.16);
  --hero-gradient: linear-gradient(160deg, rgba(73, 124, 88, 0.12), rgba(126, 185, 123, 0.24));
  --hero-pattern: linear-gradient(180deg, #d9ecd5, #edf7e9);
}

:root[data-season="summer"] {
  --bg: #fff6d8;
  --bg-deep: #ffe6a4;
  --surface: rgba(255, 251, 236, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #443015;
  --muted: #7c6840;
  --accent: #d4a11c;
  --accent-dark: #a57908;
  --line: rgba(97, 72, 20, 0.12);
  --shadow: 0 24px 70px rgba(184, 142, 26, 0.18);
  --hero-gradient: linear-gradient(160deg, rgba(233, 194, 84, 0.16), rgba(255, 229, 145, 0.24));
  --hero-pattern: linear-gradient(180deg, #ffe8a9, #fff7dc);
}

:root[data-season="autumn"] {
  --bg: #fff1de;
  --bg-deep: #ffd4a6;
  --surface: rgba(255, 247, 238, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #452619;
  --muted: #7f5a42;
  --accent: #c66a2b;
  --accent-dark: #93481a;
  --line: rgba(94, 47, 20, 0.12);
  --shadow: 0 24px 70px rgba(172, 93, 39, 0.18);
  --hero-gradient: linear-gradient(160deg, rgba(212, 127, 58, 0.14), rgba(255, 196, 116, 0.24));
  --hero-pattern: linear-gradient(180deg, #ffd4ad, #fff1de);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 22%, transparent), transparent 28%),
    radial-gradient(circle at right 20%, color-mix(in srgb, var(--bg-deep) 60%, transparent), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 76%, white) 52%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/background.PNG");
  background-position: center top;
  background-repeat: repeat;
  background-size: min(760px, 92vw) auto;
  opacity: var(--pattern-opacity);
  mix-blend-mode: multiply;
}

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

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

.season-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.season-decor__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.45;
  background: color-mix(in srgb, var(--accent) 40%, white);
  animation: floatOrb 16s ease-in-out infinite;
}

.season-decor__orb--one {
  width: 280px;
  height: 280px;
  top: 70px;
  left: -60px;
}

.season-decor__orb--two {
  width: 220px;
  height: 220px;
  right: -40px;
  top: 360px;
  animation-duration: 18s;
}

.season-decor__orb--three {
  width: 180px;
  height: 180px;
  left: 18%;
  bottom: 80px;
  animation-duration: 14s;
}

.container,
.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--surface-strong) 85%, transparent);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 10%, white);
  outline: none;
}

.hero {
  padding: 48px 0 28px;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.hero__content,
.hero__aside,
.card,
.gallery__item,
.price-table-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero__content {
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 24%, transparent), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  letter-spacing: -0.05em;
  max-width: 17ch;
}

h1 span {
  display: block;
}

.hero__lead {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: color-mix(in srgb, var(--accent) 8%, white);
  outline: none;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.fact {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.fact strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero__aside {
  min-width: 0;
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  border-radius: 22px;
  background:
    var(--hero-gradient),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.26) 0 18px,
      rgba(255, 255, 255, 0.12) 18px 36px
    ),
    var(--hero-pattern);
  overflow: hidden;
  isolation: isolate;
}

.hero__visual > div {
  position: absolute;
  inset: 0;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.88) contrast(1.06) brightness(0.9);
  transform: scale(1);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__visual::before {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 34%, transparent), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(13, 35, 19, 0.24));
  mix-blend-mode: multiply;
}

.hero__visual::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    inset 0 -150px 160px color-mix(in srgb, var(--text) 28%, transparent);
}

.hero__aside-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.hero__aside-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  line-height: 1.5;
}

section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-grid,
.contacts-grid {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.card {
  padding: 28px;
}

.card p,
.card li,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.features li {
  min-height: 100%;
}

.feature-button {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 10%, white);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.feature-button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease;
}

.feature-button span {
  position: relative;
  z-index: 1;
}

.feature-button:hover,
.feature-button:focus-visible,
.feature-button.is-active {
  background: color-mix(in srgb, var(--accent) 17%, white);
  border-color: color-mix(in srgb, var(--accent) 28%, white);
  color: var(--text);
  outline: none;
}

.feature-button:hover,
.feature-button:focus-visible {
  transform: translateY(-1px);
}

.feature-button.is-active::before {
  opacity: 1;
  animation: fillFeature 4.5s linear forwards;
}

.features.is-paused .feature-button.is-active::before {
  animation-play-state: paused;
}

.about-location {
  align-content: start;
}

.about-location__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  border: 1px solid var(--line);
}

.about-location__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.about-location__media.is-switching .about-location__image {
  opacity: 0;
  transform: scale(1.035);
}

.about-location__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(31, 46, 31, 0.16);
  transform: translateX(-50%);
}

.about-location__dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 28%, white);
  cursor: pointer;
  transition: width 0.24s ease, border-radius 0.24s ease, background 0.24s ease;
}

.about-location__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.gallery-carousel {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(76%, 1fr);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 18px;
}

.gallery-track.is-animating {
  scroll-snap-type: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  scroll-snap-align: center;
  background:
    linear-gradient(180deg, transparent 20%, rgba(42, 36, 29, 0.58) 100%),
    linear-gradient(145deg, color-mix(in srgb, var(--bg-deep) 72%, white), color-mix(in srgb, var(--bg) 80%, white) 65%, color-mix(in srgb, var(--accent) 24%, white));
  color: #fff;
  overflow: hidden;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 22%, rgba(24, 21, 17, 0.74) 100%),
    linear-gradient(90deg, rgba(24, 21, 17, 0.34), transparent 56%);
  pointer-events: none;
}

.gallery__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery__caption {
  position: relative;
  z-index: 2;
  max-width: min(520px, 90%);
}

.gallery__item strong {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.gallery__item small {
  font-size: 1rem;
  line-height: 1.4;
}

.gallery__item small {
  opacity: 0.82;
  display: block;
  margin-top: 6px;
}

.gallery__item--restaurant .gallery__image {
  object-position: center 46%;
}

.gallery__item--aframe .gallery__image {
  object-position: center 52%;
}

.gallery__item--sauna .gallery__image {
  object-position: center 52%;
}

.gallery__item--yard .gallery__image {
  object-position: center 44%;
}

.gallery-control {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 46, 31, 0.18);
  transition: 0.2s ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  background: var(--accent);
  color: #fff;
  outline: none;
}

.gallery-control--prev {
  left: 14px;
}

.gallery-control--next {
  right: 14px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.gallery-dot {
  position: relative;
  width: 28px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.gallery-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  margin: auto;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 26%, white);
  transition: width 0.28s ease, border-radius 0.28s ease, background 0.28s ease;
}

.gallery-dot.is-active::after {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.price-list {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.price-list__message {
  color: var(--muted);
  line-height: 1.6;
}

.price-table-card {
  padding: 24px;
}

.price-table-card h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

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

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

.price-table th {
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:hover td {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}

.price-table td {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-table td[data-cell-title] {
  min-width: 180px;
  color: var(--text);
  font-weight: 800;
}

.price-table td span {
  display: block;
}

.price-table td span + span {
  margin-top: 4px;
  color: var(--muted);
}

.booking-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 54px;
  padding: 0 24px;
  border-color: color-mix(in srgb, var(--accent-dark) 20%, white);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--accent) 34%, transparent);
}

.booking-float:hover,
.booking-float:focus-visible {
  transform: translateY(-2px);
}

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

.contact-card {
  padding: 24px;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-link,
.socials {
  display: flex;
  align-items: center;
}

.contact-link {
  gap: 8px;
  width: fit-content;
  margin-top: 14px;
}

.social-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--text);
  outline: none;
}

.socials a:hover,
.socials a:focus-visible {
  background: color-mix(in srgb, var(--accent) 12%, white);
  border-color: color-mix(in srgb, var(--accent) 28%, white);
  transform: translateY(-1px);
}

.map-card {
  margin-top: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  border: 0;
  background: color-mix(in srgb, var(--accent) 10%, white);
}

.map-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
}

.map-card__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-dark);
  font-weight: 700;
}

.map-card__actions a:hover,
.map-card__actions a:focus-visible {
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--text);
  outline: none;
}

.footer {
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

@keyframes fillFeature {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero__wrap,
  .about-grid,
  .pricing-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero__wrap {
    gap: 18px;
  }

  .gallery-track {
    grid-auto-columns: 88%;
  }

  .hero__facts,
  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section-head,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__inner {
    display: grid;
    gap: 14px;
    padding: 18px 0 16px;
  }

  .brand {
    gap: 6px;
  }

  .brand__title {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }

  .brand__subtitle {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    font-size: 0.84rem;
  }

  .nav a {
    min-height: 36px;
    padding: 8px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid var(--line);
    text-align: center;
    white-space: nowrap;
  }

  .hero__content,
  .hero__aside,
  .card,
  .price-table-card,
  .contact-card {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }

  .gallery-track {
    grid-auto-columns: 100%;
  }

  .gallery-control {
    width: 40px;
    height: 40px;
  }

  .hero__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-location__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

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

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .price-table tbody tr:last-child {
    border-bottom: 0;
  }

  .price-table th,
  .price-table td {
    border-bottom: 0;
  }

  .price-table td {
    display: grid;
    grid-template-columns: minmax(92px, 0.36fr) 1fr;
    gap: 10px;
    padding: 7px 0;
  }

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

  .price-table td span {
    grid-column: 2;
  }

  .price-table td[data-cell-title] {
    grid-template-columns: 1fr;
    padding-bottom: 11px;
    font-size: 1.02rem;
  }

  .price-table td[data-cell-title]::before {
    display: none;
  }

  .price-table td[data-cell-title] span {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    gap: 12px;
  }

  .nav {
    gap: 5px;
    font-size: 0.78rem;
  }

  .nav a {
    min-height: 34px;
    padding: 7px 3px;
  }

  .booking-float {
    right: 22px;
    bottom: 14px;
    min-height: 44px;
    min-width: 88px;
    padding: 0 16px;
    font-size: 0.9rem;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 30%, transparent);
  }

  .hero__visual {
    min-height: 0;
    border-radius: 16px;
  }

  .about-location__media {
    aspect-ratio: 4 / 3;
  }

  .hero__aside {
    padding: 20px;
  }

  .about-location__dots {
    bottom: 10px;
  }
}
