/* =========================================================
   Club Room Society — Main Stylesheet
   Foundation: variables, reset, typography, header, footer
   ========================================================= */

/* === FONTS === */
@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --color-bg: #080607;
  --color-bg-soft: #120d0e;
  --color-surface: #181112;
  --color-surface-2: #211718;
  --color-red: #e72b41;
  --color-red-dark: #9f1729;
  --color-gold: #c9a45c;
  --color-gold-soft: #e2c783;
  --color-white: #ffffff;
  --color-text: #f7f2ea;
  --color-muted: #cfc6b8;
  --color-border: rgba(201, 164, 92, 0.35);

  --font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  --header-height: 4.5rem;
  --container-max: 1320px;
  --container-padding: 1.25rem;

  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;

  --space-section: clamp(3rem, 8vw, 5.5rem);

  --font-serif: Georgia, 'Times New Roman', serif;
}

@media (min-width: 992px) {
  :root {
    --header-height: 5rem;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-red-dark) var(--color-bg-soft);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: #080607;
  background: -webkit-linear-gradient(to bottom, #080607, #0d0809);
  background: linear-gradient(to bottom, #080607, #0d0809);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Non-home pages offset content below fixed header */
body:not(.page-home) {
  padding-top: var(--header-height);
}

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

address {
  font-style: normal;
}

/* === CUSTOM SCROLLBAR (webkit) === */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--color-red-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-red);
}

/* === GLOBAL FOCUS === */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -120%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-inline: 3rem;
  }
}

/* === TYPOGRAPHY UTILITIES === */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 58ch;
}

.gold-line {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--color-gold);
  margin-block: 1.25rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  min-height: 3.25rem;
  min-width: 10rem;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Red — primary CTA */
.btn--red {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--red:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  box-shadow: 0 4px 24px rgba(231, 43, 65, 0.45);
}

/* Gold — secondary CTA */
.btn--gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 4px 24px rgba(201, 164, 92, 0.35);
}

/* Ghost — tertiary / inline */
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(247, 242, 234, 0.2);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

@media (min-width: 576px) {
  .btn {
    padding: 1rem 2.75rem;
  }
}

/* === SITE HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition:
    background var(--transition-base),
    backdrop-filter var(--transition-base),
    box-shadow var(--transition-base);
}

/* Scrolled state and non-home pages: solid header */
.site-header.is-scrolled {
  background: #080607;
  background: -webkit-linear-gradient(
    to right,
    rgba(8, 6, 7, 0.98),
    rgba(22, 13, 15, 0.98)
  );
  background: linear-gradient(
    to right,
    rgba(8, 6, 7, 0.98),
    rgba(22, 13, 15, 0.98)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 var(--color-border),
    0 4px 24px rgba(0, 0, 0, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 2rem;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    padding-inline: 3rem;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 992px) {
  .site-header__logo img {
    height: 2.75rem;
  }
}

/* === SITE NAV (desktop) === */
.site-nav {
  display: none;
}

@media (min-width: 992px) {
  .site-nav {
    display: block;
  }
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.site-nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.site-nav__link:hover {
  color: var(--color-gold-soft);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
  background: var(--color-gold);
}

.site-nav__link.is-active {
  color: var(--color-gold);
}

.site-nav__link.is-active::after {
  transform: scaleX(1);
  background: var(--color-red);
}

/* === NAV TOGGLE (hamburger) === */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--color-border);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE NAV === */
.mobile-nav {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: #080607;
  background: linear-gradient(to bottom, #0d0809, #120d0e);
  border-top: 1px solid var(--color-border);
  padding: 1.25rem var(--container-padding) 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

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

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: var(--container-max);
  margin-inline: auto;
}

.mobile-nav__link {
  display: block;
  padding: 0.9375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast),
    border-color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--color-gold);
  padding-left: 1.25rem;
  outline: none;
}

.mobile-nav__link.is-active {
  color: var(--color-gold);
  border-bottom-color: rgba(201, 164, 92, 0.25);
}

/* === PAGE HERO SHARED === */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 22rem;
  overflow: hidden;
}

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

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8, 6, 7, 0.88) 0%,
    rgba(8, 6, 7, 0.55) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 28rem;
  }
}

@media (min-width: 1200px) {
  .page-hero {
    min-height: 32rem;
  }
}

.page-hero__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  max-width: 20ch;
}

.page-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 52ch;
}

/* === SECTION SPACING === */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 8rem 0;
  }
}

.section--dark {
  background: var(--color-surface);
  background: linear-gradient(
    to bottom,
    var(--color-surface),
    var(--color-bg-soft)
  );
}

