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

:root {
  /* Colors */
  --color-bg: #050608; /* deep black */
  --color-bg-elevated: rgba(15, 12, 10, 0.94);
  --color-bg-soft: #121216;
  --color-bg-overlay: rgba(0, 0, 0, 0.7);

  --color-text: #f4ede3; /* soft ivory */
  --color-text-muted: #b4aaa0;
  --color-text-soft: #d9d0c6;

  --color-primary: #b47a3c; /* warm bronze */
  --color-primary-soft: rgba(180, 122, 60, 0.16);
  --color-primary-strong: #e1a058;

  --color-success: #4fb58b;
  --color-warning: #f2b65c;
  --color-danger: #e5625e;

  --color-gray-50: #f7f4ef;
  --color-gray-100: #e3ddd4;
  --color-gray-200: #c9c1b5;
  --color-gray-300: #a79d90;
  --color-gray-400: #857a6d;
  --color-gray-500: #63584b;
  --color-gray-600: #4a4137;
  --color-gray-700: #352e28;
  --color-gray-800: #241e19;
  --color-gray-900: #161210;

  --color-border-subtle: rgba(244, 237, 227, 0.06);
  --color-border-strong: rgba(244, 237, 227, 0.24);

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 2rem;     /* 32px */
  --font-size-4xl: 2.5rem;   /* 40px */
  --font-size-5xl: 3rem;     /* 48px */

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

  /* Spacing scale (0–96px) */
  --space-0: 0;
  --space-1: 0.125rem; /* 2px */
  --space-2: 0.25rem;  /* 4px */
  --space-3: 0.375rem; /* 6px */
  --space-4: 0.5rem;   /* 8px */
  --space-5: 0.625rem; /* 10px */
  --space-6: 0.75rem;  /* 12px */
  --space-8: 1rem;     /* 16px */
  --space-10: 1.25rem; /* 20px */
  --space-12: 1.5rem;  /* 24px */
  --space-16: 2rem;    /* 32px */
  --space-20: 2.5rem;  /* 40px */
  --space-24: 3rem;    /* 48px */
  --space-32: 4rem;    /* 64px */
  --space-40: 5rem;    /* 80px */
  --space-48: 6rem;    /* 96px */

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* Shadows (subtle cinematic glows) */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-soft-bronze: 0 0 60px rgba(180, 122, 60, 0.3);
  --shadow-elevated: 0 26px 80px rgba(0, 0, 0, 0.75);
  --shadow-focus: 0 0 0 1px rgba(244, 237, 227, 0.18),
    0 0 0 5px rgba(180, 122, 60, 0.5);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;

  /* Layout */
  --layout-max-width: 1120px;
  --layout-max-width-wide: 1320px;
  --layout-gutter: var(--space-16);
}

/* Reduced motion adjustments */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-normal: 0ms;
    --transition-slow: 0ms;
  }
}

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

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

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
}

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p {
  margin: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(circle at top left, rgba(180, 122, 60, 0.12) 0, transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(12, 9, 7, 0.9) 0, transparent 70%),
    radial-gradient(circle at 10% 90%, rgba(54, 39, 27, 0.7) 0, transparent 65%);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 60vh;
}

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

h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-16);
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-12);
}

h3 {
  font-size: 1.6rem;
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-10);
}

h4 {
  font-size: 1.3rem;
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-8);
}

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

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color var(--transition-normal),
    text-shadow var(--transition-normal);
}

a:hover {
  color: var(--color-primary-strong);
  text-shadow: 0 0 18px rgba(180, 122, 60, 0.4);
}

a:focus-visible {
  outline: none;
}

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

/* ========================================================================== 
   Accessibility & Focus
   ========================================================================== */

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

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

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

.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}

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

.section {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section--hero {
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
}

/* Flex helpers */
.flex {
  display: 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;
}

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

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

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

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

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

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-12);
}

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

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

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

