@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@400;700&display=swap');

:root {
  --bg-base: #050E0A;
  --bg-card: #091510;
  --bg-section-alt: #040C08;
  --accent-primary: #059669;
  --accent-secondary: #D4AF37;
  --text-primary: #F0FFF4;
  --text-muted: #6B9E82;
  --gradient-hero: linear-gradient(160deg, #050E0A 0%, #0A1E14 100%);
  --radius-card: 0px;
  --transition: 0.25s ease;
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.35);
  --container: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 24%),
    radial-gradient(circle at right 20%, rgba(5, 150, 105, 0.12), transparent 22%),
    var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
}

section,
header,
footer,
main,
.container,
.wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-family: 'Cinzel', serif;
  background: linear-gradient(90deg, #059669 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.15;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  min-height: 70px;
  height: auto;
  background: rgba(5, 14, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 14, 10, 0.98);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--accent-secondary);
}

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 0 0 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-check:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-check:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-check:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  min-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
}

.btn {
  background: linear-gradient(90deg, #059669, #0d9f77);
  color: var(--text-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(240, 255, 244, 0.18);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5, 14, 10, 0.5), rgba(5, 14, 10, 0.8)),
    url('images/hero.webp') center/cover no-repeat;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: end;
  padding: 100px 0 72px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before,
.hero::before,
.casino-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 10, 0.35), rgba(5, 14, 10, 0.88));
  z-index: -1;
}

.page-hero.rooms {
  background-image: url('images/rooms.webp');
}

.page-hero.restaurant {
  background-image: url('images/restaurant.webp');
}

.page-hero.spa {
  background-image: url('images/spa.webp');
}

.page-hero.casino {
  background-image: url('images/casino.webp');
}

.page-hero.contact {
  background-image: url('images/exterior.webp');
}

.page-hero.legal {
  background-image: linear-gradient(rgba(5, 14, 10, 0.45), rgba(5, 14, 10, 0.9)), url('images/gallery-2.webp');
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
}

.kicker::before,
.kicker::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 12px;
}

p,
li,
dd,
dt,
label,
input,
textarea,
select {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.hero-copy p,
.page-hero-copy p,
.section-copy p,
.intro p {
  color: rgba(240, 255, 244, 0.86);
  max-width: 64ch;
}

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

.deco-sunburst,
.deco-divider,
.deco-frame {
  color: var(--accent-secondary);
}

.deco-sunburst {
  width: min(240px, 42vw);
  margin-bottom: 24px;
}

.hero-line,
.section-line {
  width: min(240px, 60%);
  height: 2px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
}

.stats-strip {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.08), rgba(212, 175, 55, 0.08));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  color: var(--accent-secondary);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin-bottom: 4px;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--bg-section-alt);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-header p {
  max-width: 54ch;
  color: rgba(240, 255, 244, 0.78);
}

.grid-3,
.grid-2,
.gallery-grid,
.info-grid,
.contact-grid,
.legal-grid,
.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.card,
.feature-card,
.info-card,
.legal-card,
.notice-box,
.quote-panel,
.contact-panel,
.gallery-card,
.detail-panel {
  background: var(--bg-card);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.feature-card,
.info-card,
.gallery-card,
.legal-card,
.detail-panel,
.contact-panel {
  overflow: hidden;
}

.feature-card:hover,
.info-card:hover,
.detail-panel:hover,
.contact-panel:hover,
.gallery-card:hover {
  border-top: 2px solid #D4AF37;
}

.feature-card img,
.gallery-card img {
  aspect-ratio: 16 / 11;
}

.card-content,
.panel-content,
.legal-content,
.quote-content,
.detail-content {
  padding: 24px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

.price-tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-secondary);
  letter-spacing: 0.08em;
  margin: 16px 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.link-arrow::after {
  content: '→';
}

.deco-divider {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.deco-divider svg {
  width: 100%;
  height: 74px;
  display: block;
}

.gallery-grid .gallery-card:nth-child(1) img {
  aspect-ratio: 4 / 5;
}

.gallery-grid .gallery-card:nth-child(2) img {
  aspect-ratio: 4 / 5;
}

.casino-teaser {
  position: relative;
  padding: 88px 0;
  background: url('images/casino.webp') center/cover no-repeat;
}

.casino-frame {
  max-width: 720px;
  padding: 44px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(5, 14, 10, 0.72);
  backdrop-filter: blur(6px);
}

.notice-box {
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.09), rgba(9, 21, 16, 0.92));
}