.section--darker {
  background: var(--color-surface-2);
  background: linear-gradient(
    to bottom,
    var(--color-surface-2),
    var(--color-surface)
  );
}

/* === SITE FOOTER === */
.site-footer {
  background: #050405;
  background: linear-gradient(to bottom, #080607, #050405);
  border-top: 1px solid var(--color-border);
}

/* Footer CTA banner */
.site-footer__cta {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.site-footer__cta-headline {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.site-footer__cta-text {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 46ch;
  margin-inline: auto;
}

/* Footer body grid */
.site-footer__body {
  padding: 4rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 2rem 3rem;
    align-items: start;
  }
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 1.125rem;
}

.site-footer__logo-link img {
  height: 8rem;
  width: auto;
}

.site-footer__brand-desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 34ch;
}

.site-footer__nav-title,
.site-footer__contact-title,
.site-footer__hours-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__nav-link {
  font-size: 0.9375rem;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.site-footer__nav-link:hover {
  color: var(--color-text);
}

.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.site-footer__contact-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-footer__contact-value {
  font-size: 0.9375rem;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

a.site-footer__contact-value:hover {
  color: var(--color-text);
}

.site-footer__hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.site-footer__hours-days {
  color: var(--color-text);
}

.site-footer__hours-time {
  color: var(--color-muted);
}

/* Footer bottom bar */
.site-footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 164, 92, 0.12);
}

.site-footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(207, 198, 184, 0.45);
}

.site-footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.375rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .site-footer__legal-nav {
    justify-content: flex-end;
  }
}

.site-footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(207, 198, 184, 0.45);
  transition: color var(--transition-fast);
}

.site-footer__legal-link:hover {
  color: var(--color-muted);
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 72ch;
  margin-inline: auto;
  padding: 5rem 0 6rem;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-content .legal-updated {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 1.125rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.125rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* === 404 PAGE === */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  text-align: center;
  padding: 4rem var(--container-padding);
}

.error-page__code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.error-page__title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.error-page__desc {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.error-page__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}

@media (min-width: 576px) {
  .error-page__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* === ENTERTAINMENT PAGE === */
.entertainment-img {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: 2px;
  overflow: hidden;
  max-height: 28rem;
}

.entertainment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entertainment-note {
  font-style: italic;
  color: rgba(207, 198, 184, 0.6);
  font-size: 0.875rem;
  max-width: 64ch;
  margin-bottom: 1.5rem;
}

.entertainment-cta {
  margin-top: 0.5rem;
}

/* === MENU PAGE === */
.menu-intro {
  margin-bottom: 4rem;
}

.menu-category {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

.menu-category:last-child {
  border-bottom: none;
}

.menu-category__header {
  margin-bottom: 1.5rem;
}

.menu-category__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}

.menu-category__subtitle {
  font-size: 0.875rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.menu-category__image {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 2px;
  overflow: hidden;
  max-height: 100%;
}

.menu-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.menu-category__image:hover img {
  transform: scale(1.03);
}

.menu-category__expand {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 7, 0.72);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 2px;
  color: var(--color-gold);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.menu-category__image:hover .menu-category__expand {
  opacity: 1;
}

.menu-category__expand:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

/* --- Menu fullscreen overlay --- */
.menu-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-fullscreen[hidden] {
  display: none;
}

.menu-fullscreen.is-open {
  opacity: 1;
}

.menu-fullscreen__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 7, 0.96);
  cursor: pointer;
}

.menu-fullscreen__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(201, 164, 92, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.menu-fullscreen.is-open .menu-fullscreen__img {
  transform: scale(1);
}

.menu-fullscreen__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 7, 0.8);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
  z-index: 2;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.menu-fullscreen__close:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table__row {
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
  transition: background var(--transition-fast);
}

.menu-table__row:hover {
  background: rgba(201, 164, 92, 0.04);
}

.menu-table__dish {
  padding: 1rem 1rem 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.menu-table__sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.125rem;
}

.menu-table__price {
  padding: 1rem 0 1rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: right;
  white-space: nowrap;
}

/* === HOW-TO-PLAY PAGE === */
.how-to-play__rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .how-to-play__rules {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-to-play__rule {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.75rem;
}

.how-to-play__rule-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.how-to-play__rule p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* === CONTACTS PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}

.contact-address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-item__value {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-item__link {
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.contact-item__link:hover {
  color: var(--color-gold-soft);
}

.contact-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 480px) {
  .contact-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contact-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-image img {
  border-radius: 2px;
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: cover;
}

.contact-map {
  height: 100%;
  min-height: 420px;
}

.contact-map__iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  border-radius: 2px;
}

/* === PLACEHOLDER / COMING SOON (scaffolded sections) === */
.scaffold-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}

.scaffold-section__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.scaffold-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  opacity: 0.85;
}

