/* ==================================================================
   Program Center 365 - Base Styles
   Global base stylesheet for all pages
   Palette: Nighttime charcoal + metallic champagne gold + white
   ================================================================== */

/* ==================================================================
   VARIABLES
   ================================================================== */
:root {
  /* Core Colors */
  --color-background: #0B0B0C;           /* primary site background */
  --color-surface: #161618;              /* surface panels, cards */
  --color-surface-elevated: #1f1f23;     /* elevated cards, overlays */

  --color-text: #FFFFFF;                 /* primary body text */
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-text-soft: rgba(255, 255, 255, 0.56);

  --color-primary: #DFBA6B;              /* champagne gold */
  --color-primary-soft: rgba(223, 186, 107, 0.12);
  --color-primary-strong: #f2cd7b;

  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(223, 186, 107, 0.9);

  --color-success: #52c29d;
  --color-warning: #ffce73;
  --color-danger: #ff6b6b;

  /* Neutral Grays (for subtle dividers, text, UI) */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2933;
  --gray-900: #111827;

  /* Transparency & glassmorphism */
  --glass-background: rgba(13, 13, 15, 0.78);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;

  /* Typography */
  --font-display: "Playfair Display", "Times New Roman", Georgia, "Times", serif; /* headings: elegant serif */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; /* body: geometric sans */

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-md: 1rem;      /* 16px base */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px - hero */
  --font-size-6xl: 3.75rem;  /* 60px - cinematic hero */

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

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

  /* Radii (16–24px softness as requested) */
  --radius-xs: 0.625rem;    /* 10px */
  --radius-sm: 0.875rem;    /* 14px */
  --radius-md: 1rem;        /* 16px */
  --radius-lg: 1.25rem;     /* 20px */
  --radius-xl: 1.5rem;      /* 24px */
  --radius-pill: 999px;

  /* Shadows & elevation */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.75);
  --shadow-gold-glow: 0 0 24px rgba(223, 186, 107, 0.45);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-md: 200ms ease;
  --transition-slow: 320ms ease;
  --transition-bezier-soft: 260ms cubic-bezier(0.19, 1, 0.22, 1);

  /* Layout */
  --container-max-width: 1200px;
  --container-max-width-wide: 1440px;

  /* Focus ring (meets WCAG AAA contrast on dark) */
  --focus-ring-color: rgba(223, 186, 107, 0.95);
  --focus-ring-offset: 2px;
  --focus-ring-width: 2px;
}

/* ==================================================================
   RESET / NORMALIZE
   ================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

textarea {
  resize: vertical;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none !important;
}

/* ==================================================================
   BASE TYPOGRAPHY & BODY
   ================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: clamp(var(--font-size-4xl), 4vw, var(--font-size-6xl));
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(var(--font-size-3xl), 3vw, var(--font-size-5xl));
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
}

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

h4 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

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

strong,
b {
  font-weight: 600;
}

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

/* Links - luxury hover micro-interactions */
a {
  position: relative;
  transition: color var(--transition-md), transform var(--transition-fast);
}

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

a:active {
  transform: translateY(1px);
}

/* ==================================================================
   ACCESSIBILITY & FOCUS STATES
   ================================================================== */
:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

/* Ensure obvious focus on controls */
button:focus-visible,
[role="button"]:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 1px var(--color-background), 0 0 0 3px var(--focus-ring-color);
}

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

/* ==================================================================
   UTILITIES
   ================================================================== */

/* Layout containers */
.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);
}

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

main {
  overflow-x: hidden;
  max-width: 100%;
}

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

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

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

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

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

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

.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 (margin + padding) - minimal set */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-2); }
.mt-sm { margin-top: var(--space-3); }
.mt-md { margin-top: var(--space-4); }
.mt-lg { margin-top: var(--space-6); }
.mt-xl { margin-top: var(--space-8); }

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

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

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

