@font-face {
  font-family: "Vezitsa";
  src: url("/fonts/vezitsa.ttf") format("truetype");
  font-display: swap;
}

:root {
  --paper: #f1e5cf;
  --paper-light: #f8f0df;
  --paper-dark: #dfcda9;
  --brown: #5b3621;
  --brown-dark: #24150f;
  --brown-mid: #3b2418;
  --wine: #6d2628;
  --gold: #d0aa68;
  --green: #263a2a;
  --ink: #2c241e;
  --muted: #6d6256;
  --line: rgba(91, 54, 33, .22);
  --white: #fffaf0;
  --display: "Vezitsa", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --gutter: clamp(20px, 5vw, 80px);
  --max: 1500px;
  --header: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--wine); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
  color: var(--brown-dark);
}
.skip:focus { top: 20px; }

.snow {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 0;
  height: 2px;
  background: var(--gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  padding: 10px var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .4s ease, min-height .4s ease, box-shadow .4s ease;
}
.site-header.is-stuck {
  min-height: 64px;
  background: rgba(36, 21, 15, .94);
  box-shadow: 0 12px 35px rgba(15, 8, 5, .2);
  backdrop-filter: blur(14px);
}
.brand {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}
.main-nav { display: flex; justify-content: center; gap: clamp(18px, 2.6vw, 42px); }
.main-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.55);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.header-book:hover { color: var(--brown-dark); background: var(--white); }
.menu-button { display: none; width: 48px; height: 48px; place-items: center; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .3s ease, opacity .3s ease; }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-dark);
}
.hero__media, .cinema__media, .banya__media {
  position: absolute;
  inset: -8%;
  will-change: transform;
}
.hero__media img, .cinema__media img, .banya__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media img { object-position: center center; }
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,10,6,.83) 0%, rgba(20,10,6,.54) 42%, rgba(20,10,6,.1) 75%), linear-gradient(0deg, rgba(20,10,6,.55) 0%, transparent 38%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2 * var(--gutter)));
  margin-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding: calc(var(--header) + 60px) 0 180px;
}
.hero__date, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__date::before, .eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; opacity: .7; }
.hero h1 {
  max-width: 10ch;
  margin: 24px 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.8vw, 9rem);
  font-weight: 400;
  line-height: .82;
  text-wrap: balance;
}
.hero h1 span { color: #f1cc8d; }
.hero__lead { max-width: 58ch; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,250,240,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button--light { background: var(--white); color: var(--brown-dark); }
.button--light:hover { background: #f1cc8d; }
.button--glass { border-color: rgba(255,255,255,.52); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.button--glass:hover { background: rgba(255,255,255,.14); }
.hero__facts {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  transform: translateX(-50%);
  background: rgba(36,21,15,.88);
  backdrop-filter: blur(14px);
}
.hero__facts div { min-height: 96px; padding: 22px clamp(16px, 2.4vw, 34px); border-right: 1px solid rgba(255,255,255,.13); }
.hero__facts div:last-child { border-right: 0; }
.hero__facts span { display: block; color: rgba(255,255,255,.55); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.hero__facts strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 1.45rem; font-weight: 400; }
.hero__scroll { position: absolute; right: var(--gutter); bottom: 128px; z-index: 4; width: 38px; height: 64px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
.hero__scroll span { position: absolute; top: 14px; left: 50%; width: 3px; height: 3px; border-radius: 50%; background: white; animation: scroll-dot 2s infinite; }
@keyframes scroll-dot { 0% { transform: translate(-50%,0); opacity: 0; } 25% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translate(-50%,28px); opacity: 0; } }

.opening {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.25fr);
  gap: clamp(50px, 8vw, 130px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) var(--gutter);
  background-image: radial-gradient(circle at 15% 20%, rgba(208,170,104,.2), transparent 24%);
}
.opening__copy { align-self: center; }
.eyebrow { color: var(--brown); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: #efd5a7; }
.opening h2, .section-title h2, .moments h2, .questions h2 {
  margin: 22px 0 28px;
  color: var(--brown);
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  font-weight: 400;
  line-height: .92;
  text-wrap: balance;
}
.opening__large { margin-bottom: 24px; color: var(--brown-dark); font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.55; }
.opening__copy > p:last-child { color: var(--muted); }
.opening__image { position: relative; align-self: start; padding: 14px; background: var(--paper-light); box-shadow: 0 28px 80px rgba(55,32,20,.15); transform: rotate(.7deg); }
.opening__image::before { content: ""; position: absolute; top: -30px; left: 24%; width: 1px; height: 56px; background: var(--gold); transform: rotate(-8deg); }
.opening__image img { aspect-ratio: 4/3; object-fit: cover; }
.opening__image figcaption, .moments figcaption { padding: 12px 4px 2px; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.opening__note {
  grid-column: 1 / 2;
  margin-top: -130px;
  padding-left: 44px;
  border-left: 1px solid var(--gold);
}
.opening__note strong { color: var(--brown); font-family: var(--display); font-size: 1.9rem; font-weight: 400; }
.opening__note p { margin-top: 8px; color: var(--muted); }

.included { padding: clamp(90px, 11vw, 160px) var(--gutter); color: var(--white); background: var(--brown-dark); }
.section-title { max-width: var(--max); margin: 0 auto clamp(55px, 7vw, 95px); }
.included .section-title h2, .stay .section-title h2 { max-width: 13ch; color: var(--white); }
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.18); }
.included__item { position: relative; min-height: 260px; padding: 34px clamp(22px, 3vw, 44px) 42px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.included__item:not(:nth-child(3n)) { border-right: 1px solid rgba(255,255,255,.18); padding-right: clamp(26px, 4vw, 58px); }
.included__item:not(:nth-child(3n+1)) { padding-left: clamp(26px, 4vw, 58px); }
.included__item span { color: var(--gold); font-size: .72rem; letter-spacing: .1em; }
.included__item h3 { margin: 48px 0 14px; font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 400; line-height: 1; }
.included__item p { color: rgba(255,250,240,.62); }

.cinema { position: relative; min-height: min(880px, 86svh); display: grid; align-items: end; overflow: hidden; color: var(--white); }
.cinema__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,13,8,.78), rgba(23,13,8,.18) 70%), linear-gradient(0deg, rgba(23,13,8,.75), transparent 65%); }
.cinema__copy { position: relative; z-index: 2; max-width: 780px; padding: 0 var(--gutter) clamp(80px, 10vw, 140px); margin-left: max(0px, calc((100vw - var(--max)) / 2)); }
.cinema h2, .banya h2, .final h2 { margin: 20px 0 24px; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 7.5rem); font-weight: 400; line-height: .9; text-wrap: balance; }
.cinema p, .banya p, .final p { max-width: 62ch; color: rgba(255,250,240,.78); font-size: clamp(1rem, 1.35vw, 1.18rem); }

