/* ========================================================================
   Variables
   ======================================================================== */

:root {
  /* Color Palette - Parisian night, warm luxury */
  --color-background: #05060a;           /* Deep night */
  --color-surface: #0b0e15;              /* Main panels */
  --color-surface-elevated: #121623;     /* Elevated cards */
  --color-overlay-glass: rgba(10, 12, 20, 0.82);

  --color-text: #f4eadc;                 /* Warm ivory */
  --color-text-muted: #b1a393;           /* Soft muted ivory */
  --color-text-softer: #82735f;          /* Subtle supporting text */

  --color-primary: #c19b4a;              /* Antique gold */
  --color-primary-soft: rgba(193, 155, 74, 0.18);
  --color-primary-strong: #e0b96e;

  --color-accent-amber: #ffb45a;         /* Candlelight accent */
  --color-accent-burgundy: #6b1f32;      /* Burgundy wine */
  --color-accent-plum: #301527;          /* Black plum */
  --color-accent-navy: #111827;          /* Midnight navy */

  --color-success: #4caf7b;              /* Soft green (e.g. confirmations) */
  --color-warning: #f1b561;              /* Warm warning */
  --color-danger: #e35b62;               /* For form errors only */

  /* Neutral Grays for borders & subtle structure */
  --gray-100: #1a1f2b;
  --gray-200: #242a37;
  --gray-300: #2f3645;
  --gray-400: #505668;
  --gray-500: #707789;
  --gray-600: #8c93a3;
  --gray-700: #a9b0bf;
  --gray-800: #c5ccd8;
  --gray-900: #e2e7f0;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-alt: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Base font sizing (mobile-first, upscale for desktop via media queries) */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-md: 1rem;      /* 16px */
  --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 */

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;

  /* 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-12: 3.5rem;  /* 56px */
  --space-14: 4rem;    /* 64px */
  --space-16: 4.5rem;  /* 72px */
  --space-20: 5.5rem;  /* 88px */
  --space-24: 6rem;    /* 96px */

  /* Radii */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows (soft, cinematic) */
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 12px 28px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-focus: 0 0 0 1px rgba(193, 155, 74, 0.7), 0 0 0 4px rgba(193, 155, 74, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
  --transition-slow: 360ms ease-out;

  /* Layout */
  --container-max-width: 1120px;
  --container-padding-x: 1.25rem;
  --header-height: 4.25rem;
}

@media (min-width: 900px) {
  :root {
    --font-size-md: 1.0625rem; /* ~17px */
    --font-size-lg: 1.1875rem; /* ~19px */
    --font-size-xl: 1.5rem;    /* 24px */
    --font-size-2xl: 2rem;     /* 32px */
    --font-size-3xl: 2.75rem;  /* 44px */
    --font-size-4xl: 3.5rem;   /* 56px */

    --container-padding-x: 1.75rem;
    --header-height: 4.75rem;
  }
}

/* ========================================================================
   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,
dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  padding-left: 1.25rem;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Remove default tap highlight on mobile while keeping focus-visible */

body {
  -webkit-tap-highlight-color: transparent;
}

/* ========================================================================
   Base Styles
   ======================================================================== */

body {
  font-family: var(--font-alt);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: radial-gradient(circle at top, #151827 0, #05060a 42%, #020309 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: calc(100vh - var(--header-height));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
}

h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-snug);
}

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

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

h6 {
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

strong, b {
  font-weight: 600;
}

a {
  color: var(--color-primary-strong);
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color var(--transition-med), text-decoration-color var(--transition-med);
}

a:hover {
  color: var(--color-accent-amber);
  text-decoration: underline;
}

a:focus-visible {
  outline: none;
}

hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin: var(--space-6) 0;
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* ========================================================================
   Accessibility
   ======================================================================== */

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

/* Screen-reader only utility */

.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;
}

/* Respect reduced motion preferences */

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

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

.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);
}

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

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

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

/* Flex helpers */

.flex {
  display: flex;
}

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

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

.flex-row {
  flex-direction: row;
}

.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;
}

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

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

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

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

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

/* Grid helpers */

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Width helpers */

.w-full {
  width: 100%;
}

/* Text utilities */

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