.notice-box strong {
  display: inline-block;
  color: var(--accent-secondary);
  margin-bottom: 10px;
}

.staff-grid,
.split-layout,
.feature-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.portrait-card img {
  aspect-ratio: 4 / 5;
}

.quote-panel {
  padding: 36px;
}

.quote-panel blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--accent-secondary);
  line-height: 1.5;
}

.quote-panel p {
  margin-top: 16px;
  color: rgba(240, 255, 244, 0.78);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.booking-panel,
.detail-panel,
.contact-panel {
  padding: 30px;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 16px;
}

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

label span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(4, 12, 8, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: 0;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid rgba(212, 175, 55, 0.45);
  border-color: rgba(212, 175, 55, 0.6);
}

.details-list,
.hours-list,
.legal-list,
.contact-list {
  display: grid;
  gap: 12px;
}

.details-list div,
.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.details-list dt,
.contact-list dt {
  color: var(--text-muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.pill-list li {
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  color: var(--text-primary);
  background: rgba(4, 12, 8, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.84rem;
}

.legal-article {
  display: grid;
  gap: 26px;
}

.legal-card {
  padding: 30px;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 14px;
}

.legal-card p + p,
.legal-card ul,
.legal-card ol {
  margin-top: 12px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 18px;
}

.legal-card li + li {
  margin-top: 8px;
}

.site-footer {
  background: #030906;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(240, 255, 244, 0.8);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.footer-links,
.footer-legal,
.footer-rg {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(240, 255, 244, 0.66);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg-card);
  border-top: 1px solid var(--accent-primary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -14px 28px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  flex: 1 1 320px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-box {
  background: var(--bg-card);
  border-radius: 0;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  border-top: 3px solid #D4AF37;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-box p {
  margin-top: 14px;
  color: rgba(240, 255, 244, 0.8);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-wrap,
  .feature-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    background: var(--bg-base);
    padding: 24px 28px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-check:checked ~ .nav-menu,
  .nav-check:checked ~ nav .nav-menu {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .stats-grid,
  .grid-3,
  .cards-grid,
  .grid-2,
  .gallery-grid,
  .info-grid,
  .contact-grid,
  .footer-grid,
  .staff-grid,
  .split-layout,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .section-header,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 0 16px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 88px 0 68px;
  }

  .casino-frame,
  .booking-panel,
  .detail-panel,
  .contact-panel,
  .legal-card,
  .quote-panel,
  .modal-box {
    padding: 24px;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .cookie-banner {
    padding: 16px;
  }
}

/* Header navigation rebuilt from scratch */
.site-header { overflow: visible !important; }
.menu-switch { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); opacity: 0; }
.menu-button { display: none; width: 48px; height: 48px; margin-left: auto; padding: 12px; flex: 0 0 48px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; z-index: 1101; }
.menu-button span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--text-primary, #fff); transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-switch:checked + .menu-button span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-switch:checked + .menu-button span:nth-child(2) { opacity: 0; }
.menu-switch:checked + .menu-button span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.header-navigation { display: flex; align-items: center; gap: 28px; list-style: none; }

@media (max-width: 1200px) {
  .site-header {
    padding-right: 76px;
  }
  .site-nav {
    margin-left: auto;
    flex: 0 0 48px;
  }
  .site-header .menu-button {
    display: flex !important;
    position: absolute !important;
    top: 11px;
    right: 16px;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(212, 175, 55, 0.75);
    background: rgba(5, 14, 10, 0.96);
  }
  .site-header .menu-button span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f0fff4 !important;
  }
  .header-navigation {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 28px;
    background: var(--bg-base, #050e0a);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 1100;
  }
  .menu-switch:checked ~ .header-navigation,
  .menu-switch:checked ~ nav .header-navigation { display: flex !important; }
  .header-navigation li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .header-navigation a { display: block; width: 100%; padding: 15px 0; }
}
