/* ==================================================================
   Variables
   ================================================================== */
:root {
  /* Color palette - dark urban / city nightlife */
  --color-bg: #05070b; /* deep black */
  --color-bg-elevated: #0b0f16; /* lounge panel */
  --color-bg-soft: #141823; /* sections */
  --color-bg-muted: #1c2230;

  --color-text: #f5f7fb; /* primary text */
  --color-text-soft: #c2c7d6; /* secondary */
  --color-text-muted: #8b92a3;

  --color-primary: #2f7bff; /* electric blue */
  --color-primary-soft: rgba(47, 123, 255, 0.2);
  --color-primary-strong: #4c8dff;

  --color-success: #3bbf7a;
  --color-warning: #f2b84b;
  --color-danger: #ff4b6a;

  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2933;
  --color-gray-900: #111827;

  /* City-night gradients & glows */
  --gradient-hero: radial-gradient(circle at top, #1a2942 0, #05070b 55%, #000000 100%);
  --gradient-card: linear-gradient(145deg, rgba(12, 17, 27, 0.96), rgba(18, 27, 42, 0.98));
  --glow-blue-soft: 0 0 24px rgba(47, 123, 255, 0.35);

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */

  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Spacing scale (px) */
  --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-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-full: 999px;

  /* Shadows - glass / metallic feel */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 18px 55px rgba(0, 0, 0, 0.82);
  --shadow-elevated: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 25px 80px rgba(0, 0, 0, 0.9);

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

  /* Layout */
  --container-max-width: 1120px;
  --header-height: 76px;
}

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

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

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

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

body {
  margin: 0;
}

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

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

/* Global instruction: lists without bullets */
ul {
  list-style: none !important;
}

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

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

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

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

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* ==================================================================
   Base Typography & Layout
   ================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  background: radial-gradient(circle at 0 0, #151a26 0, #05070b 45%, #000000 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

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

h1 {
  font-size: clamp(2.6rem, 3.1vw + 1.6rem, 3.6rem);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(2rem, 2.2vw + 1.2rem, 2.6rem);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.6rem, 1.2vw + 1.1rem, 2rem);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.25rem;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-2);
}

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

p + p {
  margin-top: -0.25rem;
}

strong {
  font-weight: 600;
}

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

code, pre {
  font-family: var(--font-mono);
  font-size: 0.95em;
}

/* Links - subtle underline on hover */
a {
  position: relative;
  transition: color var(--transition-fast);
}

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

a.underline-link,
.prose a {
  text-decoration: none;
}

a.underline-link::after,
.prose a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), var(--color-primary), rgba(255,255,255,0));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

a.underline-link:hover::after,
.prose a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

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

@supports selector(:focus-visible) {
  :focus:not(:focus-visible) {
    outline: none;
  }
}

/* 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:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

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

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

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

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

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

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

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

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

.flex-col {
  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-2 {
  gap: var(--space-2);
}

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

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

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

/* Grid utilities */
.grid {
  display: grid;
}

.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 (selected) */
.mt-0 { margin-top: 0; }
.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-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

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

/* Chip / label utility for hero badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 0 0, rgba(47, 123, 255, 0.2) 0, rgba(7, 9, 14, 0.95) 50%, rgba(7, 9, 14, 0.98) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.badge--primary {
  border-color: rgba(47, 123, 255, 0.8);
  color: var(--color-primary-strong);
}

/* Hero central composition helper */
.hero-center {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-center__inner {
  max-width: 720px;
  margin-inline: auto;
}

.hero-center__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-center__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(5, 7, 11, 0.97) 55%, rgba(0, 0, 0, 1) 100%);
  z-index: -1;
}

/* ==================================================================
   Header & Navigation basics
   ================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.9), rgba(5, 7, 11, 0.86));
  border-bottom: 1px solid var(--color-border-subtle);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 30% 0, rgba(47, 123, 255, 0.9) 0, #05070b 55%);
  box-shadow: var(--glow-blue-soft);
}

.site-brand__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: var(--text-sm);
}

.nav-link {
  position: relative;
  padding-block: 0.25rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 123, 255, 0), var(--color-primary), rgba(47, 123, 255, 0));
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 18px;
}

/* Mobile nav toggle required flex-direction */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at 0 0, rgba(47, 123, 255, 0.22) 0, rgba(7, 10, 17, 0.98) 40%, rgba(5, 7, 11, 1) 100%);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

