@font-face {
  font-family: "Federov2";
  src: url("../fonts/federov2_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0f0d;
  --bg-soft: #151b16;
  --bg-warm: #241b12;
  --card: rgba(255, 244, 222, 0.09);
  --line: rgba(255, 244, 222, 0.18);
  --text: #f8efe0;
  --muted: #c7b8a1;
  --muted-strong: #dfcbae;
  --accent: #c7a56a;
  --accent-dark: #75613a;
  --sun: #fac300;
  --cream: #f2e4cf;
  --wood: #8a5b32;
  --ember: #b16a2b;
  --green: #69745c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --container: 1180px;
  --font-main: "Federov2", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  animation: pageFade 0.7s ease both;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 38px;
  color: var(--text);
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.header.is-scrolled,
.header.is-open {
  padding-block: 14px;
  background: rgba(14, 13, 10, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 50px;
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand__logo--footer {
  width: 188px;
  height: 64px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(248, 239, 224, 0.82);
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

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

.header__phone {
  color: var(--muted-strong);
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  padding: 132px 0 34px;
  isolation: isolate;
}

.hero__video,
.hero__shade,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -3;
  object-fit: cover;
  background: #111;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88) 0%, rgba(8, 8, 7, 0.58) 42%, rgba(8, 8, 7, 0.26) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.24) 0%, rgba(8, 8, 7, 0.68) 100%);
}

.hero::after {
  content: "";
  z-index: -1;
  top: auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(10, 15, 13, 0), #0a0f0d 92%);
  pointer-events: none;
}

.hero__content {
  max-width: 1180px;
  animation: heroRise 0.9s ease 0.1s both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 870px;
  margin-bottom: 24px;
  font-family: var(--font-main);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-main);
  font-size: clamp(34px, 4.7vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(248, 239, 224, 0.78);
  font-size: 20px;
}

.hero__note {
  margin-top: 18px;
  color: rgba(248, 239, 224, 0.64);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-shell a.button,
.site-shell a.button:visited,
.site-shell a.button:hover,
.site-shell a.button:active,
.t-rec .site-shell a.button,
.t-rec .site-shell a.button:visited,
.t-rec .site-shell a.button:hover,
.t-rec .site-shell a.button:active {
  text-decoration: none !important;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--sun), var(--accent));
  color: #10120d;
}

.button--primary:hover {
  background: linear-gradient(135deg, #ffe05c, #dda15b);
}

.site-shell a.button--primary,
.site-shell a.button--primary:visited,
.site-shell a.button--primary:hover,
.site-shell a.button--primary:active,
.t-rec .site-shell a.button--primary,
.t-rec .site-shell a.button--primary:visited,
.t-rec .site-shell a.button--primary:hover,
.t-rec .site-shell a.button--primary:active {
  color: #10120d !important;
}

.button--ghost {
  border-color: rgba(248, 239, 224, 0.42);
  color: var(--text);
}

.button--ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-shell a.button--ghost,
.site-shell a.button--ghost:visited,
.site-shell a.button--ghost:hover,
.site-shell a.button--ghost:active,
.t-rec .site-shell a.button--ghost,
.t-rec .site-shell a.button--ghost:visited,
.t-rec .site-shell a.button--ghost:hover,
.t-rec .site-shell a.button--ghost:active {
  color: var(--text) !important;
}

.hero__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 76px);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(14, 13, 10, 0.58);
  box-shadow: inset 0 1px 0 rgba(250, 195, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero__facts div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 500;
}

.hero__facts span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section > .container,
.final-cta > .container,
.footer > .container {
  position: relative;
  z-index: 1;
}

.section::before {
  content: none;
}

.section--intro {
  background: #0a0f0d;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.intro-grid__text {
  color: var(--muted);
  font-size: 18px;
}

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

.intro-list li {
  position: relative;
  padding-left: 24px;
}

.intro-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

.intro-grid__text p:last-child {
  margin-bottom: 0;
}

.features {
  background: #151b16;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid--formats {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  background: transparent;
  border: 0;
}

.feature-card {
  min-height: 250px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(242, 228, 207, 0.08), rgba(242, 228, 207, 0.025)),
    var(--bg-soft);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.feature-grid--formats .feature-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card--house {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.08), rgba(0, 0, 0, 0.76)),
    url("https://static.tildacdn.com/tild3164-3932-4336-b339-643538343964/photo_2026-05-04_21-.jpg") center / cover;
}

.feature-card--steam {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.08), rgba(0, 0, 0, 0.76)),
    url("../images/sauna-benches.webp") center / cover;
}

