/* ==================================================================
   Variables
   ================================================================== */
:root {
  /* Colors */
  --color-bg: #fff9f4; /* krémszín háttér, light and warm */
  --color-surface: #ffffff;
  --color-text: #1f2933;
  --color-text-muted: #6b7280;

  /* Pastel casino palette */
  --color-primary: #ff9eb5; /* soft poker-chip pink */
  --color-primary-soft: #ffe2ea;
  --color-primary-strong: #f8668b;

  --color-accent-blue: #a6d8ff;   /* világoskék */
  --color-accent-mint: #b9f5d0;   /* mentazöld */
  --color-accent-lavender: #c8b6ff; /* levendula */
  --color-accent-peach: #ffc6a4;  /* barackszín */

  /* Status colors */
  --color-success: #22c55e;
  --color-warning: #facc15;
  --color-danger: #dc2626;

  /* Neutral grays */
  --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;

  /* Mandatory 21+ bar */
  --color-age-bar-bg: #C1121F;
  --color-age-bar-text: #ffffff;
  --age-bar-height-mobile: 40px;
  --age-bar-height-desktop: 44px;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text',
    'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont,
    'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --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 */

  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --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-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-sm: 0.375rem;   /* 6px */
  --radius-md: 0.75rem;    /* 12px */
  --radius-lg: 1.25rem;    /* 20px – rounded friendly cards */
  --radius-pill: 999px;    /* pill buttons */

  /* Shadows (soft, premium) */
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft-pastel: 0 14px 40px rgba(255, 158, 181, 0.24);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms cubic-bezier(0.19, 1, 0.22, 1);
  --transition-slow: 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 768px) {
  :root {
    --font-size-3xl: 2.25rem; /* 36px */
    --font-size-4xl: 3rem;    /* 48px */
  }
}

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

html {
  -webkit-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;
}

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 {
  border: none;
  padding: 0;
  background: none;
}

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

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

body,
html {
  min-height: 100%;
}

/* Respect reduced motion */
@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;
  }
}

/* ==================================================================
   Base
   ================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background: radial-gradient(circle at top left, #ffe2ea 0, transparent 40%),
              radial-gradient(circle at top right, #c8b6ff 0, transparent 42%),
              radial-gradient(circle at bottom left, #b9f5d0 0, transparent 45%),
              var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 60vh;
}

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: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

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

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

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

strong {
  font-weight: 600;
}

a {
  position: relative;
  transition: color var(--transition-fast),
              opacity var(--transition-fast);
}

a:hover {
  opacity: 0.9;
}

/* Underline style for text links (not buttons) */
a.text-link {
  color: var(--color-primary-strong);
}

a.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    var(--color-accent-peach),
    var(--color-primary),
    var(--color-accent-lavender));
  opacity: 0.7;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

a.text-link:hover::after {
  transform: scaleX(1);
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* ==================================================================
   Mandatory 21+ Fixed Age Bar
   ================================================================== */
.age-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* above header and all content */
  background-color: var(--color-age-bar-bg);
  color: var(--color-age-bar-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--space-3);
  height: var(--age-bar-height-mobile);
  text-align: center;
}

.age-bar__text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: normal;
}

@media (min-width: 640px) {
  .age-bar {
    height: var(--age-bar-height-desktop);
  }

  .age-bar__text {
    font-size: 0.75rem;
  }
}

/* Utility class to offset content below age bar */
.body-with-age-bar {
  padding-top: var(--age-bar-height-mobile);
}

@media (min-width: 640px) {
  .body-with-age-bar {
    padding-top: var(--age-bar-height-desktop);
  }
}

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

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

button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a[href]:focus-visible {
  outline: 2px solid var(--color-accent-lavender);
  outline-offset: 3px;
}

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

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

.section {
  padding-block: var(--space-8);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-12);
  }
}

/* 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 {
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* Alignment & spacing utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

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

.mb-6 {
  margin-bottom: var(--space-6);
}

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

.w-full {
  width: 100%;
}

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

/* Buttons - primary CTA: "Ingyenes ajánlatot kérek" */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.75rem;
  padding-block: 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.btn-primary {
  background-image: linear-gradient(135deg,
    var(--color-primary),
    var(--color-accent-peach),
    var(--color-accent-lavender));
  color: #ffffff;
  box-shadow: var(--shadow-soft-pastel);
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid rgba(148, 163, 184, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

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

.btn-full {
  width: 100%;
}

/* Inputs & form controls (hero CTA fields & contact form) */
.form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.input,
.select,
.textarea {
  width: 100%;
  padding-inline: 0.9rem;
  padding-block: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-gray-400);
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 1px var(--color-accent-blue), 0 12px 30px rgba(148, 163, 184, 0.25);
  background-color: #ffffff;
}

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

.input-error {
  border-color: var(--color-danger);
}

.input-error:focus {
  box-shadow: 0 0 0 1px var(--color-danger), 0 12px 30px rgba(220, 38, 38, 0.18);
}

.form-helper {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

/* Hero CTA 3-field block */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }
}

