:root {
  --bg: #0e0d12;
  --ink: #09080d;
  --panel: #15131a;
  --panel-soft: rgba(25, 22, 30, 0.72);
  --panel-warm: rgba(31, 25, 22, 0.72);
  --text: #f1ede4;
  --muted: #aea798;
  --muted-2: #81796c;
  --line: rgba(217, 194, 140, 0.18);
  --line-cool: rgba(174, 167, 152, 0.18);
  --gold: #d6ae51;
  --gold-soft: #d9c28c;
  --burgundy: #5c1f2b;
  --green: #44533f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Jost, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 31, 43, 0.22), transparent 34rem),
    linear-gradient(180deg, #0d0c11 0%, #111016 42%, #0b0a0f 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(14, 13, 18, 0.82), rgba(14, 13, 18, 0.34), transparent);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, border-color 220ms ease;
}

.header.is-scrolled,
body.menu-open .header {
  border-color: var(--line-cool);
  background: rgba(14, 13, 18, 0.94);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 174, 81, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 0 20px rgba(214, 174, 81, 0.14);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.brand-type {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 11px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(214, 174, 81, 0.1);
  color: var(--gold-soft);
}

.nav-cta {
  margin-left: 4px;
}

.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(214, 174, 81, 0.08);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.section {
  position: relative;
  padding: 96px 0;
}

.section.alt {
  border-block: 1px solid var(--line-cool);
  background: rgba(20, 18, 25, 0.58);
}

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

.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 62px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 300;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 76px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.66;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(11, 10, 15, 0.96) 0%, rgba(11, 10, 15, 0.78) 42%, rgba(11, 10, 15, 0.2) 74%),
    linear-gradient(180deg, rgba(14, 13, 18, 0.2), #0e0d12 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(14, 13, 18, 0.42) 72%, #0e0d12 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: 48px;
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-note,
.age-note {
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(174, 167, 152, 0.8);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn.primary {
  background: linear-gradient(180deg, #e6c777, var(--gold));
  color: #0b0a10;
  box-shadow: 0 12px 34px rgba(214, 174, 81, 0.22);
}

.btn.secondary {
  border-color: rgba(217, 194, 140, 0.38);
  background: rgba(214, 174, 81, 0.08);
  color: var(--gold-soft);
}

.btn.ghost {
  border-color: rgba(174, 167, 152, 0.24);
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stat strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(26, 23, 31, 0.9), rgba(14, 13, 18, 0.9));
  box-shadow: var(--shadow);
}

.card-image {
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: #17141a;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover .card-image img {
  transform: scale(1.035);
}

.card-body {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.meta {
  margin-top: 16px;
  color: rgba(174, 167, 152, 0.86);
  font-size: 12px;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 174, 81, 0.09);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 9, 13, 0.28));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line-cool);
  padding: 22px 0;
}

.event-type,
.event-time {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.event-item h3 {
  font-size: 26px;
}

.event-item p {
  color: var(--muted);
}

.amenity {
  min-height: 180px;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  padding: 24px;
  background: rgba(24, 21, 29, 0.74);
}

.amenity h3 {
  font-size: 25px;
}

.amenity p {
  color: var(--muted);
  font-size: 14px;
}

.responsible-band {
  border: 1px solid rgba(217, 194, 140, 0.25);
  border-radius: 8px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(68, 83, 63, 0.22), transparent),
    rgba(19, 17, 23, 0.86);
}

.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-cool);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
}

.faq-button span:first-child {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.faq-icon::before {
  content: "+";
}

.faq-item.is-open .faq-icon::before {
  content: "-";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 220px;
}

.faq-panel p {
  max-width: 760px;
  padding: 0 56px 24px 0;
}

.cta {
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 15, 0.94), rgba(11, 10, 15, 0.76)),
    url("/assets/gilded-bar.jpg") center / cover;
}

.page-hero {
  min-height: 470px;
  display: flex;
  align-items: end;
  padding: 132px 0 72px;
  border-bottom: 1px solid var(--line-cool);
  background:
    linear-gradient(90deg, rgba(11, 10, 15, 0.95), rgba(11, 10, 15, 0.66)),
    var(--page-image, url("/assets/hero-hotel.jpg")) center / cover;
}

.breadcrumb {
  margin: 0 0 10px;
  color: var(--muted-2);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gold-soft);
}

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

.detail {
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  padding: 28px;
  background: rgba(24, 21, 29, 0.72);
}

.detail h3 {
  font-size: 25px;
}

.detail p,
.legal-copy p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  border-bottom: 1px solid var(--line-cool);
  padding-bottom: 16px;
}

.contact-item h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
}

.form {
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  padding: 28px;
  background: rgba(24, 21, 29, 0.86);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(174, 167, 152, 0.24);
  border-radius: 8px;
  background: rgba(9, 8, 13, 0.74);
  color: var(--text);
  outline: 0;
  padding: 12px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 174, 81, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 174, 81, 0.12);
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: 14px;
}

.legal-page {
  padding-top: 120px;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy section {
  border-top: 1px solid var(--line-cool);
  padding: 26px 0;
}

.legal-copy h2 {
  font-size: 34px;
}

.footer {
  border-top: 1px solid var(--line-cool);
  background: #09080d;
}

.footer-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.8fr;
  gap: 42px;
  padding: 58px 0 34px;
}

.footer p,
.footer a,
.footer span {
  color: var(--muted);
  font-size: 14px;
}

.footer h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(174, 167, 152, 0.14);
  padding: 20px 0 30px;
  color: var(--muted-2);
  font-size: 13px;
}

.age-block {
  border: 1px solid rgba(214, 174, 81, 0.32);
  border-radius: 8px;
  padding: 18px;
  background: rgba(214, 174, 81, 0.06);
}

.age-block strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 28px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .mobile-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--line-cool);
    background: rgba(14, 13, 18, 0.98);
    padding: 18px 20px 26px;
  }

  body.menu-open .mobile-menu {
    display: grid;
    gap: 8px;
  }

  .mobile-menu .nav-link,
  .mobile-menu .btn {
    justify-content: flex-start;
    width: 100%;
    border-radius: 8px;
  }

  .split,
  .split.reverse,
  .section-head,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .event-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-content,
  .nav-wrap,
  .footer-main,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 10, 15, 0.22) 0%, rgba(11, 10, 15, 0.84) 44%, #0e0d12 100%),
      linear-gradient(90deg, rgba(11, 10, 15, 0.75), rgba(11, 10, 15, 0.36));
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .detail-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img {
    min-height: 300px;
  }

  .page-hero {
    min-height: 430px;
    padding-top: 120px;
  }

  .form,
  .responsible-band {
    padding: 22px;
  }

  .faq-button span:first-child {
    font-size: 22px;
  }

  .faq-panel p {
    padding-right: 0;
  }

  .footer-main {
    gap: 28px;
  }
}
