/* =========================================================
   Variables
   ========================================================= */
:root {
  /* Color Palette - Dark Luxury Editorial */
  --color-bg: #0B0C10; /* primary background */
  --color-bg-secondary: #1B1C22; /* secondary sections */
  --color-surface: #23252B; /* cards / surfaces */

  --color-text: #F5EFE6; /* primary text (warm ivory) */
  --color-heading: #C8A45A; /* antique gold for headings */
  --color-muted: #C2B8AA; /* subtle supporting text */

  --color-primary: #B45E3C; /* deep copper - main CTA */
  --color-primary-hover: #7A3E2A; /* dark bronze hover */

  --color-success: #2E7D32; /* rich green */
  --color-warning: #F9A825; /* warm amber */
  --color-danger: #C62828;  /* deep red */

  --color-accent-emerald: #1F4D4D; /* muted emerald */
  --color-accent-champagne: #D6C3A5; /* decorative champagne beige */

  --color-border-subtle: rgba(245, 239, 230, 0.08);
  --color-overlay: rgba(0, 0, 0, 0.76);

  /* Typographic Scale - Editorial, Czech-friendly */
  --font-sans: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-sans-alt: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --font-body: var(--font-sans-alt);
  --font-heading: var(--font-sans);

  --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.25rem;  /* 20px */
  --font-size-xl: 1.5rem;   /* 24px */
  --font-size-2xl: 2rem;    /* 32px */
  --font-size-3xl: 2.75rem; /* 44px */
  --font-size-4xl: 3.5rem;  /* 56px hero */

  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing Scale (4px baseline: 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-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-14: 3.5rem;  /* 56px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radii */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows (subtle cinematic depth) */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 24px 80px rgba(0, 0, 0, 0.75);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max-width: 1120px;
  --container-gutter: var(--space-5);

  /* Z-index layers */
  --z-base: 1;
  --z-header: 20;
  --z-overlay: 40;
  --z-modal: 50;
  --z-toast: 60;
}

/* Reduced motion: globally shorten / remove transitions & animations */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0.01ms linear;
    --transition-base: 0.01ms linear;
    --transition-slow: 0.01ms linear;
  }

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

/* =========================================================
   Reset / Normalize
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding-left: 0;
}

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

img {
  height: auto;
}

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

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

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

input,
textarea,
select,
button {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   Base Typography & Layout
   ========================================================= */
body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  background-color: var(--color-bg);
  color: var(--color-text);
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--line-height-tight);
  color: var(--color-heading);
  letter-spacing: 0.03em;
  text-transform: none;
}

h1 {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-3xl));
  margin-bottom: var(--space-3);
}

h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

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

p:last-child {
  margin-bottom: 0;
}

small {
  font-size: var(--font-size-sm);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Links - understated, luxury style */
a {
  position: relative;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

/* Underline only on hover for body links */
a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-champagne));
  transition: width var(--transition-base);
  opacity: 0.9;
}

a:not(.btn):hover::after {
  width: 100%;
}

/* Lists */
ul, ol {
  margin: 0 0 var(--space-4) var(--space-5);
}

/* Blockquotes - editorial style */
blockquote {
  margin: var(--space-6) 0;
  padding-left: var(--space-4);
  border-left: 1px solid rgba(214, 195, 165, 0.4);
  font-style: italic;
  color: var(--color-muted);
}

/* =========================================================
   Accessibility & Focus Styles
   ========================================================= */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent-emerald);
  outline-offset: 3px;
}

/* Screen-reader only content */
.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;
}

/* =========================================================
   Layout Utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

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

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

.section--contrast {
  background-color: var(--color-bg-secondary);
}

/* Flex helpers */
.flex {
  display: flex;
}

.inline-flex {
  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 {
  flex-direction: column;
}

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

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

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

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

/* Text alignment */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Max-width helpers */
/* Spacing utilities (m = margin, p = padding) */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.mt-4 { margin-top: var(--space-4) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }

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

/* =========================================================
   Components - Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  box-shadow: var(--shadow-subtle);
}

.btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn:disabled,
.btn[aria-disabled='true'] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  border-color: rgba(244, 239, 230, 0.26);
  box-shadow: none;
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.btn--light {
  background-color: var(--color-text);
  color: #111;
  box-shadow: var(--shadow-soft);
}

.btn--light:hover {
  background-color: var(--color-accent-champagne);
}

.btn--sm {
  padding: 0.55rem 1.3rem;
  font-size: var(--font-size-xs);
}

.btn--block {
  width: 100%;
}

/* =========================================================
   Components - Form Elements
   ========================================================= */
.label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(15, 16, 22, 0.88);
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(245, 239, 230, 0.45);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: var(--color-accent-emerald);
  box-shadow: 0 0 0 1px rgba(31, 77, 77, 0.9);
  outline: none;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text) 50%),
    linear-gradient(135deg, var(--color-text) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.input--invalid,
.textarea--invalid,
.select--invalid {
  border-color: var(--color-danger);
}

.form-help {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

/* =========================================================
   Components - Card (Menu, Experiences, etc.)
   ========================================================= */
.card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(196, 165, 110, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(31, 77, 77, 0.15), transparent 60%),
              var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(214, 195, 165, 0.14);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.card--soft {
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

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

.card__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.card__title {
  margin-bottom: var(--space-2);
}

.card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

/* =========================================================
   Hero & Imagery Helpers (cinematic look)
   ========================================================= */
.hero-full {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--color-text);
  background-color: #050609;
  overflow: hidden;
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(180, 94, 60, 0.18), transparent 60%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(11, 12, 16, 0.96));
  pointer-events: none;
}

.hero-full__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: calc(var(--z-base) - 1);
}

.hero-full__media img,
.hero-full__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1);
}

.hero-full__content {
  position: relative;
  z-index: var(--z-base);
}

/* =========================================================
   Age Verification Modal (21+)
   ========================================================= */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  z-index: var(--z-modal);
}

.age-gate-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle at top, rgba(180, 94, 60, 0.16), transparent 55%),
              #f5efe6;
  color: #18120c;
  border-radius: 18px;
  padding: var(--space-8) var(--space-7);
  box-shadow: var(--shadow-elevated);
}

.age-gate-modal__heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: var(--line-height-snug);
  color: #3b2b16;
  margin-bottom: var(--space-3);
}

.age-gate-modal__text {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: #4a3b2a;
  margin-bottom: var(--space-6);
}

.age-gate-modal__accent {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6b3a;
  margin-bottom: var(--space-2);
}

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

.age-gate-modal__btn-primary {
  background-color: #18120c;
  color: #f5efe6;
}

.age-gate-modal__btn-primary:hover {
  background-color: #000000;
}

.age-gate-modal__btn-secondary {
  background-color: transparent;
  color: #4a3b2a;
  border-color: rgba(72, 52, 32, 0.32);
}

.age-gate-modal__btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .age-gate-modal {
    padding: var(--space-6) var(--space-5);
  }

  .age-gate-modal__actions {
    flex-direction: column;
  }

  .age-gate-modal__btn-primary,
  .age-gate-modal__btn-secondary {
    width: 100%;
  }
}

/* =========================================================
   Misc Helpers for Editorial Layout
   ========================================================= */
.eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent-champagne), transparent);
  margin-bottom: var(--space-4);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(214, 195, 165, 0.28);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-champagne);
  background-color: rgba(11, 12, 16, 0.7);
}

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

/* Subtle divider line for sections */
.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(214, 195, 165, 0.35),
    transparent
  );
  margin: var(--space-10) 0;
}

/* =========================================================
   End
   ========================================================= */
