:root {
  /* Color Palette - Luxury Dark Poker Restaurant */
  --color-background: #050608; /* near-black, cinematic */
  --color-background-elevated: rgba(10, 12, 16, 0.92);
  --color-surface: #121319;
  --color-surface-soft: #181a22;
  --color-overlay: rgba(5, 6, 8, 0.8);

  --color-text: #f3f1eb;
  --color-text-soft: #c7c2b7;
  --color-text-muted: #8b867a;

  --color-primary: #c99c57; /* antique brass / warm gold */
  --color-primary-soft: rgba(201, 156, 87, 0.14);
  --color-primary-strong: #e5b96a;

  --color-success: #5aa870; /* refined deep green */
  --color-warning: #d39b4a;
  --color-danger: #c7504a;

  --color-gray-50: #f5f4f0;
  --color-gray-100: #e2dfd6;
  --color-gray-200: #c8c2b3;
  --color-gray-300: #a59f90;
  --color-gray-400: #868072;
  --color-gray-500: #6b665b;
  --color-gray-600: #4f4a41;
  --color-gray-700: #38332c;
  --color-gray-800: #232025;
  --color-gray-900: #121016;

  --color-wood: #3b2618; /* dark walnut brown */
  --color-brass: #c89b4f; /* antique brass */
  --color-olive: #283522; /* deep olive green */
  --color-amber: #b9833c; /* warm amber */
  --color-glass-edge: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-mono: 'DM Mono', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  --font-size-xs: 0.75rem;  /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem;   /* 16px */
  --font-size-md: 1.0625rem;/* 17px subtle upscale */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.375rem; /* 22px */
  --font-size-2xl: 1.75rem; /* 28px */
  --font-size-3xl: 2.25rem; /* 36px */
  --font-size-4xl: 3rem;    /* 48px */
  --font-size-display: clamp(2.75rem, 6vw, 4.25rem);

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing Scale (0–96px) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 1.75rem;  /* 28px */
  --space-8: 2rem;     /* 32px */
  --space-9: 2.5rem;   /* 40px */
  --space-10: 3rem;    /* 48px */
  --space-11: 3.5rem;  /* 56px */
  --space-12: 4rem;    /* 64px */
  --space-14: 4.5rem;  /* 72px */
  --space-16: 6rem;    /* 96px */

  /* Radius */
  --radius-none: 0;
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* Shadows & Depth (cinematic, soft) */
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-ambient: 0 40px 90px rgba(0, 0, 0, 0.82);
  --shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.65);
  --shadow-glass: 0 18px 60px rgba(0, 0, 0, 0.75);
  --shadow-focus: 0 0 0 1px rgba(201, 156, 87, 0.8), 0 0 0 10px rgba(201, 156, 87, 0.18);

  /* Transitions & Motion */
  --duration-fast: 120ms;
  --duration-normal: 220ms;
  --duration-slow: 420ms;

  --ease-standard: cubic-bezier(0.32, 0.12, 0.13, 0.9);
  --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);

  --transition-base: all var(--duration-normal) var(--ease-standard);

  /* Layout */
  --container-max-width: 1120px;
  --container-max-width-wide: 1320px;
  --container-padding-x: 1.25rem;

  /* Header Height (for sticky and offsets) */
  --site-header-height: 76px;
}

/* Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0.001ms;
    --duration-normal: 0.001ms;
    --duration-slow: 0.001ms;
    --transition-base: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   Reset & Normalize
   ========================================= */

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  background: none;
  border-radius: 0;
}

button {
  border: none;
  padding: 0;
  background: none;
}

textarea {
  resize: vertical;
}

/* Remove default focus outline; we'll restore with :focus-visible */
:focus {
  outline: none;
}

/* =========================================
   Base Typography & Body
   ========================================= */

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: radial-gradient(circle at top, #18151a 0, #050608 47%, #020305 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(201, 156, 87, 0.28);
  color: var(--color-text);
}

body[data-scroll-locked='true'] {
  overflow: hidden;
}

/* Headings - editorial luxury scale */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-display);
  letter-spacing: 0.03em;
}

h2 {
  font-size: var(--font-size-3xl);
  letter-spacing: 0.02em;
}