.site-nav--left,
.site-nav--right {
  display: flex;
  align-items: center;
}

/* Mobile navigation behavior */
@media (max-width: 900px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .site-brand {
    position: static;
    transform: none;
  }

  .site-nav--left,
  .site-nav--right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 50;
  }

  .mobile-nav-panel {
    position: fixed;
    inset: 1;
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: var(--space-8) var(--space-4);
    background: radial-gradient(circle at 0 0, rgba(47, 123, 255, 0.98) 0, #05070b 55%, #000000 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }

  .mobile-nav-panel.is-open {
    display: flex;
  }

  .mobile-nav-panel .nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }
}

/* ==================================================================
   Forms & Inputs
   ================================================================== */
label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  background: rgba(4, 7, 14, 0.96);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.4;
  outline: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

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

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

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: rgba(47, 123, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(47, 123, 255, 0.5), 0 0 0 8px rgba(47, 123, 255, 0.21);
}

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

/* ==================================================================
   Buttons
   ================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-normal), color var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast);
}

.btn--primary {
  background: radial-gradient(circle at 0 0, rgba(92, 157, 255, 1) 0, rgba(47, 123, 255, 1) 40%, #1e4eb6 100%);
  color: #ffffff;
  border-color: rgba(164, 199, 255, 0.9);
  box-shadow: var(--glow-blue-soft), 0 16px 40px rgba(0, 0, 0, 0.8);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(198, 219, 255, 0.5), 0 22px 60px rgba(0, 0, 0, 0.95);
}

.btn--ghost {
  background: rgba(10, 14, 24, 0.9);
  color: var(--color-text-soft);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  background: rgba(18, 26, 42, 1);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--subtle {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-soft);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--subtle:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ==================================================================
   Cards (glass-style)
   ================================================================== */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  color: var(--color-text);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(47, 123, 255, 0.2) 0, transparent 45%);
  opacity: 0.85;
  pointer-events: none;
}

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

.card--muted {
  background: linear-gradient(145deg, rgba(10, 13, 20, 0.98), rgba(18, 24, 36, 0.98));
}

.card--outlined {
  background: rgba(5, 8, 14, 0.9);
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
}

/* FAQ accordion base (for FAQ page) */
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: rgba(7, 11, 19, 0.96);
  padding: var(--space-4);
}

.faq-question {
  font-size: var(--text-lg);
  font-weight: 500;
  cursor: pointer;
}

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

/* ==================================================================
   Tables / Poker-style chips (visual only)
   ================================================================== */
.chip-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at 30% 0, rgba(66, 151, 255, 0.8) 0, #05070b 50%);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #eaf1ff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
}

/* ==================================================================
   Layout helpers for content pages
   ================================================================== */
.section-heading {
  margin-bottom: var(--space-6);
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-heading__title {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
}

.section-heading__subtitle {
  max-width: 640px;
  margin-top: var(--space-2);
  color: var(--color-text-soft);
}

/* Two-column content that collapses on mobile (without left/right hero) */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: var(--space-8);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Gallery preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #05070b;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.94;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Reservation / contact block */
.reservation-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(47, 123, 255, 0.24) 0, rgba(5, 7, 11, 0.98) 40%, #05070b 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-6);
}

/* ==================================================================
   Footer base
   ================================================================== */
.site-footer {
  border-top: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at 100% 0, rgba(47, 123, 255, 0.24) 0, #05070b 55%, #000000 100%);
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  color: var(--color-text-muted);
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
}

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

/* ==================================================================
   Misc helpers
   ================================================================== */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

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

.soft-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-block: var(--space-6);
}

.bg-panel {
  background: linear-gradient(145deg, rgba(8, 11, 18, 0.98), rgba(14, 20, 32, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* End of base.css */

p,
a,
li,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  overflow-wrap: anywhere;
  word-break: normal;
}

.btn,
.btn-outline {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: center;
  line-height: 1.35;
}