.text-right {
  text-align: right;
}

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

.text-soft {
  color: var(--color-text-softer);
}

.text-gold {
  color: var(--color-primary-strong);
}

.text-ivory {
  color: var(--color-text);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

/* Spacing utilities (margin / padding, only a minimal curated set) */

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.pt-4 { padding-top: var(--space-4); }
.pt-6 { padding-top: var(--space-6); }
.pt-8 { padding-top: var(--space-8); }

.pb-4 { padding-bottom: var(--space-4); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-8 { padding-bottom: var(--space-8); }

.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.py-2 {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

/* Alignment helpers */

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================================
   Components - Shared Base Styles
   ======================================================================== */

/* Header base – glassmorphism */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 40;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.site-header__inner {
  pointer-events: auto;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(193, 155, 74, 0.18);
  background: linear-gradient(120deg, rgba(8, 10, 18, 0.92), rgba(13, 14, 25, 0.94));
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 0 1 auto;
  min-width: 0;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 0 1 auto;
}

.site-header__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__link {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.4rem 0.2rem;
  position: relative;
  white-space: nowrap;
}

.site-header__link::after {
  content: "";
  position: absolute;
  inset-inline: 0.2rem;
  bottom: 0.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 155, 74, 0.9), transparent);
  transform-origin: center;
  transform: scaleX(0);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
}

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

.site-header__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Logo emblem – icon only */

.logo-emblem__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 40% 40% 55% 55%;
  background: radial-gradient(circle at 30% 0%, #f7e3b5 0, #c19b4a 24%, #6b1f32 65%, #05060a 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.85), inset 0 0 0 1px rgba(255, 248, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-emblem__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 36%;
  width: 42%;
  height: 32%;
  border-radius: 40% 40% 55% 55%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(7, 5, 5, 0.1), rgba(0, 0, 0, 0.6));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.75);
}

.logo-emblem__icon::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 10%;
  right: 14%;
  height: 32%;
  border-radius: 50%;
  border-bottom: 2px solid rgba(244, 234, 220, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.8);
}

.logo-emblem__card-corner {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 42%;
  height: 42%;
  border-radius: 18px 0 0 0;
  border-top: 1px solid rgba(255, 248, 235, 0.55);
  border-left: 1px solid rgba(255, 248, 235, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 237, 208, 0));
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-alt);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: background-color var(--transition-med), color var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast);
}

.btn-primary {
  color: #120b06;
  background: radial-gradient(circle at 0 0, #ffe7b7 0, #e0b96e 24%, #c19b4a 90%);
  border-color: rgba(255, 244, 219, 0.8);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: radial-gradient(circle at 0 0, #fff4da 0, #f5d68a 22%, #dbb05e 88%);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(193, 155, 74, 0.35);
  border-color: rgba(255, 248, 235, 0.95);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
}

.btn-ghost {
  color: var(--color-text-muted);
  background: rgba(9, 10, 18, 0.6);
  border-color: rgba(193, 155, 74, 0.5);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(193, 155, 74, 0.18);
  border-color: rgba(224, 185, 110, 1);
  box-shadow: 0 0 24px rgba(193, 155, 74, 0.2);
}

.btn-plain {
  color: var(--color-text-muted);
  padding-inline: 0.2rem;
  border-radius: 999px;
  border-color: transparent;
  background: transparent;
}

.btn-plain:hover {
  color: var(--color-primary-strong);
  text-shadow: 0 0 20px rgba(193, 155, 74, 0.3);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 999px;
}

/* Inputs */

.input,
.textarea,
.select {
  width: 100%;
  font-family: var(--font-alt);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background-color: rgba(10, 12, 21, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med), background-color var(--transition-med);
}

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

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: rgba(193, 155, 74, 0.9);
  box-shadow: 0 0 0 1px rgba(193, 155, 74, 0.7), 0 0 0 6px rgba(193, 155, 74, 0.16);
  background-color: rgba(10, 12, 21, 1);
}

.textarea {
  min-height: 6rem;
  resize: vertical;
}

.input--invalid,
.textarea--invalid {
  border-color: rgba(227, 91, 98, 0.9);
}

.form-label {
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.form-hint {
  margin-top: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-softer);
}

.form-error {
  margin-top: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

/* Card Component - dark bento style */

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(193, 155, 74, 0.08) 0, rgba(17, 23, 40, 0.98) 40%, #05060a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% -8%, rgba(255, 216, 163, 0.23), transparent 55%);
  opacity: 0.55;
}

.card__inner {
  position: relative;
}

.card--tint-burgundy {
  background: radial-gradient(circle at top, rgba(151, 41, 74, 0.28) 0, rgba(15, 8, 12, 0.98) 40%, #050309 100%);
}

.card--tint-navy {
  background: radial-gradient(circle at top, rgba(93, 118, 191, 0.2) 0, rgba(8, 12, 24, 0.98) 40%, #05060a 100%);
}

.card--outline-gold {
  border-color: rgba(193, 155, 74, 0.5);
}

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

/* Hero editorial tags */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 155, 74, 0.45);
  background: rgba(9, 8, 8, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent-amber);
  box-shadow: 0 0 12px rgba(255, 180, 90, 0.9);
}

/* Timeline base (for reservation journey) */

.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(193, 155, 74, 0.1), rgba(193, 155, 74, 0.9), rgba(193, 155, 74, 0.1));
}