/* Alignment & 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-soft);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Spacing utilities (margin / padding) */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-4); }
.mt-sm { margin-top: var(--space-8); }
.mt-md { margin-top: var(--space-12); }
.mt-lg { margin-top: var(--space-16); }
.mt-xl { margin-top: var(--space-24); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-4); }
.mb-sm { margin-bottom: var(--space-8); }
.mb-md { margin-bottom: var(--space-12); }
.mb-lg { margin-bottom: var(--space-16); }
.mb-xl { margin-bottom: var(--space-24); }

.pt-sm { padding-top: var(--space-8); }
.pt-md { padding-top: var(--space-12); }
.pt-lg { padding-top: var(--space-16); }
.pb-sm { padding-bottom: var(--space-8); }
.pb-md { padding-bottom: var(--space-12); }
.pb-lg { padding-bottom: var(--space-16); }

/* Width helpers */
.w-full {
  width: 100%;
}

/* Hero-style spotlight background helper */
.surface-spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0, rgba(180, 122, 60, 0.18) 0, transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(16, 11, 7, 0.9) 0, transparent 70%),
    linear-gradient(135deg, rgba(11, 9, 8, 0.98), rgba(14, 12, 11, 0.98));
}

.surface-spotlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0, rgba(244, 237, 227, 0.06) 0, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(180, 122, 60, 0.08) 0, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
}

/* Glass surface helper for floating cards */
.surface-glass {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(244, 237, 227, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

/* Bronze ring helper (for badges, floating elements) */
.ring-bronze {
  position: relative;
}

.ring-bronze::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(180, 122, 60, 0.1),
      rgba(244, 237, 227, 0.02),
      rgba(180, 122, 60, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ========================================================================== 
   Components
   ========================================================================== */

/* Buttons */
.btn {
  --btn-bg: var(--color-primary);
  --btn-bg-hover: var(--color-primary-strong);
  --btn-color: var(--color-bg);
  --btn-shadow: var(--shadow-soft-bronze);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding-inline: 1.6rem;
  padding-block: 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 237, 227, 0.1);
  background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(140deg, var(--btn-bg), #7e5530);
  color: var(--btn-color) !important;
  font-size: var(--font-size-md);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition:
    background var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast),
    color var(--transition-fast);
}

.btn:hover {
  background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(130deg, var(--btn-bg-hover), #986641);
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.8);
}

.btn:focus-visible {
  box-shadow: var(--shadow-focus);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(180, 122, 60, 0.16);
  --btn-color: var(--color-text);
  --btn-shadow: 0 0 0 rgba(0, 0, 0, 0);

  background: radial-gradient(circle at 0 0, rgba(244, 237, 227, 0.08), transparent 45%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(37, 30, 26, 0.7));
  border-color: rgba(244, 237, 227, 0.14);
}

.btn--ghost:hover {
  background: radial-gradient(circle at 0 0, rgba(244, 237, 227, 0.1), transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(44, 35, 29, 0.9));
}

.btn--sm {
  padding-inline: 1.1rem;
  padding-block: 0.45rem;
  font-size: var(--font-size-sm);
}

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

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

/* Form elements */

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

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

.input,
.textarea,
.select {
  width: 100%;
  padding-inline: var(--space-10);
  padding-block: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: rgba(10, 9, 8, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  box-shadow: inset 0 0 0 1px rgba(244, 237, 227, 0.02);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

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

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: rgba(180, 122, 60, 0.7);
  box-shadow: 0 0 0 1px rgba(244, 237, 227, 0.15),
    0 0 0 3px rgba(180, 122, 60, 0.5);
  outline: none;
}

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

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

/* Cards (glass / event-focused) */

.card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 237, 227, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(244, 237, 227, 0.1) 0, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(180, 122, 60, 0.16) 0, transparent 55%);
  opacity: 0.7;
}

.card__content {
  position: relative;
  z-index: 1;
}

.card--subtle {
  background: linear-gradient(135deg, rgba(19, 16, 13, 0.98), rgba(11, 9, 7, 0.96));
  border-color: rgba(244, 237, 227, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.9);
}

.card--badge {
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-16);
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  background:
    radial-gradient(circle at 0 0, rgba(244, 237, 227, 0.12) 0, transparent 50%),
    linear-gradient(145deg, rgba(10, 8, 7, 0.95), rgba(19, 14, 11, 0.98));
  border: 1px solid rgba(244, 237, 227, 0.22);
}