.scaffold-section__note {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(201, 164, 92, 0.4);
  letter-spacing: 0.04em;
}

/* =========================================================
   HOMEPAGE — SECTION 1: HERO
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8, 6, 7, 0.85) 0%,
    rgba(8, 6, 7, 0.55) 60%,
    rgba(8, 6, 7, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 5rem) 0 7rem;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hero__divider {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: clamp(1rem, 1.75vw, 1.1875rem);
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 2.75rem;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Animated scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.6) translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}

/* =========================================================
   HOMEPAGE — SECTION 2: BRAND STORY
   ========================================================= */

.brand-story {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-bg-soft);
}

@media (min-width: 768px) {
  .brand-story {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .brand-story {
    padding: 9rem 0;
  }
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .brand-story__grid {
    grid-template-columns: 45fr 55fr;
    gap: 5rem;
    align-items: center;
  }
}

.brand-story__visual {
  overflow: hidden;
}

.brand-story__visual-inner {
  overflow: hidden;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .brand-story__visual-inner {
    max-height: 26rem;
  }
}

@media (min-width: 992px) {
  .brand-story__visual-inner {
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  }
}

.brand-story__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .brand-story__visual-inner img {
    max-height: 620px;
  }
}

.brand-story__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.brand-story__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

.brand-story__feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.brand-story__feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 4.5rem;
  padding: 1.125rem 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  text-align: center;
  transition:
    border-color var(--transition-base),
    background var(--transition-base);
}

.brand-story__feature-card:hover {
  border-color: var(--color-gold);
  background: var(--color-surface-2);
}

.brand-story__feature-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  line-height: 0;
}

.brand-story__feature-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =========================================================
   HOMEPAGE — SECTION 3: POLISH CUISINE CAROUSEL
   ========================================================= */

.cuisine {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .cuisine {
    padding-top: 8rem;
  }
}

@media (min-width: 1200px) {
  .cuisine {
    padding-top: 9rem;
  }
}

.cuisine__header {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.cuisine__header .gold-line {
  margin-inline: auto;
}

.cuisine__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.cuisine__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
}

/* --- Editorial panels --- */
.cuisine__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 560px;
  border-top: 1px solid rgba(201, 164, 92, 0.12);
}

.cuisine__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  border-right: 1px solid rgba(201, 164, 92, 0.12);
}

.cuisine__panel:last-child {
  border-right: none;
}

.cuisine__panel-media {
  position: absolute;
  inset: 0;
}

.cuisine__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuisine__panel:hover .cuisine__panel-media img {
  transform: scale(1.06);
}

.cuisine__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 6, 7, 0.92) 0%,
    rgba(8, 6, 7, 0.45) 55%,
    rgba(8, 6, 7, 0.15) 100%
  );
  transition: background 0.4s ease;
}

.cuisine__panel:hover .cuisine__panel-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 6, 7, 0.97) 0%,
    rgba(8, 6, 7, 0.65) 55%,
    rgba(8, 6, 7, 0.25) 100%
  );
}

.cuisine__panel-body {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cuisine__panel-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.cuisine__panel-name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

.cuisine__panel-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease 0.05s;
}

.cuisine__panel:hover .cuisine__panel-desc {
  max-height: 5rem;
  opacity: 1;
}

.cuisine__panel-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold);
  width: fit-content;
  transform: translateX(-6px);
  transition: transform 0.3s ease;
}

.cuisine__panel:hover .cuisine__panel-arrow {
  transform: translateX(0);
}

/* Mobile: stack */
@media (max-width: 767px) {
  .cuisine__panels {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cuisine__panel {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid rgba(201, 164, 92, 0.12);
  }

  .cuisine__panel:last-child {
    border-bottom: none;
  }

  .cuisine__panel-desc {
    max-height: 5rem;
    opacity: 1;
  }
}

.cuisine__cta {
  text-align: center;
  padding: 3rem 0 6rem;
}

@media (min-width: 768px) {
  .cuisine__cta {
    padding-bottom: 8rem;
  }
}

@media (min-width: 1200px) {
  .cuisine__cta {
    padding-bottom: 9rem;
  }
}

/* =========================================================
   HOMEPAGE — SECTION 4: COCKTAIL BAR
   ========================================================= */

.bar {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .bar {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .bar {
    padding: 9rem 0;
  }
}

.bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .bar__grid {
    grid-template-columns: 60fr 40fr;
    gap: 5rem;
    align-items: center;
  }
}

/* Visual column */
.bar__visual {
  position: relative;
  padding-bottom: 4rem;
}

@media (max-width: 991px) {
  .bar__visual {
    padding-bottom: 2.5rem;
  }
}

.bar__visual-main {
  overflow: hidden;
  border-radius: 2px;
}

.bar__visual-main img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 44rem;
  object-fit: cover;
}

