:root {
  /* Color System - neutral, elegant, fashion-forward */
  --color-bg: #f8f5f2;
  --color-surface: #ffffff;
  --color-surface-muted: #f1ede7;
  --color-text: #191716;
  --color-text-muted: #6f6861;
  --color-border-subtle: #e1d9cf;
  --color-border-strong: #b3a89a;

  --color-primary: #c9a27d;      /* warm beige-gold accent */
  --color-primary-soft: #e4cbb0;
  --color-primary-strong: #a88054;

  --color-success: #3a7e5a;
  --color-warning: #c8871a;
  --color-danger: #b53e3e;

  --gray-50: #faf7f3;
  --gray-100: #f1ede7;
  --gray-200: #e1d9cf;
  --gray-300: #cfc3b7;
  --gray-400: #b3a89a;
  --gray-500: #938776;
  --gray-600: #6f6861;
  --gray-700: #4c4641;
  --gray-800: #2f2a27;
  --gray-900: #191716;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  --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: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --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.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-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

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

  /* Shadows – subtle, editorial */
  --shadow-xs: 0 1px 2px rgba(15, 14, 13, 0.04);
  --shadow-sm: 0 8px 20px rgba(15, 14, 13, 0.06);
  --shadow-md: 0 15px 35px rgba(15, 14, 13, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 14, 13, 0.18);

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

  /* Layout */
  --container-max-width: 1120px;
  --container-padding-x: 1.25rem;

  /* Z-index scale */
  --z-header: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-toast: 70;
}

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

  *, *::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,
body {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
}

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

img {
  height: auto;
}

picture {
  display: block;
}

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

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

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

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

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"],
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

/*
  BASE STYLES
-------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

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

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

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

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

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

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

h6 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

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

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

strong,
b {
  font-weight: 600;
}

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

code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
}

a {
  position: relative;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-normal);
}

/* Underline only on hover for editorial feel */
a:hover {
  color: var(--color-primary-strong);
}

a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

hr {
  border: 0;
  border-top: 1px solid var(--gray-200);
  margin: var(--space-6) 0;
}

::selection {
  background: rgba(201, 162, 125, 0.18);
  color: var(--color-text);
}

/*
  ACCESSIBILITY / FOCUS
-------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--color-primary-strong);
  outline-offset: 3px;
}

/* Remove focus styles when not keyboard navigating (for browsers that support it) */
: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(--container-padding-x);
  padding-right: var(--container-padding-x);
}

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

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

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

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

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

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

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

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

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

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

/* Alignment / text helpers */
.text-center {
  text-align: center;
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

/* Spacing utilities – minimal curated set */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }

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

.py-6 {
  padding-top: var(--space-6) !important;
  padding-bottom: var(--space-6) !important;
}

.py-8 {
  padding-top: var(--space-8) !important;
  padding-bottom: var(--space-8) !important;
}

.px-4 {
  padding-left: var(--space-4) !important;
  padding-right: var(--space-4) !important;
}

.hide-on-mobile {
  display: block;
}

@media (max-width: 640px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/*
  BASIC COMPONENTS
-------------------------------------------------- */
/* Buttons – primary CTA for hero and key sections */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: var(--color-text);
  color: #ffffff;
  transition:
    background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

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

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

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

.btn--primary {
  background-color: var(--color-primary);
  color: #171413;
}

.btn--primary:hover {
  background-color: var(--color-primary-strong);
  color: #fdfaf7;
}

.btn--outline {
  background-color: transparent;
  border-color: var(--gray-400);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-primary-strong);
  background-color: rgba(201, 162, 125, 0.08);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  padding-inline: 0;
  border-radius: 0;
  border: none;
}

.btn--ghost:hover {
  background-color: transparent;
  color: var(--color-primary-strong);
}

/* Inputs – forms, search, hírlevél */
.input,
textarea,
select {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 0.7rem 0.9rem;
  font-size: var(--font-size-sm);
  background-color: #fff;
  color: var(--color-text);
  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);
}

.input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--color-primary-strong);
  box-shadow: 0 0 0 1px rgba(201, 162, 125, 0.25);
}

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

.input--ghost {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
}