.hero-cta__field-button {
  flex: 1 1 0;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding-block: 0.85rem;
  padding-inline: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg,
    rgba(255, 158, 181, 0.16),
    rgba(200, 182, 255, 0.12));
  cursor: pointer;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
}

.hero-cta__field-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.hero-cta__field-button:hover {
  border-style: solid;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Card component - sections, testimonials, gallery items */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.card--soft {
  background: linear-gradient(135deg,
    rgba(255, 158, 181, 0.08),
    rgba(166, 216, 255, 0.08));
}

.card-header {
  margin-bottom: var(--space-3);
}

.card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

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

/* Header navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 244, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* When using age bar, header should sit below it */
.site-header--with-age-bar {
  top: var(--age-bar-height-mobile);
}

@media (min-width: 640px) {
  .site-header--with-age-bar {
    top: var(--age-bar-height-desktop);
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding-block: 0.4rem;
  padding-inline: 0.6rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
}

.nav-link--active {
  background: linear-gradient(120deg,
    rgba(255, 158, 181, 0.24),
    rgba(184, 233, 216, 0.24));
  color: var(--color-text);
}

/* Hero section wrapper */
.hero {
  padding-block: var(--space-8);
}

@media (min-width: 768px) {
  .hero {
    padding-block: var(--space-12);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.25);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.hero-title {
  max-width: 24rem;
}

@media (min-width: 768px) {
  .hero-title {
    max-width: 34rem;
  }
}

/* CTA section repetition (middle, above footer) */
.cta-band {
  margin-block: var(--space-8);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  background: radial-gradient(circle at top left, rgba(255, 158, 181, 0.24) 0, transparent 55%),
              radial-gradient(circle at bottom right, rgba(166, 216, 255, 0.24) 0, transparent 55%),
              linear-gradient(135deg, #ffffff, #fff3f7);
  box-shadow: var(--shadow-md);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-band {
    padding-inline: var(--space-8);
  }
}

.cta-band__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}

.cta-band__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* Footer layout & disclaimer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.96);
  padding-block: var(--space-8);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.footer-heading {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-disclaimer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Small tag for compliance/entertainment-only messaging */
.badge-entertainment-only {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background-color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

/* Testimonials / "Vendégeink véleménye" */
.testimonial {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.testimonial-meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Tags for SEO terms (visual only, not keyword stuffing) */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding-inline: 0.75rem;
  padding-block: 0.25rem;
  font-size: var(--font-size-xs);
  background-color: rgba(248, 250, 252, 0.9);
  color: var(--color-text-muted);
}

.tag--pastel {
  background: linear-gradient(120deg,
    rgba(255, 158, 181, 0.24),
    rgba(184, 233, 216, 0.24));
  color: var(--color-text);
}

/* Gallery cards */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(15, 23, 42, 0.6),
    transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  color: #ffffff;
}

.gallery-card__title {
  font-size: var(--font-size-sm);
  font-weight: 500;
}

/* Pills & labels for event types */
.pill {
  display: inline-flex;
  align-items: center;
  padding-inline: 0.75rem;
  padding-block: 0.3rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text-muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Chips motif – can be used behind headings as decorative */
.chips-row {
  display: inline-flex;
  gap: 0.25rem;
}

.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0, transparent 55%),
              currentColor;
  opacity: 0.9;
}

.chip-dot--pink {
  color: var(--color-primary);
}

.chip-dot--mint {
  color: var(--color-accent-mint);
}

.chip-dot--lavender {
  color: var(--color-accent-lavender);
}

/* Badges for "21+" near content blocks */
.badge-21 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-age-bar-bg);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ==================================================================
   Layout helpers specific to this project
   ================================================================== */

/* Sections like "Miért válasszon minket?" */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

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

.feature-item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg,
    rgba(255, 158, 181, 0.4),
    rgba(166, 216, 255, 0.4));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

/* Breadcrumbs / page subtitles */
.breadcrumb {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

/* Legal pages layout */
.legal-page {
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--space-8);
}

.legal-page h2 {
  margin-top: var(--space-6);
}

.legal-page p {
  margin-bottom: var(--space-2);
}