.bar__visual-secondary {
  position: absolute;
  bottom: 0;
  right: -1rem;
  width: 42%;
  overflow: hidden;
  border-radius: 2px;
  border: 3px solid var(--color-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}

@media (max-width: 991px) {
  .bar__visual-secondary {
    right: 0;
    width: 38%;
  }
}

.bar__visual-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating ingredient pills — desktop: over image, alternating left/right */
.bar__pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .bar__pill:nth-child(1) {
    top: 10%;
    left: 1.5rem;
  }
  .bar__pill:nth-child(2) {
    top: 24%;
    right: 1.5rem;
  }
  .bar__pill:nth-child(3) {
    top: 40%;
    left: 1.5rem;
  }
  .bar__pill:nth-child(4) {
    top: 55%;
    right: 1.5rem;
  }
  .bar__pill:nth-child(5) {
    top: 70%;
    left: 1.5rem;
  }
  .bar__pill:nth-child(6) {
    top: 83%;
    right: 1.5rem;
  }
}

.bar__pill {
  position: absolute;
  padding: 0.4rem 0.9rem;
  background: rgba(8, 6, 7, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.bar__pill:nth-child(1) {
  transition-delay: 0s;
}
.bar__pill:nth-child(2) {
  transition-delay: 0.1s;
}
.bar__pill:nth-child(3) {
  transition-delay: 0.2s;
}
.bar__pill:nth-child(4) {
  transition-delay: 0.3s;
}
.bar__pill:nth-child(5) {
  transition-delay: 0.4s;
}
.bar__pill:nth-child(6) {
  transition-delay: 0.5s;
}

/* Mobile: pills become a static inline row below image */
@media (max-width: 991px) {
  .bar__pills {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0;
  }

  .bar__pill {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.bar.is-visible .bar__pill {
  opacity: 1;
  transform: translateY(0);
}

/* Text column */
.bar__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.bar__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.bar__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.bar__feature {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.bar__feature-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  position: relative;
  top: -1px;
}

/* =========================================================
   HOMEPAGE — SECTION 5: CASINO ENTERTAINMENT
   ========================================================= */

.casino {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-bg-soft);
}

@media (min-width: 768px) {
  .casino {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .casino {
    padding: 9rem 0;
  }
}

.casino__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .casino__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.casino__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.casino__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.casino__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.casino__feature {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.casino__feature-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--color-red);
  border-radius: 50%;
  position: relative;
  top: -1px;
}

.casino__note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(207, 198, 184, 0.4);
  max-width: 48ch;
  line-height: 1.6;
}

/* Three-card fan stack */
.casino__cards {
  position: relative;
  height: 24rem;
}

@media (min-width: 992px) {
  .casino__cards {
    height: 34rem;
  }
}

.casino__card {
  position: absolute;
  width: 52%;
  top: 50%;
  left: 50%;
  border-radius: 3px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1),
    box-shadow 0.4s ease;
}

/* card order: 1=left, 2=center(front), 3=right */
.casino__card:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-4deg) translateX(-1.5rem);
  z-index: 1;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.casino__card:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 3;
  box-shadow:
    0 0 40px rgba(201, 164, 92, 0.22),
    0 10px 36px rgba(0, 0, 0, 0.65);
}

.casino__card:nth-child(3) {
  transform: translate(-50%, -50%) rotate(4deg) translateX(1.5rem);
  z-index: 2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

/* Hover: center lifts, flanks spread */
.casino__cards:hover .casino__card:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-7deg) translateX(-3rem);
}

.casino__cards:hover .casino__card:nth-child(2) {
  transform: translate(-50%, -54%) rotate(0deg);
  box-shadow:
    0 0 60px rgba(201, 164, 92, 0.35),
    0 18px 48px rgba(0, 0, 0, 0.75);
}

.casino__cards:hover .casino__card:nth-child(3) {
  transform: translate(-50%, -50%) rotate(7deg) translateX(3rem);
}

.casino__card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.casino__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.casino__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.875rem;
  background: linear-gradient(to top, rgba(8, 6, 7, 0.88) 0%, transparent 100%);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* =========================================================
   HOMEPAGE — SECTION 6: RECEPTION
   ========================================================= */

