:root {
  --green-950: #141915;
  --green-900: #1f2521;
  --green-850: #262e28;
  --green-800: #2d3830;
  --gold-300: #e2c887;
  --gold-400: #d4b269;
  --gold-500: #c9a24b;
  --gold-600: #a9853a;
  --cream-50: #faf8f2;
  --cream-100: #f4f0e5;
  --cream-200: #e9e2d1;
  --ink-900: #23281f;
  --ink-600: #4d554a;
  --white: #ffffff;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shadow-card: 0 10px 30px rgba(20, 25, 21, 0.12);
  --radius: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

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

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

.icon { width: 22px; height: 22px; flex: 0 0 auto; }

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

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-900);
  color: var(--cream-50);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
}

.header__emblem {
  width: auto;
  height: 40px;
}

.header__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--cream-50);
  display: flex;
  flex-direction: column;
}

.header__name small {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav > a {
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav > a:not(.nav__phone)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transition: right 0.25s ease;
}

.nav > a:not(.nav__phone):hover { color: var(--gold-300); }
.nav > a:not(.nav__phone):hover::after { right: 0; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px!important;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  color: var(--gold-300);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav__phone .icon { width: 17px; height: 17px; }

.nav__phone:hover {
  background: var(--gold-500);
  color: var(--green-950);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn .icon { width: 19px; height: 19px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-950);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.45);
}

.btn--ghost {
  border: 1px solid rgba(250, 248, 242, 0.6);
  color: var(--cream-50);
}

.btn--ghost:hover {
  background: rgba(250, 248, 242, 0.12);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream-50);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 25, 21, 0.55) 0%, rgba(20, 25, 21, 0.35) 45%, rgba(20, 25, 21, 0.82) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(20, 25, 21, 0.35), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 90px;
}

.hero__kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid rgba(212, 178, 105, 0.45);
  border-radius: 999px;
  padding: 9px 20px;
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 14em;
  text-wrap: balance;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 34em;
  color: rgba(250, 248, 242, 0.92);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  max-width: 980px;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(31, 37, 33, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 178, 105, 0.28);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__features .icon { color: var(--gold-400); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(250, 248, 242, 0.75);
  animation: heroScroll 2.2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; }

.section--dark {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(201, 162, 75, 0.07), transparent 55%),
    var(--green-900);
  color: var(--cream-50);
}

.section__kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.section--dark .section__kicker { color: var(--gold-400); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 22em;
  text-wrap: balance;
  margin-bottom: 30px;
}

/* ---------- About ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about__text p { margin-bottom: 16px; color: var(--ink-600); }
.about__text p:first-of-type { color: var(--ink-900); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin-top: 34px;
}

.about__stats li {
  border-top: 2px solid var(--gold-500);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__stats strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green-900);
  white-space: nowrap;
}

.about__stats span { font-size: 0.9rem; color: var(--ink-600); }

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about__photo-main {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.about__photos img:not(.about__photo-main) {
  aspect-ratio: 4 / 3;
}

/* ---------- Amenities ---------- */

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 18px;
}

.amenity {
  background: var(--green-850);
  border: 1px solid rgba(212, 178, 105, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.amenity:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 178, 105, 0.45);
}

.amenity img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.amenity__body { padding: 22px 24px 26px; }

.amenity__body h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: var(--gold-300);
}

.amenity__body p {
  font-size: 0.94rem;
  color: rgba(250, 248, 242, 0.78);
}

.amenities__extra {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 178, 105, 0.2);
}

.amenities__extra li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.88);
}

.amenities__extra .icon {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

/* ---------- Rooms ---------- */

.rooms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 18px;
}

.room {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.room__media { position: relative; }

.room__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room__body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.room__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.room__head h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-900);
}

.room__capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  background: var(--cream-100);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-600);
  white-space: nowrap;
}

.room__capacity .icon { width: 16px; height: 16px; color: var(--gold-600); }

.room__body > p { color: var(--ink-600); font-size: 0.97rem; }

.room__list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.room__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  font-weight: 500;
}

.room__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
}