/* Tag / pill */

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding-inline: var(--space-8);
  padding-block: 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 237, 227, 0.2);
  background: rgba(10, 8, 6, 0.9);
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Badges for event formats */

.badge-format {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding-inline: var(--space-8);
  padding-block: 0.25rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(244, 237, 227, 0.18);
  background:
    linear-gradient(120deg, rgba(180, 122, 60, 0.18), rgba(19, 14, 11, 0.9));
  color: var(--color-text);
}

/* Chips for FAQ / info */

.chip {
  display: inline-flex;
  align-items: center;
  padding-inline: 0.7rem;
  padding-block: 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 237, 227, 0.18);
  background: rgba(10, 9, 8, 0.9);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Helper: subtle divider */

.divider {
  border: none;
  border-top: 1px solid rgba(244, 237, 227, 0.12);
  margin-block: var(--space-16);
}

/* ========================================================================== 
   Page-level patterns (generic, re-usable)
   ========================================================================== */

/* Hero layout: large visuals + floating cards */

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-layout__visual {
  position: relative;
  min-height: 260px;
}

.hero-layout__visual-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(244, 237, 227, 0.14);
  background-color: #090807;
}

.hero-layout__visual-glow {
  position: absolute;
  inset: 18%;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 237, 227, 0.2) 0, transparent 55%),
    radial-gradient(circle at 20% 100%, rgba(180, 122, 60, 0.5) 0, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-layout__floating-card {
  position: absolute;
  right: 4%;
  bottom: -10%;
  max-width: 260px;
}

.hero-layout__floating-card-inner {
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg,
      rgba(10, 8, 6, 0.98),
      rgba(37, 25, 17, 0.96));
  border: 1px solid rgba(244, 237, 227, 0.2);
  padding: var(--space-10) var(--space-12);
  box-shadow: var(--shadow-soft-bronze);
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-layout__floating-card {
    position: static;
    margin-top: var(--space-12);
    max-width: none;
  }
}

/* FAQ accordion base (structure only, behavior handled in JS) */

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 237, 227, 0.18);
  background: rgba(10, 8, 7, 0.96);
  padding: var(--space-10) var(--space-12);
}

.faq-item + .faq-item {
  margin-top: var(--space-8);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  cursor: pointer;
}

.faq-item__answer {
  margin-top: var(--space-6);
  color: var(--color-text-soft);
}

/* Contact details card */

.contact-card {
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  background:
    linear-gradient(130deg, rgba(180, 122, 60, 0.16), rgba(10, 8, 7, 0.96));
  border: 1px solid rgba(244, 237, 227, 0.2);
  box-shadow: var(--shadow-soft-bronze);
}

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

.contact-card__value {
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
}

/* Lists for event details */

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0,
      #fff 0,
      rgba(244, 237, 227, 0.5) 30%,
      rgba(180, 122, 60, 0.9) 100%);
  box-shadow: 0 0 12px rgba(180, 122, 60, 0.7);
}

/* Label for disclaimers (e.g., offline entertainment) */

.notice {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  background: rgba(30, 20, 15, 0.96);
  border: 1px solid rgba(244, 237, 227, 0.16);
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.notice--warning {
  border-color: rgba(242, 182, 92, 0.6);
  box-shadow: 0 0 0 1px rgba(242, 182, 92, 0.2);
}

/* Footer base */

.site-footer {
  border-top: 1px solid rgba(244, 237, 227, 0.14);
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.98), rgba(6, 4, 3, 1));
  padding-block: var(--space-16);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.site-footer a:hover {
  color: var(--color-primary-strong);
}
