/* Evening Vibes Guide — unique land-based hospitality styles */
:root {
  --navy-950: #060d18;
  --navy-900: #0a1628;
  --navy-800: #12233d;
  --navy-700: #1b3a5f;
  --gold-300: #e8d48b;
  --gold-400: #d4af37;
  --gold-500: #c9a227;
  --gold-700: #8a7020;
  --cream: #f3eee4;
  --cream-muted: #c9c2b4;
  --ink: #e9e4d8;
  --danger: #b84a4a;
  --ok: #3d8b6e;
  --overlay: rgba(4, 8, 16, 0.82);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Sora", "Helvetica Neue", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

html.age-locked,
html.age-locked body {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(27, 58, 95, 0.45), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 40%, #07111f);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-300);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--cream);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--cream);
}

p {
  margin: 0 0 1rem;
  color: var(--cream-muted);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.6rem 1rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6, 13, 24, 0.78);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img,
.brand svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold-300);
  margin: 0;
}

.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-300);
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-300);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gold-500);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-700));
  color: var(--navy-950);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s;
}

.btn:hover {
  color: var(--navy-950);
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-300);
  border-color: rgba(201, 162, 39, 0.55);
}

.btn-ghost:hover {
  color: var(--cream);
  background: rgba(201, 162, 39, 0.08);
  filter: none;
}

.btn-danger {
  background: transparent;
  border-color: rgba(184, 74, 74, 0.7);
  color: #e8b4b4;
}

.btn-danger:hover {
  background: rgba(184, 74, 74, 0.15);
  color: #fff;
  filter: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 13, 24, 0.35) 0%, rgba(6, 13, 24, 0.55) 45%, rgba(6, 13, 24, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 13, 24, 0.75), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4.5rem;
  max-width: 36rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  color: var(--gold-300);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 34ch;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(18, 35, 61, 0.35), rgba(6, 13, 24, 0.2));
  border-block: 1px solid rgba(201, 162, 39, 0.12);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 0.6rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

/* Games — not cards as UI containers; editorial columns */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding-top: 2rem;
}

.game-item h3 {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  color: var(--gold-300);
}

.game-item p {
  margin: 0;
  font-size: 0.95rem;
}

.game-item + .game-item {
  border-left: 1px solid rgba(201, 162, 39, 0.18);
  padding-left: 1.5rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.gallery figure:first-child {
  grid-row: 1 / span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.8s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(6, 13, 24, 0.85));
  font-size: 0.85rem;
  color: var(--cream);
}

/* CTA visit */
.visit-cta {
  text-align: center;
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(201, 162, 39, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(18, 35, 61, 0.4), transparent);
  border-block: 1px solid rgba(201, 162, 39, 0.2);
}

.visit-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.75rem;
}

.visit-cta p {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

/* Contact / map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

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

.contact-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.map-frame {
  border: 1px solid rgba(201, 162, 39, 0.25);
  min-height: 340px;
  background: var(--navy-800);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* FAQ accordion */
.accordion {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.accordion-item {
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 1.15rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-trigger::after {
  content: "+";
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 1.25rem;
  transition: transform 0.3s var(--ease);
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 0 1.25rem;
  max-width: 48rem;
}

.accordion-panel.is-open {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

/* Page hero (inner) */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  background:
    radial-gradient(800px 320px at 15% 0%, rgba(27, 58, 95, 0.5), transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 40rem;
  margin: 0;
  font-size: 1.05rem;
}

/* Jobs */
.jobs {
  display: grid;
  gap: 0;
}

.job {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
}

.job h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  color: var(--gold-300);
}

.job-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

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

.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  grid-template-columns: none;
}

.checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ok);
  display: none;
}

.form-note.is-visible {
  display: block;
}

.form-error {
  color: #e8b4b4;
  font-size: 0.85rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}

/* Values / partnership lists */
.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.9rem;
  margin: 2.5rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.4rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--gold-300);
}

.prose ul {
  padding-left: 1.2rem;
  color: var(--cream-muted);
}

.prose li {
  margin-bottom: 0.45rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.values h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: var(--gold-300);
}

.values p {
  margin: 0;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.package {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold-500);
}

.package h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.package .rate {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-300);
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-300);
  margin: 0 0 0.75rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 0.82rem;
  color: var(--cream-muted);
}

.responsible {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.responsible a {
  color: var(--gold-300);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--overlay);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.is-open {
  display: flex;
  animation: fadeUp 0.35s var(--ease);
}

.modal {
  width: min(100%, 440px);
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(201, 162, 39, 0.12), transparent 70%),
    var(--navy-900);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 2rem 1.75rem;
  color: var(--cream);
}

.modal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.85rem;
}

.modal p {
  margin-bottom: 1.25rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.age-modal .modal {
  width: min(100%, 480px);
  text-align: center;
}

.age-modal .modal-actions {
  justify-content: center;
}

.age-modal .responsible {
  margin-top: 1.25rem;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: 640px;
  margin-inline: auto;
  background: var(--navy-800);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 1.15rem 1.25rem;
  display: none;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.cookie-bar.is-open {
  display: grid;
  animation: riseIn 0.45s var(--ease);
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 960px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .game-item:nth-child(even) {
    border-left: 1px solid rgba(201, 162, 39, 0.18);
    padding-left: 1.5rem;
  }

  .split,
  .contact-grid,
  .job,
  .footer-grid,
  .values,
  .packages {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery figure:first-child {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(6, 13, 24, 0.97);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-item + .game-item,
  .game-item:nth-child(even) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    padding-top: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero-brand {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-media img {
    transform: none;
  }
}