.reception {
  position: relative;
  overflow: hidden;
  min-height: 36rem;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .reception {
    min-height: 44rem;
    padding: 7rem 0;
  }
}

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

.reception__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.reception__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 7, 0.65) 0%,
    rgba(8, 6, 7, 0.45) 50%,
    rgba(8, 6, 7, 0.7) 100%
  );
}

.reception__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Glassmorphism panel */
.reception__panel {
  max-width: 52rem;
  width: 100%;
  padding: 2.5rem 2rem;
  background: rgba(8, 6, 7, 0.58);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
}

@media (min-width: 768px) {
  .reception__panel {
    padding: 3.5rem 3rem;
  }
}

.reception__panel .gold-line {
  margin-inline: auto;
}

.reception__panel-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.reception__panel-text {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* Icon row */
.reception__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

@media (min-width: 640px) {
  .reception__icons {
    flex-wrap: nowrap;
    gap: 0 3rem;
  }
}

.reception__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 1 1 6rem;
}

.reception__icon-svg {
  color: var(--color-gold);
  display: block;
  line-height: 0;
}

.reception__icon-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =========================================================
   HOMEPAGE — SECTION 7: PRIVATE ROOMS
   ========================================================= */

.private-rooms {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-surface-2);
}

@media (min-width: 768px) {
  .private-rooms {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .private-rooms {
    padding: 9rem 0;
  }
}

.private-rooms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .private-rooms__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.private-rooms__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.private-rooms__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.private-rooms__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.private-rooms__feature {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.private-rooms__feature-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  position: relative;
  top: -1px;
}

/* Three images with gold frames and irregular offsets */
.private-rooms__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.private-rooms__frame {
  border: 1px solid var(--color-gold);
  overflow: hidden;
}

.private-rooms__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image 1: top-left, landscape */
.private-rooms__frame--1 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 16 / 10;
}

/* Image 2: top-right, portrait, shifted down */
.private-rooms__frame--2 {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 3 / 4;
  transform: translateY(2.5rem);
}

/* Image 3: bottom, spanning both columns, centered narrower */
.private-rooms__frame--3 {
  grid-column: 1 / 3;
  grid-row: 2;
  aspect-ratio: 16 / 9;
  max-width: 72%;
  transform: translateY(-1rem);
}

@media (max-width: 991px) {
  .private-rooms__images {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .private-rooms__frame--1,
  .private-rooms__frame--2,
  .private-rooms__frame--3 {
    grid-column: 1;
    grid-row: auto;
    transform: none;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* =========================================================
   HOMEPAGE — SECTION 8: EVENTS
   ========================================================= */

.events {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .events {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .events {
    padding: 9rem 0;
  }
}

.events__header {
  margin-bottom: 3rem;
}

.events__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.events__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 58ch;
}

/* Mobile: horizontal scroll strip */
.events__row-wrap {
  overflow: visible;
}

.events__row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.events__row::-webkit-scrollbar {
  display: none;
}

/* Desktop: 3×2 grid */
@media (min-width: 768px) {
  .events__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
}

/* Individual tile */
.events__tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 20rem;
  cursor: pointer;
  /* Mobile: fixed width for horizontal scroll */
  flex: 0 0 calc(80vw);
  scroll-snap-align: start;
}

@media (min-width: 480px) {
  .events__tile {
    flex: 0 0 calc(55vw);
  }
}

@media (min-width: 768px) {
  .events__tile {
    flex: none; /* grid controls sizing */
    min-height: 22rem;
  }
}

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

.events__tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.events__tile:hover .events__tile-image img {
  transform: scale(1.06);
}

.events__tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 6, 7, 0.88) 0%,
    rgba(8, 6, 7, 0.35) 55%,
    rgba(8, 6, 7, 0.1) 100%
  );
  transition: background 0.3s ease;
}

.events__tile:hover .events__tile-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 6, 7, 0.92) 0%,
    rgba(8, 6, 7, 0.5) 55%,
    rgba(8, 6, 7, 0.18) 100%
  );
}

.events__tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.events__tile-meta {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
}

.events__tile-name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Left side of the body: meta + name stacked */
.events__tile-body > div,
.events__tile-body > span {
  flex: 1;
}

/* Wrapper for the text stack within the tile body */
.events__tile-body {
  flex-direction: column;
  align-items: flex-start;
}

.events__tile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 50%;
  color: var(--color-gold);
  flex-shrink: 0;
  align-self: flex-end;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}

.events__tile-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

/* =========================================================
   HOMEPAGE — SECTION 9: MENU PREVIEW
   ========================================================= */