.input--ghost:focus-visible {
  border-bottom-color: var(--color-primary-strong);
  box-shadow: none;
}

/* Card – used for outfit sets, trend highlights, blog teasers */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-xs);
  padding: var(--space-5);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 125, 0.55);
}

.card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card__title {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

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

/* Hero-specific utility (multi-page can reuse) */
.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.hero--overlay {
  position: relative;
  color: #ffffff;
}

.hero--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 8, 7, 0.78), rgba(10, 8, 7, 0.35));
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 640px;
}

.hero__kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--font-size-md);
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-6);
}

/* Tag / pill – for divat 2026, szezon, kategóriák */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  background-color: rgba(255, 255, 255, 0.8);
}

.tag--primary {
  border-color: rgba(201, 162, 125, 0.4);
  background-color: rgba(201, 162, 125, 0.12);
  color: var(--color-primary-strong);
}

/* Badges for új, népszerű outfit ötletek stb. */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge--success {
  background-color: rgba(58, 126, 90, 0.09);
  color: #22563c;
}

.badge--warning {
  background-color: rgba(200, 135, 26, 0.09);
  color: #7a5720;
}

.badge--danger {
  background-color: rgba(181, 62, 62, 0.09);
  color: #7d2929;
}

/*
  FORMS: NEWSLETTER, CONTACT
-------------------------------------------------- */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.form-row--inline {
  align-items: center;
}

.form-field {
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-hint {
  margin-top: 0.3rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

/*
  NAV / HEADER BASICS (lightweight, reusable)
-------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(18px);
  background-color: rgba(248, 245, 242, 0.88);
  border-bottom: 1px solid rgba(225, 217, 207, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary-strong);
  transition: width var(--transition-normal);
}

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

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__toggle {
  display: none;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

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

/*
  FOOTER BASICS
-------------------------------------------------- */
.site-footer {
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--gray-200);
  background-color: #f5f0ea;
}

.site-footer__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

/*
  MEDIA ASPECT RATIOS – for consistent fashion imagery
-------------------------------------------------- */
.aspect-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aspect-ratio::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 133%; /* default 3:4 portrait for outfits */
}

.aspect-ratio > img,
.aspect-ratio > picture,
.aspect-ratio > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-ratio--landscape::before {
  padding-bottom: 66.6667%; /* 3:2 for editorial spreads */
}

.aspect-ratio--square::before {
  padding-bottom: 100%;
}

/*
  HELPER FOR OVERLAY TEXT ON IMAGES
-------------------------------------------------- */
.overlay-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background-color: rgba(8, 6, 5, 0.75);
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/*
  GENERAL LAYOUT RHYTHM
-------------------------------------------------- */
.page-intro {
  max-width: 680px;
  margin-bottom: var(--space-8);
}

.page-intro p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-3);
}

.chip {
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  font-size: var(--font-size-xs);
  background-color: rgba(255, 255, 255, 0.9);
}

.chip--active {
  border-color: rgba(201, 162, 125, 0.7);
  background-color: rgba(201, 162, 125, 0.12);
  color: var(--color-primary-strong);
}

/*
  TABLES (for color combination guides, wardrobe lists)
-------------------------------------------------- */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table th,
.table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

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

.table--striped tbody tr:nth-child(odd) {
  background-color: rgba(241, 237, 231, 0.55);
}

/*
  STATUS / ALERTS – for notices, newsletter success, tip boxes
-------------------------------------------------- */
.alert {
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-size: var(--font-size-sm);
  border: 1px solid transparent;
}

.alert--success {
  background-color: rgba(58, 126, 90, 0.06);
  border-color: rgba(58, 126, 90, 0.25);
  color: #22563c;
}

.alert--warning {
  background-color: rgba(200, 135, 26, 0.05);
  border-color: rgba(200, 135, 26, 0.25);
  color: #7a5720;
}

.alert--danger {
  background-color: rgba(181, 62, 62, 0.05);
  border-color: rgba(181, 62, 62, 0.25);
  color: #7d2929;
}

/*
  RESPONSIVE TWEAKS
-------------------------------------------------- */
@media (max-width: 640px) {
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-10);
  }

  .site-header__inner {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