.rooms__note {
  margin-top: 40px;
  padding: 34px 38px;
  background: var(--green-900);
  color: var(--cream-50);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

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

.rooms__price > span {
  font-size: 0.85rem;
  color: rgba(250, 248, 242, 0.7);
  max-width: 210px;
}

.rooms__price strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1.1;
  white-space: nowrap;
}

.rooms__price strong small {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.75);
}

.rooms__included h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 10px;
}

.rooms__included ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}

.rooms__included li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: rgba(250, 248, 242, 0.85);
}

.rooms__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- Gallery ---------- */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
  margin-top: 18px;
}

.gallery__item {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-850);
  position: relative;
}

.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery__item:hover img { transform: scale(1.05); opacity: 0.88; }

.gallery__item:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 19, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
}

.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(250, 248, 242, 0.25);
  border-radius: 50%;
  background: rgba(31, 37, 33, 0.7);
  color: var(--cream-50);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--green-800); border-color: var(--gold-500); }

.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Nearby ---------- */

.nearby__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nearby__grid > div > p { color: var(--ink-600); max-width: 34em; }

.nearby__list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.nearby__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nearby__list .icon {
  color: var(--gold-600);
  margin-top: 2px;
}

.nearby__list strong { color: var(--green-900); }

.nearby__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.nearby__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.nearby__info > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
  color: var(--ink-600);
}

.nearby__info .icon { color: var(--gold-600); }
.nearby__info strong { color: var(--green-900); }

/* ---------- Contacts ---------- */

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  margin-top: 18px;
}

.contacts__list {
  list-style: none;
  display: grid;
  gap: 24px;
}

.contacts__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacts__list .icon {
  color: var(--gold-400);
  margin-top: 3px;
}

.contacts__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 3px;
}

.contacts__list span { color: rgba(250, 248, 242, 0.85); font-size: 0.97rem; }

.contacts__list a { text-decoration: underline; text-decoration-color: rgba(212, 178, 105, 0.5); text-underline-offset: 3px; }
.contacts__list a:hover { color: var(--gold-300); }

.contacts__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid rgba(212, 178, 105, 0.4);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-50);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.msg-btn .icon { width: 18px; height: 18px; color: var(--gold-400); }

.msg-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-950);
}

.msg-btn:hover .icon { color: var(--green-950); }

.contacts__social {
  display: flex;
  gap: 22px;
  margin-top: 26px;
}

.contacts__social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.8);
  transition: color 0.2s ease;
}

.contacts__social a:hover { color: var(--gold-300); }
.contacts__social .icon { width: 19px; height: 19px; }

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(212, 178, 105, 0.25);
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--green-950);
  color: rgba(250, 248, 242, 0.7);
  padding: 44px 0;
  text-align: center;
}

.footer__inner { display: grid; gap: 10px; justify-items: center; }

.footer__logo {
  width: 190px;
  height: auto;
  border-radius: 10px;
}

.footer__note { font-size: 0.9rem; }
.footer__copy { font-size: 0.82rem; color: rgba(250, 248, 242, 0.45); }

/* ---------- Reveal animation ---------- */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__features { grid-template-columns: repeat(2, 1fr); }
  .rooms__note { grid-template-columns: 1fr; gap: 24px; justify-items: start; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #181d19;
    padding: 12px 24px 24px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .nav.is-open { transform: translateY(0); }

  .nav > a {
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(250, 248, 242, 0.08);
  }

  .nav > a:not(.nav__phone)::after { content: none; }

  .nav__phone {
    margin-top: 16px;
    justify-content: center;
    border-radius: 999px;
  }

  .burger { display: flex; }

  .about__grid,
  .nearby__grid,
  .contacts__grid { grid-template-columns: 1fr; gap: 44px; }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }

  .hero__content { padding-top: 110px; padding-bottom: 80px; }

  .hero__features { grid-template-columns: 1fr; gap: 10px; }

  .hero__actions .btn { width: 100%; }

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

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery__item:first-child { grid-column: span 1; grid-row: span 1; }

  .rooms__note { padding: 26px 24px; }

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

  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}