.feature-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, rgba(242, 228, 207, 0.12), rgba(250, 195, 0, 0.045)),
    var(--bg-soft);
}

.feature-card--house:hover {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.02), rgba(0, 0, 0, 0.68)),
    url("https://static.tildacdn.com/tild3164-3932-4336-b339-643538343964/photo_2026-05-04_21-.jpg") center / cover;
}

.feature-card--steam:hover {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.02), rgba(0, 0, 0, 0.68)),
    url("../images/sauna-benches.webp") center / cover;
}

.feature-card span,
.choice-card span,
.house-card__media span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 700;
}

.feature-card p,
.choice-card p,
.house-card p,
.steam p,
.booking p,
.final-cta p,
.footer p {
  color: var(--muted);
}

.feature-grid--formats .feature-card p {
  color: var(--text);
  font-weight: 700;
}

.choice {
  background:
    linear-gradient(rgba(10, 15, 13, 0.74), rgba(10, 15, 13, 0.78)),
    url("../images/interior-living.webp") center / cover;
}

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

.choice-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 228, 207, 0.055), rgba(0, 0, 0, 0.42)),
    rgba(255, 244, 222, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.choice-card--house {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.08), rgba(0, 0, 0, 0.74)),
    url("https://static.tildacdn.com/tild3164-3932-4336-b339-643538343964/photo_2026-05-04_21-.jpg") center / cover;
}

.choice-card--steam {
  background:
    linear-gradient(180deg, rgba(10, 15, 13, 0.08), rgba(0, 0, 0, 0.74)),
    url("../images/sauna-benches.webp") center / cover;
}

.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 195, 0, 0.7);
}

.choice-card span {
  margin-bottom: auto;
}

.choice-card h3 {
  max-width: 480px;
  font-family: var(--font-main);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.houses {
  background: #0a0f0d;
}

.houses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.house-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(242, 228, 207, 0.08), rgba(0, 0, 0, 0.06)),
    var(--bg-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.house-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 195, 0, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.house-card__media {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.house-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.house-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
}

.house-card__media span {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 22px;
  margin: 0;
}

.house-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
}

.house-booking-button {
  margin-top: auto;
}