.menu-preview {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .menu-preview {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .menu-preview {
    padding: 9rem 0;
  }
}

.menu-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .menu-preview__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.menu-preview__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.menu-preview__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.menu-preview__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.menu-preview__feature {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.menu-preview__feature-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  position: relative;
  top: -1px;
}

/* Stacked card visual */
.menu-preview__stack {
  position: relative;
  width: 100%;
  max-width: 22rem;
  height: clamp(22rem, 36vw, 30rem);
  margin-inline: auto;
}

@media (min-width: 992px) {
  .menu-preview__stack {
    margin-inline: 0 auto;
  }
}

.menu-preview__card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 3px;
}

/* card 1: back — offset bottom-right */
.menu-preview__card:nth-child(1) {
  z-index: 1;
  transform: translateX(16px) translateY(16px) rotate(2deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* card 2: middle */
.menu-preview__card:nth-child(2) {
  z-index: 2;
  transform: translateX(8px) translateY(8px) rotate(1deg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

/* card 3: front — in visual foreground */
.menu-preview__card:nth-child(3) {
  z-index: 3;
  transform: none;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.menu-preview__stack:hover .menu-preview__card:nth-child(3) {
  transform: translateY(-10px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--color-border);
}

.menu-preview__card-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu-preview__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-preview__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(8, 6, 7, 0.88) 0%, transparent 100%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* =========================================================
   HOMEPAGE — SECTION 10: GALLERY
   ========================================================= */

.gallery {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-bg-soft);
}

@media (min-width: 768px) {
  .gallery {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .gallery {
    padding: 9rem 0;
  }
}

.gallery__header {
  margin-bottom: 2.5rem;
}

.gallery__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
}

.gallery__lead {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--color-muted);
  line-height: 1.8;
}

/* Filter buttons */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery__filter-btn {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 100px;
  background: transparent;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.gallery__filter-btn:hover {
  color: var(--color-gold-soft);
  border-color: rgba(201, 164, 92, 0.5);
}

.gallery__filter-btn.is-active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 164, 92, 0.08);
}

/* Masonry grid via CSS columns */
.gallery__grid {
  columns: 2;
  column-gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery__grid {
    columns: 3;
  }
}

@media (min-width: 1200px) {
  .gallery__grid {
    columns: 4;
  }
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  display: block;
}

.gallery__item[hidden] {
  display: none;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 7, 0);
  transition: background 0.3s ease;
}

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

.gallery__item:hover::after {
  background: rgba(8, 6, 7, 0.18);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* =========================================================
   HOMEPAGE — SECTION 11: RESERVATION
   ========================================================= */

.reservation {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .reservation {
    padding: 9rem 0;
  }
}

/* Low-opacity texture image */
.reservation__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reservation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}

/* Decorative SVG ring — top-right */
.reservation__decor {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  z-index: 0;
  pointer-events: none;
  color: var(--color-gold);
  opacity: 0.4;
}

@media (min-width: 992px) {
  .reservation__decor {
    width: 40rem;
    height: 40rem;
    top: -10rem;
    right: -10rem;
  }
}

.reservation__decor svg {
  width: 100%;
  height: 100%;
}

/* Content */
.reservation__content-wrap {
  position: relative;
  z-index: 1;
}

.reservation__content {
  max-width: 48ch;
  margin-inline: auto;
}

.reservation__heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.reservation__lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.reservation__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .reservation__cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Larger tap targets on mobile */
.reservation__btn {
  min-height: 4rem;
  width: 100%;
  max-width: 18rem;
}

@media (min-width: 480px) {
  .reservation__btn {
    width: auto;
    max-width: none;
  }
}

/* =========================================================
   HOMEPAGE — SECTION 12: LOCATION & CONTACT
   ========================================================= */

.location {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .location {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .location {
    padding: 9rem 0;
  }
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .location__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* Map / iframe */
.location__map-iframe {
  width: 100%;
  height: 26rem;
  border: none;
  display: block;
  border-radius: 2px;
}

/* Fallback image with gold pin overlay */
.location__map-fallback {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

.location__map-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location__map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--color-red);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.location__map-address {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0.5rem 1.125rem;
  background: rgba(8, 6, 7, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  white-space: nowrap;
}

.location__map-address span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.3;
}

/* Info column */
.location__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

.location__info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-style: normal;
}

.location__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}

.location__info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location__info-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.location__info-value {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.location__info-link {
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.location__info-link:hover {
  color: var(--color-gold-soft);
}

/* =========================================================
   Contact form (.contact-form)
   ========================================================= */

.contact-form-section {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(201, 164, 92, 0.1);
}

.contact-form-wrap {
  max-width: 780px;
}

.contact-form-intro {
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form__row {
  margin-bottom: 1.25rem;
}

.contact-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .contact-form__row--2col {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-form__row .contact-form__field {
  margin-bottom: 0;
}

.contact-form__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.contact-form__req {
  color: var(--color-red);
}

.contact-form__optional {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(207, 198, 184, 0.45);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 2px;
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(207, 198, 184, 0.3);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(201, 164, 92, 0.04);
}

.contact-form__input:user-invalid,
.contact-form__select:user-invalid,
.contact-form__textarea:user-invalid {
  border-color: rgba(231, 43, 65, 0.55);
}

/* Custom select arrow */
.contact-form__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 d='M1 1l5 5 5-5' stroke='%23c9a45c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.contact-form__select option {
  background: var(--color-surface);
  color: var(--color-text);
}

/* Date input dark color scheme */
.contact-form__input--date {
  color-scheme: dark;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.contact-form__note {
  font-size: 0.8125rem;
  color: rgba(207, 198, 184, 0.4);
}

.contact-form__note abbr {
  color: var(--color-red);
  text-decoration: none;
}

/* =========================================================
   Thank you page (.thankyou)
   ========================================================= */

.thankyou {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.thankyou__card {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.thankyou__card .gold-line {
  margin-inline: auto;
}

.thankyou__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.thankyou__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.thankyou__lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 48ch;
}

.thankyou__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(201, 164, 92, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.thankyou__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}

.thankyou__meta-item:last-child {
  border-bottom: none;
}

.thankyou__meta-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.thankyou__meta-value {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.thankyou__urgent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(231, 43, 65, 0.05);
  border: 1px solid rgba(231, 43, 65, 0.15);
  border-radius: 2px;
  width: 100%;
  max-width: 480px;
  margin-top: 0.25rem;
}

.thankyou__urgent-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.thankyou__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.thankyou__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0.5rem;
}

@media (max-width: 480px) {
  .thankyou__actions {
    flex-direction: column;
    width: 100%;
  }

  .thankyou__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Phase 3 — Interior pages (restaurant.php, lounge.php)
   ========================================================= */

/* --- Split section (.int-split) --- */
.int-split {
  padding: var(--space-section) 0;
}

.int-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.int-split__visual img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.int-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.int-split__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.int-split__lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.int-split__body {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
}

.int-split__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

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

  .int-split__visual img {
    max-height: 420px;
  }
}

/* --- Dish section (.dish-section / .dish-card) --- */
.dish-section {
  padding: var(--space-section) 0;
  background: rgba(255, 255, 255, 0.015);
}

.dish-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.dish-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.dish-section__lead {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}

.dish-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.dish-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 164, 92, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.dish-card:hover {
  border-color: rgba(201, 164, 92, 0.35);
  background: rgba(201, 164, 92, 0.04);
}

.dish-card__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 164, 92, 0.22);
  line-height: 1;
}

.dish-card__divider {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}

.dish-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.dish-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.dish-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 164, 92, 0.3);
  padding: 0.25rem 0.625rem;
  align-self: flex-start;
}

.dish-section__cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .dish-section__grid {
    grid-template-columns: 1fr;
  }

  .dish-card {
    padding: 2rem 1.5rem;
  }
}

