:root {
  --bg: #0d0907;
  --bg-soft: #17120f;
  --surface: rgba(40, 29, 23, 0.58);
  --surface-strong: rgba(29, 20, 15, 0.86);
  --glass: rgba(255, 244, 230, 0.08);
  --line: rgba(255, 222, 181, 0.12);
  --text: #f8f0e6;
  --muted: rgba(248, 240, 230, 0.68);
  --accent: #f0b35b;
  --accent-soft: #ffdb8b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --container: min(1220px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 166, 53, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(95, 56, 18, 0.22), transparent 24%),
    linear-gradient(180deg, #0d0907 0%, #120d0a 36%, #15100d 58%, #0a0d12 100%);
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.site-shell,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient--grain {
  opacity: 0.06;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.12) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0.6px, transparent 0.8px);
  background-size: 100% 100%, 4px 4px;
  mix-blend-mode: soft-light;
}

.ambient--vignette {
  background: radial-gradient(circle, transparent 48%, rgba(0, 0, 0, 0.48) 100%);
}

.ambient--steam span {
  position: absolute;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 64%);
  filter: blur(18px);
}

.ambient--steam span:nth-child(1) { left: 6%; animation: steam-drift 18s linear infinite; }
.ambient--steam span:nth-child(2) { left: 24%; animation: steam-drift 24s linear infinite 3s; }
.ambient--steam span:nth-child(3) { right: 28%; animation: steam-drift 21s linear infinite 7s; }
.ambient--steam span:nth-child(4) { right: 8%; animation: steam-drift 20s linear infinite 1s; }
.ambient--steam span:nth-child(5) { left: 48%; animation: steam-drift 26s linear infinite 5s; }

.ambient--embers i {
  position: absolute;
  bottom: 18vh;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 241, 214, 1), rgba(240, 179, 91, 0.65));
  box-shadow: 0 0 18px rgba(240, 179, 91, 0.5);
}

.ambient--embers i:nth-child(1) { left: 12%; animation: ember-float 12s linear infinite; }
.ambient--embers i:nth-child(2) { left: 32%; animation: ember-float 16s linear infinite 4s; }
.ambient--embers i:nth-child(3) { left: 55%; animation: ember-float 13s linear infinite 2s; }
.ambient--embers i:nth-child(4) { left: 68%; animation: ember-float 18s linear infinite 6s; }
.ambient--embers i:nth-child(5) { left: 84%; animation: ember-float 15s linear infinite 1s; }
.ambient--embers i:nth-child(6) { left: 48%; animation: ember-float 20s linear infinite 8s; }

.header,
main > section,
.footer {
  position: relative;
  z-index: 2;
}

.header,
.footer,
.ritual,
.included,
.price-block,
.film-gallery,
.reasons,
.availability,
.calculator,
.location,
.booking {
  width: var(--container);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0.9rem;
  z-index: 12;
  width: var(--container);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  margin: 1rem auto 0;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(29, 21, 16, 0.78), rgba(15, 11, 9, 0.64)),
    rgba(18, 13, 10, 0.44);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 210, 140, 0.6), rgba(240, 179, 91, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 214, 155, 0.18);
  position: relative;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
}

.brand__mark::before {
  background: rgba(61, 214, 198, 0.45);
}

.brand__mark::after {
  inset: 0.76rem;
  background: rgba(13, 9, 7, 0.85);
}

.brand__text {
  display: grid;
}

.brand__text strong {
  font-size: 0.96rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav a:hover,
.contact-rail__item:hover,
.footer__contacts a:hover {
  color: var(--accent-soft);
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  justify-self: end;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.sound-toggle__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 214, 155, 0.25);
  box-shadow: 0 0 0 0 rgba(240, 179, 91, 0.4);
}

.sound-toggle.is-on .sound-toggle__dot {
  background: var(--accent);
  box-shadow: 0 0 0 0.7rem rgba(240, 179, 91, 0.08);
}

.quick-booking,
.contact-rail {
  position: fixed;
  z-index: 7;
}

.quick-booking {
  left: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  max-width: 8.8rem;
  background: linear-gradient(135deg, rgba(255, 202, 125, 0.94), rgba(240, 179, 91, 0.94));
  color: #21160f;
  border-radius: 1.2rem;
  box-shadow: 0 16px 40px rgba(240, 179, 91, 0.24);
}

.quick-booking strong {
  font-size: 1.2rem;
  line-height: 1;
}

.contact-rail {
  right: max(1rem, calc((100vw - var(--container)) / 2 - 0.4rem));
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.7rem;
}

.contact-rail__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 999px;
  background: rgba(17, 12, 9, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.contact-rail__icon {
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
}

.contact-rail__icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-rail__item span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(255, 220, 178, 0.72);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.section-heading--split {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.section-heading__aside {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, rgba(255, 210, 140, 1), rgba(240, 179, 91, 1));
  color: #24150c;
  box-shadow: 0 18px 40px rgba(240, 179, 91, 0.23);
}

.btn--glass {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.btn--text {
  color: var(--accent-soft);
}

.btn--wide {
  width: 100%;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.field,
.switch,
.extra {
  display: grid;
  gap: 0.72rem;
}

.field span,
.extras legend {
  color: var(--muted);
}

.field input:not([type="checkbox"]):not([type="range"]),
.field textarea {
  width: 100%;
  padding: 1rem 1.15rem;
  color: var(--text);
  border-radius: 1rem;
  border: 1px solid rgba(255, 233, 201, 0.12);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 211, 133, 0.38);
  box-shadow: 0 0 0 0.2rem rgba(240, 179, 91, 0.08);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.field strong,
.field output {
  color: var(--text);
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.switch,
.extra {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 3.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 233, 201, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.switch input,
.extra input {
  position: absolute;
  left: 1rem;
  top: 1.2rem;
}

.booking__status {
  min-height: 1.5rem;
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 0 4rem;
}

.footer__brand h2 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
}

.footer__brand p {
  margin: 0;
  max-width: 26rem;
  color: var(--muted);
}

.footer__contacts {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}

@media (max-width: 1100px) {
  .contact-rail {
    right: 0.75rem;
  }

  .contact-rail__item {
    min-width: auto;
  }

  .contact-rail__item span:last-child {
    display: none;
  }
}

@media (max-width: 960px) {
  .header {
    top: 0.7rem;
    border-radius: 1.25rem;
    padding: 0.85rem 1rem;
  }

  .nav {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .section-heading__aside {
    justify-self: start;
  }

  .contact-rail {
    bottom: 1.2rem;
    top: auto;
    transform: none;
    right: 1rem;
    grid-auto-flow: column;
  }

  .quick-booking {
    left: 1rem;
    max-width: 8rem;
  }

  .footer {
    flex-direction: column;
  }

  .footer__contacts {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .header {
    width: calc(100vw - 2rem);
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .sound-toggle {
    justify-self: start;
  }

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

  .contact-rail {
    inset: auto 1rem 1rem 1rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-rail__item {
    justify-content: center;
    padding-inline: 0;
  }

  .quick-booking {
    left: 1rem;
    bottom: 5.8rem;
    max-width: 7.4rem;
  }
}