/* 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;
}

/* Frosted glass surface (for hero/event hub, etc.) */
.glass-surface {
  background: var(--glass-background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* Gold text gradient for typographic hero headlines */
.text-gold-gradient {
  background-image: linear-gradient(120deg, #e3c37b 0%, #f7d998 45%, #dfba6b 70%, #f2cd7b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Cinematic letter spacing for hero typography */
.text-hero-tight {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==================================================================
   BASIC COMPONENTS
   ================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color var(--transition-bezier-soft),
              color var(--transition-bezier-soft),
              border-color var(--transition-bezier-soft),
              box-shadow var(--transition-bezier-soft),
              transform var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(120deg, #dfba6b, #f2cd7b);
  color: #130f06;
  box-shadow: var(--shadow-gold-glow);
}

.btn--primary:hover {
  background: linear-gradient(120deg, #f2cd7b, #ffe4a8);
  box-shadow: 0 0 0 1px rgba(19, 15, 6, 0.8), var(--shadow-gold-glow);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 0 0 1px rgba(19, 15, 6, 0.8);
}

.btn--outline {
  background-color: transparent;
  border-color: rgba(223, 186, 107, 0.8);
  color: var(--color-text);
}

.btn--outline:hover {
  background-color: rgba(223, 186, 107, 0.12);
  border-color: var(--color-primary-strong);
  color: var(--color-primary-strong);
}

.btn--ghost {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
}

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

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

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: var(--font-size-md);
}

/* Inputs & form controls */
.input,
.select,
.textarea {
  width: 100%;
  background-color: rgba(14, 14, 16, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  transition: border-color var(--transition-md),
              box-shadow var(--transition-md),
              background-color var(--transition-md);
}

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

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(11, 11, 12, 0.8), 0 0 0 2px rgba(223, 186, 107, 0.85);
  background-color: #111116;
}

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

.label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.field-description {
  margin-top: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

/* Card component (for info blocks, poker/gastro panels, etc.) */
.card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(223, 186, 107, 0.075), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 55%),
              #141417;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.card--subtle {
  background: rgba(20, 20, 23, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card--interactive {
  cursor: pointer;
  transition: transform var(--transition-bezier-soft),
              box-shadow var(--transition-bezier-soft),
              border-color var(--transition-bezier-soft),
              background var(--transition-bezier-soft);
}

.card--interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 186, 107, 0.65);
  box-shadow: var(--shadow-strong);
}

/* Tag / pill component (for statuses like "ÉLŐ PREMIUM STÁTUSZ") */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(223, 186, 107, 0.9);
  color: var(--color-primary-strong);
  background: rgba(223, 186, 107, 0.06);
}

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

/* Micro animation for live status ticker dots, etc. */
.badge--live::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6b6b 0%, #ff0000 45%, rgba(255, 0, 0, 0) 70%);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
  animation: pulse-live 1.4s ease-out infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.8); opacity: 0.9; }
  70% { transform: scale(1.3); opacity: 0.1; }
  100% { transform: scale(0.8); opacity: 0.9; }
}

/* Tables (for "Eseménynaptár", blind structures, etc.) */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table thead {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--color-text-soft);
}

.table th,
.table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table-responsive {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.01);
}

.table tbody tr:hover {
  background-color: rgba(223, 186, 107, 0.06);
}

/* ==================================================================
   NAVBAR / HEADER BASICS (shared across pages)
   ================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: linear-gradient(to bottom, rgba(11, 11, 12, 0.98), rgba(11, 11, 12, 0.92));
  border-bottom: 1px solid rgba(223, 186, 107, 0.4);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr) minmax(0, 1.3fr);
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  min-width: 0;
}

.site-header__inner > * {
  min-width: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.15rem;
  color: var(--color-text-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #dfba6b, #f2cd7b);
  transition: width var(--transition-md);
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary-strong);
}

.site-header__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-3);
}

/* ==================================================================
   HERO BACKGROUND & PARALLAX PLACEHOLDERS
   ================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(80px + var(--space-12)); /* account for fixed header */
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero__background-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 186, 107, 0.17) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 52%),
    linear-gradient(135deg, #050506 0%, #101014 60%, #050506 100%);
}

.hero__grain-overlay {
  position: absolute;
  inset: -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__parallax-orbit {
  position: absolute;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  right: 0;
  bottom: -80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 10%, rgba(223, 186, 107, 0.5), transparent 60%),
    conic-gradient(from 140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 35%, rgba(223, 186, 107, 0.2) 60%, rgba(0, 0, 0, 0.85));
  opacity: 0.45;
  filter: blur(4px);
  transform: translate3d(0, 0, 0);
}

/* Safe area for hero content */
.hero__content {
  position: relative;
  z-index: 1;
}

/* ==================================================================
   MARQUEE / TICKER (365 LIVE belt)
   ================================================================== */

.ticker-belt {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(223, 186, 107, 0.06), rgba(0, 0, 0, 0.2));
  overflow: hidden;
  max-width: 100%;
}

.ticker-belt > .container {
  overflow: hidden;
  max-width: 100%;
}

.ticker-belt::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(90deg, var(--color-background), transparent);
  z-index: 2;
}

.ticker-belt::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 80px;
  background: linear-gradient(270deg, var(--color-background), transparent);
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: var(--space-8);
  padding-block: 0.6rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.ticker-item {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.ticker-item__label {
  color: var(--color-primary-strong);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================================================================
   RESPONSIVE TWEAKS
   ================================================================== */

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: var(--space-3);
  }

  .hero {
    padding-top: calc(70px + var(--space-10));
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    row-gap: var(--space-2);
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-3);
  }

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

  .hero {
    padding-top: calc(64px + var(--space-8));
  }

  .hero__parallax-orbit {
    width: min(280px, 75vw);
    height: min(280px, 75vw);
    bottom: -40px;
    opacity: 0.3;
  }

  .table th,
  .table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .site-nav {
    font-size: 0.7rem;
    gap: var(--space-2);
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }
}