/* --- Cinematic banner (.cinematic-banner) --- */
.cinematic-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.cinematic-banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cinematic-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cinematic-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 6, 7, 0.88) 40%,
    rgba(8, 6, 7, 0.5) 100%
  );
}

.cinematic-banner__content-wrap {
  position: relative;
  z-index: 1;
}

.cinematic-banner__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cinematic-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.cinematic-banner__text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 640px) {
  .cinematic-banner {
    min-height: 420px;
  }

  .cinematic-banner__overlay {
    background: rgba(8, 6, 7, 0.78);
  }
}

/* --- Page CTA strip (.page-cta) --- */
.page-cta {
  padding: var(--space-section) 0;
  background: rgba(201, 164, 92, 0.04);
  border-top: 1px solid rgba(201, 164, 92, 0.14);
}

.page-cta__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.page-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.page-cta__text {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.page-cta__group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0.5rem;
}

/* --- Cocktail section (.cocktail-section / .cocktail-card) --- */
.cocktail-section {
  padding: var(--space-section) 0;
}

.cocktail-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.cocktail-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.cocktail-section__lead {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}

.cocktail-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cocktail-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 164, 92, 0.1);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.cocktail-card:hover {
  border-color: rgba(201, 164, 92, 0.4);
  background: rgba(201, 164, 92, 0.05);
}