.program { padding: clamp(100px, 12vw, 180px) var(--gutter); background: var(--paper-light); }
.section-title--center { max-width: 900px; text-align: center; }
.section-title--center .eyebrow { justify-content: center; }
.section-title--center h2 { color: var(--brown); }
.section-title > p { max-width: 62ch; color: var(--muted); font-size: 1.05rem; }
.section-title--center > p { margin: 0 auto; }
.program__tabs { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1180px; margin: 0 auto; border-block: 1px solid var(--line); }
.program__tab { padding: 22px 16px; color: var(--muted); border-right: 1px solid var(--line); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; transition: background .3s, color .3s; }
.program__tab:last-child { border-right: 0; }
.program__tab span { display: block; font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.program__tab.is-active { color: var(--white); background: var(--brown); }
.program__panels { max-width: 1180px; margin: 0 auto; }
.program__panel { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(36px, 8vw, 120px); padding: clamp(48px, 7vw, 90px) 0 30px; }
.program__panel[hidden] { display: none; }
.program__panel header span { color: var(--wine); font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.program__panel h3 { margin-top: 16px; color: var(--brown); font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 5rem); font-weight: 400; line-height: .92; }
.program__panel li { display: grid; grid-template-columns: 145px 1fr; gap: 24px; padding: 0 0 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.program__panel time { color: var(--wine); font-weight: 600; font-size: .82rem; }
.program__panel strong { display: block; margin-bottom: 7px; color: var(--brown-dark); font-family: var(--display); font-size: 1.55rem; font-weight: 400; line-height: 1.1; }
.program__panel p { color: var(--muted); }
.program__small { max-width: 1180px; margin: 24px auto 0; color: var(--muted); font-size: .78rem; }

.moments { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; align-items: center; gap: clamp(30px, 5vw, 80px); max-width: var(--max); margin: 0 auto; padding: clamp(100px, 12vw, 180px) var(--gutter); }
.moments figure { padding: 12px; background: var(--paper-light); box-shadow: 0 24px 70px rgba(55,32,20,.13); }
.moments__large { grid-row: 1 / 3; transform: rotate(-.7deg); }
.moments__large img { aspect-ratio: 4/3; object-fit: cover; }
.moments__copy { padding-right: clamp(0px, 5vw, 70px); }
.moments__copy h2 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
.moments__copy p { color: var(--muted); }
.moments__small { width: 72%; justify-self: end; transform: rotate(1.2deg); }
.moments__small img { aspect-ratio: 4/3; object-fit: cover; }

.stay { padding: clamp(100px, 12vw, 180px) var(--gutter); color: var(--white); background: var(--green); }
.stay .section-title > p { color: rgba(255,250,240,.62); }
.stay__option { display: grid; grid-template-columns: 1.2fr .8fr; max-width: var(--max); margin: 0 auto 70px; border: 1px solid rgba(255,255,255,.2); }
.stay__option > img { height: 100%; min-height: 600px; object-fit: cover; }
.stay__body { align-self: center; padding: clamp(38px, 6vw, 90px); }
.stay__body > span { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.stay__body h3 { margin: 18px 0 24px; font-family: var(--display); font-size: clamp(2.8rem, 4.5vw, 5.2rem); font-weight: 400; line-height: .9; }
.stay__body p { color: rgba(255,250,240,.68); }
.stay__body ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 38px; }
.stay__body li { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 7px; color: #f1d6a6; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translate(4px,-4px); }
.stay__option--room { grid-template-columns: .8fr 1.2fr; }

.banya { position: relative; display: grid; align-items: center; min-height: min(900px, 88svh); overflow: hidden; color: var(--white); }
.banya::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,14,7,.18), rgba(28,14,7,.88) 58%); }
.banya__copy { position: relative; z-index: 2; width: min(620px, calc(100% - 2 * var(--gutter))); margin-left: auto; margin-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.banya h2 { font-size: clamp(3.2rem, 6vw, 6.8rem); }
.banya .button { margin-top: 30px; }

.questions { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 130px); max-width: var(--max); margin: 0 auto; padding: clamp(100px, 12vw, 180px) var(--gutter); }
.questions__title h2 { font-size: clamp(3rem, 5.2vw, 5.8rem); }
.questions__title > p { color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item button { display: grid; grid-template-columns: 1fr 30px; align-items: center; gap: 20px; width: 100%; padding: 25px 0; text-align: left; color: var(--brown-dark); font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.1; }
.faq__item i { position: relative; width: 24px; height: 24px; }
.faq__item i::before, .faq__item i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 1px; background: var(--brown); transition: transform .25s ease; }
.faq__item i::before { transform: translate(-50%,-50%); }
.faq__item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open i::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq__answer p { padding: 0 50px 28px 0; color: var(--muted); }

