:root {
  --background: #171d18;
  --background-soft: #1e2720;
  --panel: rgba(28, 35, 30, 0.82);
  --panel-strong: #202920;
  --foreground: #f2ece1;
  --muted: #bea98c;
  --muted-soft: rgba(242, 236, 225, 0.72);
  --gold: #d6b062;
  --gold-soft: #c69c49;
  --border: rgba(214, 176, 98, 0.22);
  --shadow-deep: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-glow: 0 20px 60px rgba(214, 176, 98, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(47, 70, 54, 0.52), transparent 42%),
    linear-gradient(180deg, #151c17 0%, #0f1411 100%);
  color: var(--foreground);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 22, 18, 0.82);
  border-bottom: 1px solid rgba(214, 176, 98, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0bf77 0%, #8c6130 100%);
  color: #151914;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.brand-text {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
.footer-links a,
.mobile-menu a {
  color: var(--muted-soft);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.footer-links a:hover,
.mobile-menu a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #e0bf77 0%, #b48335 100%);
  color: #171a15;
  box-shadow: var(--shadow-glow);
}

.button-secondary {
  border-color: rgba(242, 236, 225, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--foreground);
}

.button-secondary:hover {
  border-color: rgba(214, 176, 98, 0.65);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(214, 176, 98, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0 24px 24px;
  background: rgba(14, 19, 16, 0.95);
  border-top: 1px solid rgba(214, 176, 98, 0.12);
}

.mobile-menu.is-open {
  display: grid;
  gap: 16px;
}

.mobile-booking {
  margin-top: 6px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(15, 19, 16, 0.74) 0%, rgba(18, 24, 20, 0.45) 36%, rgba(15, 19, 16, 0.92) 100%);
}

.hero-noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 96px;
}

.section-kicker,
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.feature-card h3,
.showcase-copy h3,
.pricing-card strong,
.mini-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  margin-top: 28px;
  font-size: clamp(3.4rem, 9vw, 6.4rem);
}

.hero h1 span,
.section-title span {
  background: linear-gradient(135deg, #f0d28a 0%, #bb8d3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero p,
.lead,
.section-text,
.feature-card p,
.showcase-copy p,
.mini-card p,
.pricing-card p,
.pricing-card li,
.contacts-card,
.site-footer p {
  color: var(--muted-soft);
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(242, 236, 225, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-felt {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(52, 82, 60, 0.3), transparent 38%),
    linear-gradient(180deg, rgba(35, 48, 39, 0.92) 0%, rgba(22, 29, 24, 0.98) 100%);
}

.section-dark {
  background: rgba(255, 255, 255, 0.015);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.lead {
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.section-copy p:not(.lead) {
  margin: 0 0 22px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 68px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.section-image {
  position: relative;
}

.section-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.section-image-glow::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: radial-gradient(circle, rgba(214, 176, 98, 0.22), transparent 65%);
  filter: blur(24px);
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.stat-card {
  padding-left: 16px;
  border-left: 2px solid rgba(214, 176, 98, 0.58);
}

.stat-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #f0d28a 0%, #bb8d3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(242, 236, 225, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.showcase-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 19, 16, 0.08) 20%, rgba(15, 19, 16, 0.9) 100%);
}

.showcase-card img {
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
}

.showcase-copy h3 {
  font-size: 2rem;
}

.card-grid,
.pricing-grid,
.mini-cards {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.mini-card,
.contacts-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
}

.feature-card {
  padding: 34px 28px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.mini-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.mini-card {
  padding: 28px 24px;
}

.mini-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  padding: 34px 28px;
}

.pricing-card-highlight {
  background: linear-gradient(180deg, rgba(48, 59, 48, 0.92) 0%, rgba(27, 35, 28, 0.98) 100%);
  border-color: rgba(214, 176, 98, 0.36);
}

.pricing-name {
  display: block;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-top: 18px;
  font-size: 3rem;
}

.pricing-card p {
  margin: 12px 0 22px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 20px;
}

.pricing-card li + li {
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.gallery-item {
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.gallery-item-large {
  grid-row: span 2;
  min-height: 584px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.contacts-card {
  padding: 34px 30px;
}

.contact-row {
  display: grid;
  gap: 6px;
}

.contact-row + .contact-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 176, 98, 0.12);
}

.contact-row span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  font-size: 1.12rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(214, 176, 98, 0.1);
  background: rgba(8, 12, 10, 0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

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

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

@media (max-width: 1080px) {
  .main-nav,
  .header-booking {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .split-layout,
  .split-layout-reverse,
  .contacts-layout,
  .card-grid,
  .pricing-grid,
  .feature-showcase,
  .gallery-grid,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-row: auto;
    min-height: 360px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .section {
    padding: 88px 0;
  }

  .showcase-card {
    min-height: 320px;
  }

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

  .contact-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
