@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg-deep: #0c1210;
  --bg-mid: #14201c;
  --bg-panel: #1a2a24;
  --gold: #c4a574;
  --gold-light: #e8d5b5;
  --gold-dim: rgba(196, 165, 116, 0.35);
  --cream: #f2ebe0;
  --muted: #a8b5af;
  --line: rgba(196, 165, 116, 0.22);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--bg-deep);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

/* ——— Atmosphere ——— */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(40, 70, 55, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(90, 60, 30, 0.25), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(20, 45, 35, 0.4), transparent 55%),
    linear-gradient(165deg, #0a100e 0%, #0f1a16 40%, #121c18 100%);
}

.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
}

/* ——— Nav ——— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 6vw;
  animation: fadeDown 0.9s var(--ease) both;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  flex-shrink: 0;
}

.nav__brand span {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 1.15rem 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold-light);
}

.nav__cta {
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light) !important;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: rgba(196, 165, 116, 0.12);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-light);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 12vh;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12, 18, 16, 0.95) 0%, rgba(12, 18, 16, 0.55) 45%, rgba(12, 18, 16, 0.35) 100%),
    linear-gradient(to right, rgba(12, 18, 16, 0.5) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: fadeUp 1s var(--ease) 0.15s both;
  overflow-wrap: anywhere;
}

.hero__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.85rem;
  animation: fadeUp 1s var(--ease) 0.3s both;
}

.hero__lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s var(--ease) 0.45s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  appearance: none;
  text-align: center;
  max-width: 100%;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(196, 165, 116, 0.08);
}

/* ——— Sections ——— */
.section {
  padding: 6.5rem 6vw;
  position: relative;
}

#rooms,
#reserve,
#rates {
  scroll-margin-top: 1.25rem;
}

.section--tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.15rem;
  max-width: 24rem;
}

.section__title--wide {
  max-width: 28ch;
}

.section__text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 1rem;
}

.section__text + .section__text {
  margin-top: 0.5rem;
}

.divider {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
  opacity: 0.7;
}

/* ——— Experience strip ——— */
.experience {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.experience__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.experience__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}

.experience__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  z-index: 1;
  pointer-events: none;
}

/* ——— Room list ——— */
.rooms {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.room {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease;
}

.room:hover {
  background: rgba(196, 165, 116, 0.04);
}

.room__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.25;
}

.room__desc {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
}

.room__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1.15rem;
  margin-top: 0.75rem;
}

.room__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.room__price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.room__status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room__status--available {
  color: #8fbfa8;
}

.room__status--unavailable {
  color: #c9897a;
}

.room__guests {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.room__book {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease;
}

.room__book:hover {
  color: var(--gold-light);
}

.room__book--unavailable {
  color: var(--muted);
  pointer-events: none;
  cursor: default;
}

.rates-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rates {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0 0.5rem;
}

.rates th,
.rates td {
  text-align: left;
  padding: 1rem 1.25rem 1rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.rates th {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.rates td {
  color: var(--cream);
  font-size: 0.95rem;
}

.rates .room__price {
  font-size: 1.2rem;
}

.rates a {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rates a:hover {
  color: var(--gold-light);
}

.reserve-panel {
  margin-top: 1.25rem;
}

/* ——— Reservation ——— */
.reserve {
  margin-top: 1.5rem;
}

.reserve-group {
  padding: 0;
  margin: 0 0 2.5rem;
  min-width: 0;
}

.reserve-group__title {
  margin: 0 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
}

.reserve-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  min-width: 0;
}

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

.reserve-field label {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reserve-field input,
.reserve-field select,
.reserve-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 3.1rem;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--cream);
  background-color: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  color-scheme: dark;
}

.reserve-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  padding-top: 0.95rem;
}

.reserve-field input::placeholder,
.reserve-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
  font-weight: 300;
}

.reserve-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c4a574' stroke-width='1.2' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 12px 8px;
  padding-right: 2.6rem;
  cursor: pointer;
}

.reserve-field select option {
  background: var(--bg-mid);
  color: var(--cream);
}