.house-card .house-booking-button,
.house-card .house-booking-button:link,
.house-card .house-booking-button:visited,
.house-card .house-booking-button:hover,
.house-card .house-booking-button:active,
.house-card a.house-booking-button,
.house-card a.house-booking-button:link,
.house-card a.house-booking-button:visited,
.house-card a.house-booking-button:hover,
.house-card a.house-booking-button:active,
#allrecords .house-card .house-booking-button,
#allrecords .house-card .house-booking-button:link,
#allrecords .house-card .house-booking-button:visited,
#allrecords .house-card .house-booking-button:hover,
#allrecords .house-card .house-booking-button:active,
#allrecords .house-card a.house-booking-button,
#allrecords .house-card a.house-booking-button:link,
#allrecords .house-card a.house-booking-button:visited,
#allrecords .house-card a.house-booking-button:hover,
#allrecords .house-card a.house-booking-button:active,
.site-shell .house-card .house-booking-button,
.site-shell .house-card .house-booking-button:link,
.site-shell .house-card .house-booking-button:visited,
.site-shell .house-card .house-booking-button:hover,
.site-shell .house-card .house-booking-button:active,
.t-rec .site-shell .house-card .house-booking-button,
.t-rec .site-shell .house-card .house-booking-button:link,
.t-rec .site-shell .house-card .house-booking-button:visited,
.t-rec .site-shell .house-card .house-booking-button:hover,
.t-rec .site-shell .house-card .house-booking-button:active,
#allrecords .site-shell .house-card .house-booking-button,
#allrecords .site-shell .house-card .house-booking-button:link,
#allrecords .site-shell .house-card .house-booking-button:visited,
#allrecords .site-shell .house-card .house-booking-button:hover,
#allrecords .site-shell .house-card .house-booking-button:active {
  display: flex !important;
  width: 100% !important;
  min-height: 56px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #fac300 !important;
  background-image: linear-gradient(135deg, #fac300 0%, #c7a56a 100%) !important;
  box-shadow: none !important;
  color: #10120d !important;
  font-family: var(--font-main) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  transform: none;
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.house-card .house-booking-button span,
.house-card .house-booking-button:link span,
.house-card .house-booking-button:visited span,
.house-card .house-booking-button:hover span,
.house-card .house-booking-button:active span,
#allrecords .house-card .house-booking-button span,
#allrecords .house-card .house-booking-button:link span,
#allrecords .house-card .house-booking-button:visited span,
#allrecords .house-card .house-booking-button:hover span,
#allrecords .house-card .house-booking-button:active span,
.site-shell .house-card .house-booking-button span,
.site-shell .house-card .house-booking-button:link span,
.site-shell .house-card .house-booking-button:visited span,
.site-shell .house-card .house-booking-button:hover span,
.site-shell .house-card .house-booking-button:active span,
.t-rec .site-shell .house-card .house-booking-button span,
#allrecords .site-shell .house-card .house-booking-button span {
  color: #10120d !important;
  text-decoration: none !important;
}

.house-card .house-booking-button:hover,
#allrecords .house-card .house-booking-button:hover,
.site-shell .house-card .house-booking-button:hover,
.t-rec .site-shell .house-card .house-booking-button:hover,
#allrecords .site-shell .house-card .house-booking-button:hover {
  background: #ffe05c !important;
  background-image: linear-gradient(135deg, #ffe05c 0%, #dda15b 100%) !important;
  color: #10120d !important;
  transform: translateY(-2px);
}

.meta-list,
.included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li,
.included-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted-strong);
  font-size: 13px;
}

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

.price-row span {
  color: var(--muted);
}

.price-row strong {
  color: var(--text);
}

.services-block {
  margin-top: 58px;
}

.services-block .section-head {
  margin-bottom: 26px;
}

.services-block h3 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(242, 228, 207, 0.08), rgba(0, 0, 0, 0.08)),
    var(--bg-soft);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-card h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

.service-card strong {
  color: var(--sun);
  white-space: nowrap;
}

.service-card span {
  color: var(--muted-strong);
  font-size: 14px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.included {
  background: var(--bg-warm);
}

.included__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 60px;
  align-items: center;
}

.included-list {
  gap: 12px;
}

.included-list li {
  border-radius: 4px;
  padding: 14px 16px;
  background: rgba(242, 228, 207, 0.09);
  border-color: var(--line);
  color: var(--muted-strong);
}

.steam {
  background: #151b16;
}

.steam__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 44px;
}

.tabs {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242, 228, 207, 0.065), rgba(242, 228, 207, 0.02)),
    var(--bg-soft);
}

.tabs__stage {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.tabs__controls {
  display: grid;
  border-right: 1px solid var(--line);
}

.tabs__button {
  min-height: 86px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.tabs__button:last-child {
  border-bottom: 0;
}

.tabs__button.is-active {
  background: rgba(200, 138, 69, 0.14);
  box-shadow: inset 3px 0 0 var(--sun);
  color: var(--text);
}

.tabs__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(14, 13, 10, 0.9), rgba(14, 13, 10, 0.35)),
    url("https://static.tildacdn.com/tild6663-3535-4630-a665-646565326531/DSC05788-HDR2.jpg") center / cover;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(1.015);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  visibility: hidden;
}

