/* —— Design tokens: dark lounge / forest speakeasy —— */
:root {
  --bg: #080b0a;
  --bg-soft: #0f1412;
  --forest: #163028;
  --forest-mid: #1e3d32;
  --ink: #f3efe6;
  --ink-muted: #a9a296;
  --amber: #c9a66b;
  --amber-soft: #e6c992;
  --line: rgba(243, 239, 230, 0.12);
  --glow: rgba(201, 166, 107, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --section-y: clamp(4.5rem, 10vw, 8rem);
  --container: 86rem;
  --gutter: clamp(1.25rem, 3.5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: none;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--amber);
  color: #111;
  font-weight: 500;
}

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

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

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.section--accent {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(30, 61, 50, 0.55), transparent),
    var(--bg-soft);
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  max-width: 36rem;
}

.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title--light {
  color: #fff;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 10, 0.9);
  border-bottom-color: var(--line);
}

.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo__suit {
  color: var(--amber);
  font-size: 1.1em;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.nav a:hover {
  color: var(--ink);
}

.nav__cta {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 166, 107, 0.45);
  color: var(--amber-soft) !important;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.nav__cta:hover {
  background: rgba(201, 166, 107, 0.12);
  border-color: var(--amber);
  box-shadow: 0 0 24px var(--glow);
}

.nav-toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.nav-toggle__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle__bar:nth-child(2) {
  transform: translate(-50%, calc(-50% - 4px));
}

.nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, calc(-50% + 4px));
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.5rem;
  background: rgba(8, 11, 10, 0.95);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.25rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s,
    color 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--amber-soft), var(--amber));
  color: #1a140c;
  box-shadow: 0 0 0 0 transparent;
}

.btn--primary:hover {
  box-shadow: 0 8px 32px var(--glow);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: rgba(243, 239, 230, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

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

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.2s var(--ease-out);
}

.hero.is-ready .hero__image {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 11, 10, 0.42) 0%,
      rgba(8, 11, 10, 0.12) 28%,
      rgba(8, 11, 10, 0.28) 48%,
      rgba(8, 11, 10, 0.72) 74%,
      rgba(8, 11, 10, 0.94) 100%
    ),
    linear-gradient(105deg, rgba(8, 11, 10, 0.55) 0%, rgba(8, 11, 10, 0.18) 38%, transparent 62%);
}

.hero__content {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
}

.hero__eyebrow {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__suit {
  color: var(--amber);
}

.hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.25rem, 12vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  max-width: 12ch;
}

.hero__copy {
  max-width: 36rem;
}

.hero__headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: rgba(243, 239, 230, 0.95);
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 32rem;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.6;
}

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

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.65;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

@media (min-width: 960px) {
  .hero {
    align-items: end;
    min-height: 100svh;
  }

  .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.85fr);
    grid-template-areas:
      "eyebrow eyebrow"
      "brand brand"
      "copy actions";
    column-gap: clamp(2rem, 5vw, 5rem);
    row-gap: 0.35rem;
    align-items: end;
    padding: calc(var(--header-h) + 4rem) 0 6.5rem;
  }

  .hero__eyebrow {
    grid-area: eyebrow;
  }

  .hero__brand {
    grid-area: brand;
    max-width: none;
    margin-bottom: 1.35rem;
  }

  .hero__copy {
    grid-area: copy;
    max-width: 38rem;
  }

  .hero__actions {
    grid-area: actions;
    justify-content: flex-end;
    padding-bottom: 0.15rem;
  }

  .hero__lead {
    margin-bottom: 0;
  }

  .hero__image {
    object-position: 50% 40%;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(8, 11, 10, 0.38) 0%,
        rgba(8, 11, 10, 0.08) 32%,
        rgba(8, 11, 10, 0.22) 52%,
        rgba(8, 11, 10, 0.68) 78%,
        rgba(8, 11, 10, 0.93) 100%
      ),
      linear-gradient(100deg, rgba(8, 11, 10, 0.42) 0%, rgba(8, 11, 10, 0.12) 42%, transparent 68%);
  }

  .btn {
    min-height: 3.25rem;
    padding: 0.85rem 1.75rem;
  }
}

@media (min-width: 1280px) {
  .hero__brand {
    font-size: clamp(7rem, 9.5vw, 10.5rem);
  }

  .hero__content {
    padding-bottom: 7.5rem;
  }
}

/* —— Intro —— */
.intro__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 880px) {
  .intro__grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.intro__copy p {
  color: var(--ink-muted);
  margin: 1.25rem 0 0;
}

.intro__note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
}