.reserve-field input:hover,
.reserve-field select:hover,
.reserve-field textarea:hover {
  border-color: var(--gold);
  background-color: rgba(196, 165, 116, 0.06);
}

.reserve-field input:focus,
.reserve-field select:focus,
.reserve-field textarea:focus {
  border-color: var(--gold);
  background-color: rgba(196, 165, 116, 0.08);
  color: var(--gold-light);
}

.reserve-field.is-invalid input,
.reserve-field.is-invalid select,
.reserve-field.is-invalid textarea {
  border-color: #c9897a;
  background-color: rgba(201, 137, 122, 0.08);
}

.reserve-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.reserve-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.75;
  cursor: pointer;
  filter: invert(0.82) sepia(0.35) saturate(1.6) hue-rotate(8deg);
}

.reserve-field input[type="date"]::-webkit-datetime-edit,
.reserve-field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.reserve-field input[type="date"]::-webkit-datetime-edit-text,
.reserve-field input[type="date"]::-webkit-datetime-edit-month-field,
.reserve-field input[type="date"]::-webkit-datetime-edit-day-field,
.reserve-field input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--cream);
  font-family: var(--font-body);
  padding: 0;
}

.reserve-field input:-webkit-autofill,
.reserve-field input:-webkit-autofill:hover,
.reserve-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  box-shadow: 0 0 0 1000px #121c18 inset;
  transition: background-color 9999s ease-out;
}

.reserve-field__hint {
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0;
}

.reserve-field__error {
  font-size: 0.8rem;
  color: #e0b4a6;
}

.reserve-field__error:empty {
  display: none;
}

.reserve__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.reserve-summary {
  display: grid;
  gap: 0.25rem;
}

.reserve-summary__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reserve-summary__value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.reserve-summary__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.reserve-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.reserve-actions .btn {
  min-width: 16rem;
}

.reserve-error {
  font-size: 0.85rem;
  color: #e0b4a6;
  text-align: left;
}

.reserve-error:empty {
  display: none;
}

.reserve-success {
  text-align: left;
  padding: 0.5rem 0 0;
}

.reserve-success .divider {
  margin-left: 0;
}

.reserve-success__ref {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.reserve-success__details {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.reserve-success__details p + p {
  margin-top: 0.4rem;
}

.reserve-success__details strong {
  color: var(--cream);
  font-weight: 500;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4.5rem 1.25rem 2rem;
  overflow: auto;
}

.reserve-modal[hidden] {
  display: none;
}

.reserve-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 8, 0.88);
  backdrop-filter: blur(8px);
}

.reserve-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: auto;
  padding: 2.25rem 1.75rem 2rem;
  background:
    radial-gradient(ellipse at top, rgba(40, 60, 48, 0.45), transparent 55%),
    var(--bg-panel);
  border: 1px solid var(--line);
  animation: scaleIn 0.45s var(--ease) both;
}

.reserve-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0.35rem 0 1.5rem;
  line-height: 1.15;
}

.reserve-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.reserve-modal__close:hover {
  border-color: var(--gold);
  background: rgba(196, 165, 116, 0.08);
}

body.reserve-open {
  overflow: hidden;
}