.cocktail-card__type {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.cocktail-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.cocktail-card__ingredients {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.cocktail-card__note {
  font-size: 0.8125rem;
  color: rgba(201, 164, 92, 0.65);
  font-style: italic;
  margin: 0;
}

@media (max-width: 1024px) {
  .cocktail-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cocktail-section__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Section decorative SVG elements
   ========================================================= */

/* Shared base for all __decor elements */
.hero__decor,
.brand-story__decor,
.cuisine__decor,
.bar__decor,
.casino__decor,
.reception__decor,
.private-rooms__decor,
.events__decor,
.menu-preview__decor,
.gallery__decor,
.location__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--color-gold);
}

/* Hero — quarter sunburst, bottom-left */
.hero__decor {
  bottom: -3rem;
  left: -3rem;
  width: 24rem;
  height: 24rem;
  opacity: 0.2;
}

@media (min-width: 992px) {
  .hero__decor {
    width: 32rem;
    height: 32rem;
  }
}

/* Brand-story — sweeping double arc, top-right */
.brand-story__decor {
  top: -5rem;
  right: -5rem;
  width: 28rem;
  height: 28rem;
  opacity: 0.3;
}

@media (min-width: 992px) {
  .brand-story__decor {
    width: 36rem;
    height: 36rem;
  }
}

/* Cuisine — corner frame brackets, top-left */
.cuisine__decor {
  top: 2.5rem;
  left: 2.5rem;
  width: 12rem;
  height: 12rem;
  opacity: 0.28;
}

@media (min-width: 992px) {
  .cuisine__decor {
    width: 16rem;
    height: 16rem;
  }
}

/* Bar — nested diamonds, bottom-right */
.bar__decor {
  bottom: -5rem;
  right: -5rem;
  width: 26rem;
  height: 26rem;
  opacity: 0.3;
}

@media (min-width: 992px) {
  .bar__decor {
    width: 32rem;
    height: 32rem;
  }
}

/* Casino — dot grid, bottom-left */
.casino__decor {
  bottom: -2rem;
  left: -2rem;
  width: 16rem;
  height: 16rem;
  opacity: 0.28;
}

@media (min-width: 992px) {
  .casino__decor {
    width: 20rem;
    height: 20rem;
  }
}

/* Reception — cross with endpoints, bottom-right (inside overflow:hidden) */
.reception__decor {
  bottom: 2.5rem;
  right: 3rem;
  width: 9rem;
  height: 9rem;
  opacity: 0.4;
}

@media (min-width: 992px) {
  .reception__decor {
    width: 11rem;
    height: 11rem;
  }
}

/* Private-rooms — parallel diagonal hatch, top-right */
.private-rooms__decor {
  top: -3rem;
  right: -3rem;
  width: 18rem;
  height: 18rem;
  opacity: 0.22;
}

@media (min-width: 992px) {
  .private-rooms__decor {
    width: 24rem;
    height: 24rem;
  }
}

/* Events — hexagon, bottom-right (inside overflow:hidden) */
.events__decor {
  bottom: 2rem;
  right: 2rem;
  width: 12rem;
  height: 12rem;
  opacity: 0.3;
}

@media (min-width: 992px) {
  .events__decor {
    width: 16rem;
    height: 16rem;
  }
}

/* Menu-preview — stacked chevrons, top-left */
.menu-preview__decor {
  top: 1.5rem;
  left: 0;
  width: 9rem;
  height: 13rem;
  opacity: 0.3;
}

@media (min-width: 992px) {
  .menu-preview__decor {
    width: 12rem;
    height: 18rem;
  }
}

/* Gallery — concentric quarter arcs, bottom-right */
.gallery__decor {
  bottom: -4rem;
  right: -4rem;
  width: 24rem;
  height: 24rem;
  opacity: 0.28;
}

@media (min-width: 992px) {
  .gallery__decor {
    width: 30rem;
    height: 30rem;
  }
}

/* Location — diamond with crosshair, top-left */
.location__decor {
  top: -4rem;
  left: -4rem;
  width: 22rem;
  height: 22rem;
  opacity: 0.28;
}

@media (min-width: 992px) {
  .location__decor {
    width: 28rem;
    height: 28rem;
  }
}

/* All decor SVGs fill their container */
.hero__decor svg,
.brand-story__decor svg,
.cuisine__decor svg,
.bar__decor svg,
.casino__decor svg,
.reception__decor svg,
.private-rooms__decor svg,
.events__decor svg,
.menu-preview__decor svg,
.gallery__decor svg,
.location__decor svg {
  width: 100%;
  height: 100%;
}