h3 {
  font-size: var(--font-size-2xl);
  letter-spacing: 0.015em;
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

p.small,
small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Links - understated luxury */

a {
  color: var(--color-primary-strong);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color var(--duration-normal) var(--ease-standard),
    text-shadow var(--duration-normal) var(--ease-standard),
    opacity var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: #f2d39c;
  text-shadow: 0 0 16px rgba(201, 156, 87, 0.55);
}

a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

/* Horizontal Rules for editorial sections */

hr {
  border: 0;
  height: 1px;
  margin: var(--space-6) 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(201, 156, 87, 0.65) 20%,
    rgba(201, 156, 87, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* =========================================
   Utilities
   ========================================= */

/* Layout Containers */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

.container--wide {
  max-width: var(--container-max-width-wide);
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--tight {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

/* Flex Helpers */

.flex {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs {
  gap: var(--space-2);
}

.gap-sm {
  gap: var(--space-3);
}

.gap-md {
  gap: var(--space-4);
}

.gap-lg {
  gap: var(--space-6);
}

.gap-xl {
  gap: var(--space-8);
}

/* Grid Helpers */

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

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

/* Spacing Utilities (most used) */

.mt-0 { margin-top: 0 !important; }
.mt-xs { margin-top: var(--space-2) !important; }
.mt-sm { margin-top: var(--space-3) !important; }
.mt-md { margin-top: var(--space-4) !important; }
.mt-lg { margin-top: var(--space-6) !important; }
.mt-xl { margin-top: var(--space-8) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-xs { margin-bottom: var(--space-2) !important; }
.mb-sm { margin-bottom: var(--space-3) !important; }
.mb-md { margin-bottom: var(--space-4) !important; }
.mb-lg { margin-bottom: var(--space-6) !important; }
.mb-xl { margin-bottom: var(--space-8) !important; }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.text-muted { color: var(--color-text-muted) !important; }
.text-soft { color: var(--color-text-soft) !important; }

/* Screen Reader Only */

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

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Z-index helpers for layered hero & header */

.z-header { z-index: 40; }
.z-overlay { z-index: 30; }
.z-base { z-index: 1; }

/* =========================================
   Components - Buttons
   ========================================= */

.button,
.btn {
  --btn-bg: var(--color-primary);
  --btn-bg-hover: var(--color-primary-strong);
  --btn-color: #0a0907;
  --btn-color-hover: #050404;
  --btn-border: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--btn-border);
  background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.3) 0, transparent 40%),
    linear-gradient(135deg, var(--btn-bg) 0%, #b07f3e 40%, #845728 100%);
  color: var(--btn-color);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75);
  transition:
    background var(--duration-slow) var(--ease-soft),
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-normal) var(--ease-soft),
    box-shadow var(--duration-normal) var(--ease-soft),
    opacity var(--duration-fast) var(--ease-standard),
    border-color var(--duration-normal) var(--ease-standard);
}

.button:hover,
.btn:hover {
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.35) 0, transparent 36%),
    linear-gradient(130deg, var(--btn-bg-hover) 0%, #f2d39c 42%, #c2904c 100%);
  color: var(--btn-color-hover);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
}

.button:active,
.btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.button:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button--ghost,
.btn--ghost {
  --btn-bg: rgba(12, 13, 19, 0.6);
  --btn-bg-hover: rgba(24, 26, 36, 0.9);
  --btn-color: var(--color-text);
  --btn-color-hover: var(--color-text);
  --btn-border: rgba(201, 156, 87, 0.55);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(4, 4, 4, 0.94) 35%,
      rgba(0, 0, 0, 0.98) 100%
    );
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.86), inset 0 0 0 1px rgba(201, 156, 87, 0.25);
  backdrop-filter: blur(18px);
}

.button--ghost:hover,
.btn--ghost:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.96), 0 0 0 1px rgba(201, 156, 87, 0.4);
}

.button--outline,
.btn--outline {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(201, 156, 87, 0.12);
  --btn-color: var(--color-primary-strong);
  --btn-color-hover: #f2d39c;
  --btn-border: rgba(201, 156, 87, 0.7);

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(0, 0, 0, 0.86) 60%,
    rgba(0, 0, 0, 0.98) 100%
  );
  box-shadow: var(--shadow-subtle);
}