.timeline-step {
  position: relative;
  padding-bottom: var(--space-5);
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe6b4 0, #c19b4a 60%, #6b1f32 100%);
  box-shadow: 0 0 0 4px rgba(193, 155, 74, 0.28);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

/* Poker evening chips/cards hints (purely decorative, offline) */

.chip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  background: radial-gradient(circle at 20% 0, #ffe0b1 0, #6b1f32 50%, #05060a 100%);
  border: 1px solid rgba(255, 234, 214, 0.7);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.7);
}

.card-corner-tag {
  position: relative;
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: 0 10px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 0 0, rgba(255, 236, 214, 0.25), rgba(12, 8, 8, 0.9));
}

/* Footer base */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, rgba(107, 31, 50, 0.4) 0, #05060a 50%, #020307 100%);
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
}

.site-footer__title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-footer__note {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-softer);
}

/* Age restriction modal */

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(16, 13, 22, 0.92), rgba(0, 0, 0, 0.96));
  backdrop-filter: blur(14px) saturate(140%);
}

.age-modal__panel {
  position: relative;
  max-width: 30rem;
  width: calc(100% - 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(193, 155, 74, 0.52);
  background: radial-gradient(circle at top, rgba(193, 155, 74, 0.28), rgba(11, 10, 15, 0.99) 40%, #05060a 100%);
  box-shadow: var(--shadow-card);
  padding: var(--space-6) var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.age-modal__header {
  display: flex;
  justify-content: flex-start;
}

.age-modal__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
}

.age-modal__text {
  margin-bottom: 0;
}

.age-modal__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.age-modal__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.age-modal__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-softer);
  margin: 0;
}

@media (min-width: 600px) {
  .age-modal__panel {
    width: 100%;
  }

  .age-modal__actions {
    flex-direction: row;
  }

  .age-modal__btn {
    width: auto;
    flex: 1 1 auto;
  }
}

body.age-modal-lock {
  overflow: hidden;
}

/* ========================================================================
   Responsive Adjustments
   ======================================================================== */

@media (max-width: 767px) {
  .site-header__inner {
    padding-inline: 0.9rem;
    border-radius: 999px;
  }

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

  .site-header__link {
    display: none; /* navigation likely toggled by JS in mobile modules */
  }
}

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

/* ========================================================================
   Helper Classes for Thematic Styling
   ======================================================================== */

.bg-charcoal {
  background-color: #05060a;
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-burgundy {
  background: radial-gradient(circle at top, #7a2136 0, #300710 55%, #050308 100%);
}

.bg-navy {
  background: radial-gradient(circle at top, #202b50 0, #0a1020 55%, #05060a 100%);
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(193, 155, 74, 0.12);
  border: 1px solid rgba(193, 155, 74, 0.7);
  color: var(--color-primary-strong);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-softer);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-subtle {
  box-shadow: var(--shadow-subtle);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

/* ========================================================================
   End base.css
   ======================================================================== */
