@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --gold: #f2a516;
  --gold-soft: #f5b73d;
  --ink: #1b1b1f;
  --white: #ffffff;
  --container: 1480px;
  --radius: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--white);
  background: #0e0e11;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 14px 26px;
  transition: background-color .25s var(--ease),
              color .25s var(--ease),
              box-shadow .25s var(--ease),
              transform .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: rgba(35, 35, 40, .55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
}
.btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(242, 165, 22, .35);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a2620;
  background-image:
    linear-gradient(135deg, rgba(90,74,54,.4) 0%, rgba(23,20,15,.6) 100%),
    url('assets/hero.jpg');
  background-image:
    linear-gradient(135deg, rgba(90,74,54,.4) 0%, rgba(23,20,15,.6) 100%),
    image-set(url('assets/hero.webp') type('image/webp'), url('assets/hero.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,.22) 0%, rgba(10,10,12,0) 20%),
    linear-gradient(90deg, rgba(10,10,12,.25) 0%, rgba(10,10,12,0) 55%, rgba(10,10,12,.12) 100%),
    linear-gradient(0deg, rgba(10,10,12,.35) 0%, rgba(10,10,12,0) 40%);
}

.header {
  position: relative;
  z-index: 5;
  padding: 16px 0;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero .header {
  background: rgba(20, 20, 24, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 var(--radius) var(--radius);
}
.header.is-stuck {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(17, 17, 20, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  border-radius: 0;
}

.logo { display: flex; align-items: center; }
.logo__img { height: 54px; width: auto; display: block; }

.header__right { display: flex; align-items: center; gap: 20px; }

.weather {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(20, 20, 24, .4);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.weather[hidden] { display: none; }
.weather__icon { display: flex; }
.weather__icon svg { width: 22px; height: 22px; color: var(--gold); display: block; }
.weather__temp { font-weight: 700; }
.weather__desc { color: rgba(255, 255, 255, .7); font-weight: 500; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 18px;
  transition: color .2s var(--ease);
}
.header__phone svg { width: 20px; height: 20px; color: var(--gold); }
.header__phone:hover { color: var(--gold-soft); }

.hero__body {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -1px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .35);
}
.hero__location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 22px;
  font-weight: 500;
}
.hero__location svg { width: 24px; height: 24px; color: var(--gold); }

.hero__aside { max-width: 420px; text-align: right; }
.hero__lead {
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}
.hero__lead strong { color: #fff; font-weight: 700; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.booking {
  position: relative;
  z-index: 6;
  width: 100%;
  background: rgba(20, 20, 24, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease) .35s, transform .7s var(--ease) .35s;
}
.booking.is-in { opacity: 1; transform: translateY(0); }

.booking__row { display: flex; align-items: center; gap: 8px; }

.booking__field { flex: 1 1 0; padding: 6px 16px; min-width: 0; }
.booking__field--guests { flex: 0 0 158px; }
.booking__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--gold-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.booking__control { display: flex; align-items: center; gap: 10px; }
.booking__control svg { width: 20px; height: 20px; color: rgba(255, 255, 255, .65); flex-shrink: 0; }
.booking__control input,
.booking__control select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color-scheme: dark;
}
.booking__control input::placeholder { color: rgba(255, 255, 255, .4); font-weight: 500; }
.booking__control select option { background: #1b1b1f; }
.booking__field.is-invalid .booking__control { box-shadow: 0 2px 0 #ff6b6b; }

.booking__divider { width: 1px; align-self: stretch; margin: 6px 0; background: rgba(255, 255, 255, .14); }

.booking__submit { padding: 16px 30px; align-self: stretch; }
.booking__submit svg { width: 20px; height: 20px; }
.booking__submit[disabled] { opacity: .6; cursor: progress; }

.booking__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 2px 16px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  max-width: 720px;
}
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent__box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 5px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.consent__box svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s var(--ease); }
.consent input:checked + .consent__box { background: var(--gold); border-color: var(--gold); }
.consent input:checked + .consent__box svg { opacity: 1; }
.consent input:focus-visible + .consent__box { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.consent.is-invalid .consent__box { border-color: #ff6b6b; }
.consent__text a { color: var(--gold-soft); text-decoration: underline; }

.booking__note {
  margin: 10px 0 2px 16px;
  font-size: 14.5px;
  min-height: 1px;
  color: var(--gold-soft);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.booking__note.is-shown { opacity: 1; }
.booking__note.is-error { color: #ff8585; }
.booking__note.is-ok { color: #7ee08a; }

.dev-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: -24px;
  padding: 9px 18px;
  background: rgba(20, 20, 24, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(242, 165, 22, .35);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  animation: dev-in .6s var(--ease) 1.2s both;
}
.dev-badge__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.dev-badge__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: dev-pulse 1.8s ease-out infinite;
}
.dev-badge__text { white-space: nowrap; letter-spacing: .2px; }

@keyframes dev-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}
@keyframes dev-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1280px) {
  .booking__row { flex-wrap: wrap; }
  .booking__divider { display: none; }
  .booking__field { flex: 1 1 30%; }
  .booking__field--guests { flex: 1 1 30%; }
  .booking__submit { flex: 1 1 100%; margin-top: 8px; }
}

@media (max-width: 980px) {
  .container { padding: 0 22px; }
  .header__phone span { display: none; }
  .header__right { gap: 12px; }
  .weather__desc { display: none; }
  .hero__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__aside { text-align: left; max-width: none; }
}

@media (max-width: 640px) {
  .booking__field { flex: 1 1 100%; }
  .hero__location { font-size: 18px; }
  .hero__lead { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; }
  .dev-badge__dot::after { animation: none; }
}