.button--subtle,
.btn--subtle {
  --btn-bg: rgba(24, 24, 32, 0.94);
  --btn-bg-hover: rgba(32, 32, 46, 0.98);
  --btn-color: var(--color-text-soft);
  --btn-color-hover: var(--color-text);
  --btn-border: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-subtle);
}

.button--sm,
.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

.button--lg,
.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 0.78rem;
}

.button--full,
.btn--full {
  width: 100%;
}

.button[disabled],
.btn[disabled],
.button.is-disabled,
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

/* =========================================
   Components - Form Elements
   ========================================= */

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.field-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.input,
.textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05) 0, transparent 40%),
    rgba(8, 9, 14, 0.96);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    box-shadow var(--duration-normal) var(--ease-standard),
    background-color var(--duration-normal) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-muted);
}

.input:focus-visible,
.textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(201, 156, 87, 0.9);
  box-shadow: var(--shadow-focus);
  transform: translateY(-1px);
}

.input[disabled],
.textarea[disabled],
select[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.input--invalid,
.textarea--invalid {
  border-color: rgba(199, 80, 74, 0.8);
}

.input--invalid:focus-visible,
.textarea--invalid:focus-visible {
  box-shadow: 0 0 0 1px rgba(199, 80, 74, 0.8), 0 0 0 8px rgba(199, 80, 74, 0.32);
}

textarea.textarea {
  min-height: 160px;
}

/* =========================================
   Components - Card
   ========================================= */

.card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.07) 0, transparent 60%),
    linear-gradient(145deg, rgba(10, 11, 18, 0.98) 0%, rgba(6, 7, 11, 0.96) 56%, #050608 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 156, 87, 0.16) 0, transparent 45%);
  mix-blend-mode: soft-light;
  opacity: 0.7;
  pointer-events: none;
}

.card--glass {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(7, 7, 10, 0.9) 40%,
      rgba(0, 0, 0, 0.98) 100%
    );
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(22px);
}

.card--outlined {
  background: rgba(10, 11, 17, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 156, 87, 0.5);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85);
}

.card--hoverable {
  transition: transform var(--duration-slow) var(--ease-soft),
    box-shadow var(--duration-slow) var(--ease-soft),
    border-color var(--duration-normal) var(--ease-standard);
}

.card--hoverable:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-ambient);
  border-color: rgba(201, 156, 87, 0.6);
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-meta {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =========================================
   Components - Focus & Accessibility
   ========================================= */

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* High-contrast helper for key CTAs (if needed) */

@media (prefers-contrast: more) {
  .button,
  .btn {
    box-shadow: 0 0 0 2px #000, 0 0 0 4px var(--color-primary-strong);
  }
}

/* =========================================
   Structural Helpers for Header / Hero / Footer
   ========================================= */

.site-main {
  position: relative;
  z-index: 1;
  padding-top: var(--site-header-height);
}

.hero-full {
  min-height: min(100vh, 960px);
  display: flex;
  align-items: stretch;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.45) 0, rgba(0, 0, 0, 0.9) 48%, #000 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.footer-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #15151b 0, #040406 55%, #000 100%);
  color: var(--color-text-soft);
}

.footer-dark a {
  color: var(--color-text-soft);
}

.footer-dark a:hover {
  color: #f2d39c;
}

/* Promotional / Trust Tags */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 156, 87, 0.7);
  color: var(--color-primary-strong);
  background: rgba(6, 6, 10, 0.9);
}

.badge--soft {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--color-text-soft);
}

.badge--success {
  border-color: rgba(90, 168, 112, 0.7);
  color: #b0e2c0;
}

/* =========================================
   Media Queries - Global Adjustments
   ========================================= */

@media (max-width: 768px) {
  :root {
    --container-padding-x: 1rem;
  }

  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  h1 {
    letter-spacing: 0.02em;
  }

  h2 {
    font-size: 1.9rem;
  }

  .card {
    padding: var(--space-5);
  }
}

@media (min-width: 1200px) {
  .section {
    padding-top: var(--space-11);
    padding-bottom: var(--space-11);
  }
}