.reserve-field input[type="date"] {
  cursor: pointer;
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ——— Dining ——— */
.dining-list {
  display: grid;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.dining-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold-dim);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.dining-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.dining-item__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.dining-item__desc {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 40rem;
}

/* ——— Casino areas ——— */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.casino-area__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.casino-area__desc {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Closing ——— */
.closing {
  text-align: left;
  padding: 7rem 6vw;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.closing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.closing__text {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

/* ——— Home simple ——— */
.home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3.25rem;
  padding: 0;
  max-width: none;
}

.home-feature__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.home-feature__text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem max(6vw, calc((100% - 1100px) / 2)) 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.footer__brand span {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.footer__note {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer__contact {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.footer__phone {
  display: block;
  margin-top: 0.15rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer__phone:hover {
  color: var(--gold-light);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--gold-light);
}

/* ——— Legal pages ——— */
.page-legal .nav {
  position: relative;
}

.legal {
  padding: 4.5rem 6vw 6.5rem;
}

.legal__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal .section__title {
  max-width: none;
}

.legal__updated {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: -1.25rem 0 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 2.25rem 0 0.75rem;
}

.legal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 1.5rem 0 0.5rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal p {
  margin-bottom: 1rem;
}

.legal ul {
  margin: 0 0 1.15rem 1.15rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal a:hover {
  color: var(--gold-light);
}

.legal .room__name {
  margin: 0;
}

.legal .rates a {
  text-decoration: none;
}

.legal strong {
  color: var(--cream);
  font-weight: 500;
}

.legal__inner--wide {
  max-width: 52rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  margin: 2.5rem 0 0.5rem;
}

.contact-card {
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
}

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.contact-card__value {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--cream);
}

.contact-card__value a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-card__value a:hover {
  color: var(--gold);
}

.contact-card__note,
.contact-card__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-card__link {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-card__link:hover {
  color: var(--gold-light);
}

.contact-hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-hours span {
  color: var(--muted);
}

/* ——— Age gate ——— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 10, 8, 0.88);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease both;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 420px);
  padding: 2.75rem 1.5rem;
  background:
    radial-gradient(ellipse at top, rgba(40, 60, 48, 0.5), transparent 60%),
    var(--bg-panel);
  border: 1px solid var(--line);
  text-align: center;
  animation: scaleIn 0.5s var(--ease) both;
}

.age-gate__label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.age-gate__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate__actions .btn {
  width: 100%;
}

.age-denied {
  display: none;
  margin-top: 1.25rem;
  color: #d4a0a0;
  font-size: 0.9rem;
}

.age-denied.is-visible {
  display: block;
}

body.age-locked {
  overflow: hidden;
}

body.age-locked .page-content {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(28px);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

#rooms .reveal,
#reserve .reveal,
#rates .reveal,
.room.reveal {
  opacity: 1;
  transform: none;
}

/* ——— Animations ——— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ——— Responsive ——— */
@media (max-width: 1120px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(12, 18, 16, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem 6vw 1.5rem;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav__links .nav__cta {
    align-self: flex-start;
    margin-top: 0.65rem;
    width: fit-content;
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}

@media (max-width: 900px) {
  .experience {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience__visual {
    min-height: 240px;
  }

  .experience__visual img {
    min-height: 240px;
  }

  .casino-grid,
  .home-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .room {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1.75rem 0;
  }

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

  .reserve-actions {
    align-items: stretch;
  }

  .reserve-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section__title,
  .section__title--wide,
  .section__text,
  .room__desc,
  .dining-item__desc,
  .closing__text {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 5.5rem 5vw 7vh;
  }

  .hero__actions,
  .closing__actions,
  .age-gate__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .closing__actions .btn {
    width: 100%;
  }

  .section,
  .legal {
    padding: 3.5rem 5vw 4rem;
  }

  .closing {
    padding: 4rem 5vw;
  }

  .home-features,
  .casino-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 5vw 2.5rem;
  }

  .footer__links {
    gap: 0.85rem 1.15rem;
  }

  .dining-item {
    padding-left: 1rem;
  }

  .contact-hours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .reserve-field input,
  .reserve-field select,
  .reserve-field textarea {
    font-size: 16px;
  }

  .rates-wrap {
    overflow: visible;
  }

  .rates,
  .rates tbody,
  .rates tr,
  .rates td {
    display: block;
    width: 100%;
  }

  .rates thead {
    display: none;
  }

  .rates tr {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
  }

  .rates th,
  .rates td {
    padding: 0.2rem 0;
    border: 0;
  }

  .rates td[data-label]::before {
    content: attr(data-label);
    display: inline-block;
    min-width: 7.5rem;
    margin-right: 0.75rem;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .rates td[data-label=""]::before,
  .rates td:not([data-label])::before {
    display: none;
  }

  .rates td:first-child {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
  }

  .rates td:first-child::before {
    display: none;
  }
}