.tabs__panel[data-panel="deep"] {
  background:
    linear-gradient(90deg, rgba(14, 13, 10, 0.9), rgba(14, 13, 10, 0.35)),
    url("https://static.tildacdn.com/tild6264-6631-4461-b831-306663366561/DSC05764-HDR2.jpg") center / cover;
}

.tabs__panel[data-panel="pair"] {
  background:
    linear-gradient(90deg, rgba(14, 13, 10, 0.9), rgba(14, 13, 10, 0.35)),
    url("https://static.tildacdn.com/tild3236-3531-4238-b164-633431663335/DSC05774-HDR2.jpg") center / cover;
}

.tabs__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  visibility: visible;
  z-index: 1;
}

.tabs__panel h3 {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
}

.tabs__panel p {
  max-width: 620px;
  font-size: 18px;
}

.tabs__panel span {
  color: var(--sun);
}

.gallery {
  background: #0a0f0d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-item--wide {
  grid-row: span 2;
  min-height: 640px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  font-weight: 700;
}

.booking {
  background: #151b16;
}

.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: start;
}

.booking__copy {
  position: sticky;
  top: 110px;
}

.booking__copy p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
}

.messenger-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sun);
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(242, 228, 207, 0.1), rgba(242, 228, 207, 0.025)),
    var(--bg-soft);
  padding: 30px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 249, 236, 0.06);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.booking-form select option {
  color: #17140f;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(250, 195, 0, 0.82);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.testimonials {
  background: #151b16;
}

.testimonials h2 {
  max-width: 820px;
}

.final-cta {
  padding: 130px 0;
  background:
    linear-gradient(rgba(10, 15, 13, 0.58), rgba(10, 15, 13, 0.84)),
    url("https://static.tildacdn.com/tild6264-6631-4461-b831-306663366561/DSC05764-HDR2.jpg") center / cover;
}

.final-cta__inner {
  max-width: 880px;
  text-align: center;
}

.final-cta__inner .hero__buttons {
  justify-content: center;
}

.final-cta .button--primary,
.final-cta .button--primary:link,
.final-cta .button--primary:visited,
.final-cta .button--primary:hover,
.final-cta .button--primary:active,
.final-cta a.button--primary,
.final-cta a.button--primary:link,
.final-cta a.button--primary:visited,
.final-cta a.button--primary:hover,
.final-cta a.button--primary:active,
#allrecords .final-cta .button--primary,
#allrecords .final-cta .button--primary:link,
#allrecords .final-cta .button--primary:visited,
#allrecords .final-cta .button--primary:hover,
#allrecords .final-cta .button--primary:active,
#allrecords .final-cta a.button--primary,
#allrecords .final-cta a.button--primary:link,
#allrecords .final-cta a.button--primary:visited,
#allrecords .final-cta a.button--primary:hover,
#allrecords .final-cta a.button--primary:active {
  color: #10120d !important;
  text-decoration: none !important;
}

.final-cta .button--ghost,
.final-cta .button--ghost:link,
.final-cta .button--ghost:visited,
.final-cta .button--ghost:hover,
.final-cta .button--ghost:active,
.final-cta a.button--ghost,
.final-cta a.button--ghost:link,
.final-cta a.button--ghost:visited,
.final-cta a.button--ghost:hover,
.final-cta a.button--ghost:active,
#allrecords .final-cta .button--ghost,
#allrecords .final-cta .button--ghost:link,
#allrecords .final-cta .button--ghost:visited,
#allrecords .final-cta .button--ghost:hover,
#allrecords .final-cta .button--ghost:active,
#allrecords .final-cta a.button--ghost,
#allrecords .final-cta a.button--ghost:link,
#allrecords .final-cta a.button--ghost:visited,
#allrecords .final-cta a.button--ghost:hover,
#allrecords .final-cta a.button--ghost:active {
  color: var(--text) !important;
  text-decoration: none !important;
}