.final { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.final > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.final__shade { position: absolute; inset: 0; background: rgba(25,13,8,.67); }
.final__content { position: relative; z-index: 2; max-width: 850px; padding: 90px var(--gutter); }
.final h2 { font-size: clamp(4rem, 8vw, 8.5rem); }
.final p { margin: 0 auto 34px; }
.final__phone { display: block; width: max-content; margin: 25px auto 0; color: #efd5a7; border-bottom: 1px solid currentColor; }

.footer { display: grid; grid-template-columns: 1fr auto; gap: 20px 60px; align-items: center; padding: 55px var(--gutter); color: rgba(255,250,240,.65); background: #1c100b; }
.footer__brand { color: var(--white); font-family: var(--display); font-size: 2rem; }
.footer nav { display: flex; gap: 24px; grid-column: 2; grid-row: 1 / 3; }
.footer nav a { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.footer small { grid-column: 1 / -1; max-width: 760px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .opening { grid-template-columns: 1fr 1.15fr; }
  .opening__note { margin-top: -60px; }
  .included__grid { grid-template-columns: repeat(2, 1fr); }
  .included__item:not(:nth-child(3n)) { border-right: 0; }
  .included__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); padding-right: 40px; padding-left: 0; }
  .included__item:nth-child(even) { padding-left: 40px; padding-right: 0; }
  .questions { grid-template-columns: 1fr 1.3fr; }
}

@media (max-width: 780px) {
  :root { --header: 66px; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; background: rgba(36,21,15,.9); }
  .brand { font-size: 1.45rem; }
  .header-book { display: none; }
  .menu-button { display: block; position: relative; z-index: 3; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 90px 36px;
    background: #24150f;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-family: var(--display); font-size: 2rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .hero { min-height: 850px; }
  .hero__media { inset: 0; }
  .hero__media img { object-position: 60% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(18,9,5,.88) 0%, rgba(18,9,5,.42) 72%, rgba(18,9,5,.2)); }
  .hero__content { width: auto; margin: 0; padding: 150px 20px 230px; align-self: end; }
  .hero h1 { max-width: none; font-size: clamp(4.3rem, 19vw, 6.7rem); }
  .hero__lead { max-width: 34ch; font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__facts { grid-template-columns: 1fr 1fr; width: calc(100% - 40px); }
  .hero__facts div { min-height: 74px; padding: 14px 15px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero__facts div:nth-child(2) { border-right: 0; }
  .hero__facts strong { font-size: 1.15rem; }
  .hero__scroll { display: none; }
  .opening { grid-template-columns: 1fr; gap: 46px; padding: 88px 20px; }
  .opening h2, .section-title h2, .moments h2, .questions h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .opening__image { grid-row: 2; }
  .opening__note { grid-column: 1; margin: 0; padding-left: 24px; }
  .included { padding: 88px 20px; }
  .included__grid { grid-template-columns: 1fr; }
  .included__item:nth-child(n) { min-height: 0; padding: 28px 0 34px; border-right: 0; }
  .included__item h3 { margin-top: 24px; }
  .cinema { min-height: 760px; align-items: end; }
  .cinema__media { inset: 0; }
  .cinema__media img { object-position: 44% center; }
  .cinema__shade { background: linear-gradient(0deg, rgba(23,13,8,.92), rgba(23,13,8,.1) 70%); }
  .cinema__copy { padding: 0 20px 70px; }
  .cinema h2, .banya h2, .final h2 { font-size: clamp(3.4rem, 15vw, 5.6rem); }
  .program { padding: 88px 20px; }
  .program__tabs { grid-template-columns: 1fr 1fr; }
  .program__tab:nth-child(2) { border-right: 0; }
  .program__tab:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .program__panel { grid-template-columns: 1fr; gap: 35px; }
  .program__panel li { grid-template-columns: 108px 1fr; gap: 16px; }
  .moments { grid-template-columns: 1fr; grid-template-rows: auto; padding: 88px 20px; }
  .moments__large { grid-row: auto; }
  .moments__copy { padding: 20px 0; }
  .moments__small { width: 84%; }
  .stay { padding: 88px 20px; }
  .stay__option, .stay__option--room { grid-template-columns: 1fr; margin-bottom: 44px; }
  .stay__option > img { min-height: 340px; aspect-ratio: 4/3; }
  .stay__option--room .stay__body { grid-row: 2; }
  .stay__body { padding: 35px 24px 42px; }
  .stay__body h3 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .banya { min-height: 760px; align-items: end; }
  .banya__media { inset: 0; }
  .banya__media img { object-position: 42% center; }
  .banya::after { background: linear-gradient(0deg, rgba(28,14,7,.94), rgba(28,14,7,.05) 72%); }
  .banya__copy { width: auto; margin: 0; padding: 0 20px 65px; }
  .questions { grid-template-columns: 1fr; gap: 45px; padding: 88px 20px; }
  .faq__answer p { padding-right: 0; }
  .final { min-height: 720px; }
  .final > img { object-position: 58% center; }
  .footer { grid-template-columns: 1fr; padding: 45px 20px; }
  .footer nav { grid-column: 1; grid-row: auto; flex-wrap: wrap; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 4.4rem; }
  .hero__date, .eyebrow { font-size: .67rem; }
  .button { width: 100%; }
  .program__tab { padding: 18px 8px; }
  .program__panel li { grid-template-columns: 1fr; gap: 7px; }
  .stay__body ul { flex-direction: column; align-items: flex-start; }
  .text-link { font-size: .72rem; }
  .final__content { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .snow { display: none; }
  .reveal { opacity: 1; transform: none; }
}