.intro__visual {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(8, 11, 10, 0.35);
  pointer-events: none;
}

.intro__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

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

.event-list li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transition: color 0.3s, padding-left 0.4s var(--ease-out);
}

.event-list li::before {
  content: "♠";
  color: var(--amber);
  font-size: 0.7em;
  opacity: 0.85;
}

.event-list li:hover {
  color: var(--amber-soft);
  padding-left: 0.5rem;
}

@media (min-width: 720px) {
  .event-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

/* —— Amenities —— */
.feature-block {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 880px) {
  .feature-block {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }

  .feature-block--reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .feature-block--reverse .feature-block__text {
    order: 2;
  }
}

.feature-block__text h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
}

.feature-block__text p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 28rem;
}

.feature-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.amenity-strip {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .amenity-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.amenity-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.92);
  transition: filter 0.5s, transform 0.7s var(--ease-out);
}

.amenity-strip img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.amenity-points {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .amenity-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity-points li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
}

.amenity-points li::before {
  content: "— ";
  color: var(--amber);
}

/* —— Games —— */
.games__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .games__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.games__copy p {
  color: var(--ink-muted);
  margin: 1.25rem 0 0;
}

.games__list {
  margin-top: 1.75rem;
}

.games__list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.games__list li::before {
  content: "♦ ";
  color: var(--amber);
  font-size: 0.75em;
}

.games__note {
  margin-top: 1.5rem !important;
  font-size: 0.9rem;
  opacity: 0.75;
}

.games__visual {
  margin: 0;
}

.games__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* —— Pricing —— */
.price-table {
  border-top: 1px solid var(--line);
}

.price-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.price-table__row--featured {
  background: linear-gradient(90deg, rgba(30, 61, 50, 0.35), transparent);
  padding-inline: 1rem;
  margin-inline: -1rem;
  border-color: rgba(201, 166, 107, 0.25);
}

.price-table__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--amber-soft);
  white-space: nowrap;
}

.price-table__value span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-left: 0.25rem;
}

.price-extras {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--ink-muted);
}

.price-extras strong {
  color: var(--amber-soft);
  font-weight: 500;
}

/* —— Contact —— */
.contact {
  position: relative;
  isolation: isolate;
  min-height: 70svh;
  display: grid;
  align-items: center;
  padding-block: clamp(5rem, 12vw, 8rem);
}

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

.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.85);
}

.contact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(22, 48, 40, 0.55), transparent 55%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.55), rgba(8, 11, 10, 0.88));
}

.contact__inner {
  max-width: 36rem;
  text-align: left;
}

.contact__lead {
  margin: 1.25rem 0 2rem;
  color: rgba(243, 239, 230, 0.78);
  font-size: 1.1rem;
}

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

.contact__tagline {
  margin: 2.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(243, 239, 230, 0.7);
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.site-footer__inner {
  display: grid;
  gap: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.site-footer__copy {
  margin: 0.5rem 0 0;
  opacity: 0.65;
}

/* —— Reveal animations —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal] {
  --reveal-delay: 0ms;
}

.hero [data-reveal]:nth-child(1) {
  --reveal-delay: 80ms;
}
.hero [data-reveal]:nth-child(2) {
  --reveal-delay: 160ms;
}
.hero [data-reveal]:nth-child(3) {
  --reveal-delay: 240ms;
}
.hero [data-reveal]:nth-child(4) {
  --reveal-delay: 320ms;
}

.event-list li[data-reveal]:nth-child(1) { --reveal-delay: 40ms; }
.event-list li[data-reveal]:nth-child(2) { --reveal-delay: 80ms; }
.event-list li[data-reveal]:nth-child(3) { --reveal-delay: 120ms; }
.event-list li[data-reveal]:nth-child(4) { --reveal-delay: 160ms; }
.event-list li[data-reveal]:nth-child(5) { --reveal-delay: 200ms; }
.event-list li[data-reveal]:nth-child(6) { --reveal-delay: 240ms; }
.event-list li[data-reveal]:nth-child(7) { --reveal-delay: 280ms; }
.event-list li[data-reveal]:nth-child(8) { --reveal-delay: 320ms; }
.event-list li[data-reveal]:nth-child(9) { --reveal-delay: 360ms; }

.price-table__row {
  transition: background 0.25s, border-color 0.25s;
}

.price-table__row:hover {
  background: rgba(30, 61, 50, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__image {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .amenity-strip img:hover,
  .event-list li:hover {
    transform: none;
  }
}