.final-cta p {
  margin: 24px auto 32px;
  max-width: 640px;
  font-size: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #090806;
  padding: 54px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

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

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

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 0.45fr 0.35fr;
  gap: 50px;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 15px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .header {
    padding: 16px 20px;
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(14, 13, 10, 0.96);
    padding: 10px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

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

  .header__phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 20px;
    gap: 34px;
  }

  .hero__content {
    padding-bottom: 56px;
  }

  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .hero__facts div {
    border-bottom: 1px solid var(--line);
  }

  .hero__facts div:nth-child(2n) {
    border-right: 0;
  }

  .hero__facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .intro-grid,
  .included__inner,
  .steam__top,
  .booking__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .choice-grid,
  .houses-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide,
  .gallery-item {
    min-height: 360px;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tabs__controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
  }

  .booking__copy {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header {
    padding: 12px 14px;
    min-height: 64px;
  }

  .header.is-scrolled,
  .header.is-open {
    padding-block: 10px;
  }

  .brand {
    width: 118px;
    height: 42px;
  }

  .nav {
    inset: 64px 12px auto;
  }

  .hero {
    padding-top: 96px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 15, 13, 0.72) 0%, rgba(10, 15, 13, 0.48) 34%, rgba(10, 15, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(10, 15, 13, 0.82), rgba(10, 15, 13, 0.28));
  }

  .hero__content {
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero__lead,
  .intro-grid__text,
  .booking__copy p,
  .final-cta p {
    font-size: 16px;
  }

  .hero__facts div {
    min-height: 96px;
    padding: 20px;
  }

  .hero__facts strong {
    font-size: 30px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .feature-card {
    min-height: auto;
    padding: 26px;
  }

  .feature-grid--formats .feature-card {
    min-height: 360px;
  }

  .feature-card span,
  .choice-card span,
  .house-card__media span {
    margin-bottom: 28px;
  }

  .tabs__controls {
    grid-template-columns: 1fr;
  }

  .tabs__button {
    min-height: 62px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .tabs__panel {
    min-height: 280px;
  }

  .included-list li,
  .meta-list li {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .section {
    padding: 68px 0;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__buttons,
  .final-cta__inner .hero__buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero__facts div,
  .hero__facts div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__facts div:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid--formats .feature-card {
    min-height: 300px;
  }

  .choice-card {
    min-height: 330px;
    padding: 28px;
  }

  .choice-card h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .house-card__media {
    height: 250px;
  }

  .house-card__content,
  .service-card,
  .booking-form,
  .tabs__panel {
    padding: 22px;
  }

  .price-row {
    display: grid;
  }

  .final-cta {
    padding: 86px 0;
  }
}

@media (max-width: 520px) {
  .header {
    gap: 10px;
  }

  .brand {
    width: 106px;
    height: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 88px;
    gap: 24px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .button {
    min-height: 50px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .hero__facts {
    width: calc(100% - 28px);
  }

  .hero__facts div {
    min-height: 82px;
    padding: 16px 18px;
  }

  .hero__facts strong {
    margin-bottom: 2px;
    font-size: 26px;
  }

  .hero__facts span {
    font-size: 13px;
  }

  .intro-grid,
  .included__inner,
  .steam__top,
  .booking__grid {
    gap: 26px;
  }

  .section-head--center {
    text-align: left;
  }

  .choice-card {
    min-height: 280px;
    padding: 22px;
  }

  .choice-card h3 {
    font-size: 26px;
  }

  .house-card__media {
    height: 220px;
  }

  .house-card__content,
  .service-card,
  .booking-form,
  .tabs__panel {
    padding: 18px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__top {
    display: grid;
    gap: 8px;
  }

  .meta-list,
  .included-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .meta-list li,
  .included-list li {
    border-radius: 4px;
  }

  .tabs__panel h3 {
    font-size: 29px;
  }

  .gallery-item,
  .gallery-item--wide {
    min-height: 250px;
  }

  .booking-form input,
  .booking-form select {
    min-height: 50px;
  }

  .footer {
    padding: 42px 0;
  }

  .brand__logo--footer {
    width: 160px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero__facts {
    width: calc(100% - 22px);
  }
}

