/* Vancouver Palace — land-based entertainment venue */
:root {
  --green-950: #061a14;
  --green-900: #0a2e22;
  --green-800: #0f3d2e;
  --green-700: #1a5c45;
  --green-600: #247a5c;
  --gold-500: #c4a35a;
  --gold-400: #d4b86a;
  --gold-300: #e2c97a;
  --ink: #14201c;
  --ink-soft: #3a4a44;
  --mist: #f3f6f4;
  --paper: #fafbfa;
  --line: rgba(15, 61, 46, 0.12);
  --shadow: 0 18px 50px rgba(6, 26, 20, 0.12);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --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-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--green-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-500);
}

ul {
  list-style: none;
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

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

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 163, 90, 0.18), transparent 50%),
    linear-gradient(160deg, var(--green-950), var(--green-800));
}

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

.age-gate__panel {
  width: min(100%, 440px);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #f5f7f6;
  background: rgba(10, 46, 34, 0.72);
  border: 1px solid rgba(196, 163, 90, 0.35);
  backdrop-filter: blur(12px);
  animation: rise 0.55s var(--ease) both;
}

.age-gate__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.age-gate__panel p {
  color: rgba(245, 247, 246, 0.82);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate__denied {
  margin-top: 1rem;
  color: #f0c9c9;
  font-size: 0.9rem;
}

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

/* —— Cookie bar —— */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: var(--green-900);
  color: #f5f7f6;
  border: 1px solid rgba(196, 163, 90, 0.3);
  box-shadow: var(--shadow);
  animation: rise 0.4s var(--ease) both;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  flex: 1 1 240px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(245, 247, 246, 0.88);
}

.cookie-bar a {
  color: var(--gold-400);
}

.cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 251, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-800);
}

.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green-800);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.nav__cta {
  padding: 0.55rem 1rem;
  background: var(--green-800);
  color: #fff !important;
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--green-700);
  color: #fff !important;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.btn--gold {
  background: var(--gold-500);
  color: var(--green-950);
}

.btn--gold:hover {
  background: var(--gold-400);
  color: var(--green-950);
}

.btn--outline {
  border: 1px solid rgba(245, 247, 246, 0.55);
  color: #f5f7f6;
}

.btn--outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn--solid {
  background: var(--green-800);
  color: #fff;
}

.btn--solid:hover {
  background: var(--green-700);
  color: #fff;
}

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

.btn--ghost:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}

.btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  color: #f5f7f6;
  overflow: hidden;
  background: var(--green-950);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: kenburns 18s ease-out both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 20, 0.45) 0%, rgba(6, 26, 20, 0.62) 50%, rgba(6, 26, 20, 0.78) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(6, 26, 20, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(196, 163, 90, 0.15), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  max-width: 720px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  animation: rise 0.7s var(--ease) 0.1s both;
}

.hero__brand span {
  display: block;
  color: var(--gold-400);
}

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(245, 247, 246, 0.9);
  max-width: 36ch;
  margin-bottom: 1.75rem;
  animation: rise 0.7s var(--ease) 0.22s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.7s var(--ease) 0.34s both;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--mist {
  background:
    linear-gradient(180deg, #eef3f0 0%, var(--mist) 100%);
}

.section--green {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(196, 163, 90, 0.12), transparent 40%),
    linear-gradient(165deg, var(--green-900), var(--green-950));
  color: #f5f7f6;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--green-900);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.section--green .section__title {
  color: #f5f7f6;
}

.section__text {
  max-width: 58ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.section--green .section__text {
  color: rgba(245, 247, 246, 0.82);
}

.section__head {
  margin-bottom: 2.5rem;
}

/* —— Gallery —— */
.gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
  }

  .gallery__item:first-child {
    grid-row: 1 / 3;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  min-height: 220px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 26, 20, 0.85));
}

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

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.split__media {
  overflow: hidden;
  min-height: 280px;
  background: var(--green-900);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* —— Info rows / contact —— */
.info-grid {
  display: grid;
  gap: 1.5rem;
}

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

.info-block {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-400);
}

.info-block p,
.info-block a,
.info-block li {
  color: rgba(245, 247, 246, 0.85);
  font-size: 0.95rem;
}

.info-block a {
  color: var(--gold-300);
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.info-block ul li + li {
  margin-top: 0.35rem;
}

.hours-list {
  display: grid;
  gap: 0.35rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.35rem;
}

/* —— Accordion —— */
.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-900);
}

.accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--gold-500);
  transition: transform 0.25s var(--ease);
}

.accordion__icon::before {
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
}

.accordion__icon::after {
  top: 3px;
  left: 10px;
  width: 2px;
  height: 16px;
}

.accordion__item.is-open .accordion__icon::after {
  transform: scaleY(0);
}

.accordion__panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--ink-soft);
  max-width: 65ch;
}

.accordion__item.is-open .accordion__panel {
  display: block;
  animation: rise 0.35s var(--ease);
}

/* —— CTA strip —— */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-900);
  max-width: 16ch;
  line-height: 1.2;
}

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

/* —— Page hero (inner) —— */
.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  background:
    linear-gradient(180deg, #e8efe9 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--green-900);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 55ch;
  color: var(--ink-soft);
}

/* —— Content / legal —— */
.content {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-900);
  margin: 2rem 0 0.75rem;
}

.content h3 {
  font-size: 1.1rem;
  color: var(--green-800);
  margin: 1.5rem 0 0.5rem;
}

.content p,
.content li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  max-width: 70ch;
}

.content ul {
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}

.content ul li {
  list-style: disc;
}

.content a {
  word-break: break-word;
}

/* —— Job / partner lists —— */
.stack {
  display: grid;
  gap: 1rem;
}

.stack-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.stack-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}

.stack-item p {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  max-width: 65ch;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
}

/* —— Modal —— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 26, 20, 0.72);
}

.modal[hidden] {
  display: none;
}

.modal__panel {
  width: min(100%, 480px);
  padding: 2rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: rise 0.35s var(--ease);
}

.modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-900);
  margin-bottom: 0.75rem;
}

.modal__panel p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

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

/* —— Footer —— */
.site-footer {
  background: var(--green-950);
  color: rgba(245, 247, 246, 0.78);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer .brand__name {
  color: #f5f7f6;
}

.site-footer .brand__tag {
  color: rgba(245, 247, 246, 0.55);
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(245, 247, 246, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-400);
}

.site-footer ul li + li {
  margin-top: 0.45rem;
}

.footer-note {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.8rem;
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

/* —— Mobile nav —— */
@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .nav__cta {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__media img {
    animation: none;
  }
}
