:root {
  /* Color Palette - Luxurious Dark Theme */
  --color-bg: #070707; /* Deep cinematic black */
  --color-bg-elevated: #111111; /* Elevated panels, sections */
  --color-bg-soft: #181414; /* Soft contrast surfaces */
  --color-bg-card: #15110f; /* Card & glass surfaces */

  --color-text: #f5f1ea; /* Primary body text (warm off-white) */
  --color-text-muted: #a59a8b; /* Muted copy, meta */
  --color-text-soft: #c9bfb0; /* Subtitles, helper text */
  --color-heading: #fff7ec; /* High-contrast headings */

  --color-primary: #d8a95a; /* Antique gold for CTAs */
  --color-primary-soft: rgba(216, 169, 90, 0.16);
  --color-primary-dark: #b48431;

  --color-accent-forest: #203628; /* Dark forest green */
  --color-accent-forest-soft: rgba(32, 54, 40, 0.7);

  --color-success: #42b883;
  --color-warning: #e2b150;
  --color-danger: #e05a4f;

  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);

  --color-neutral-50: #faf7f2;
  --color-neutral-100: #f0e7db;
  --color-neutral-200: #d4c6b2;
  --color-neutral-300: #b5a189;
  --color-neutral-400: #94816a;
  --color-neutral-500: #75624f;
  --color-neutral-600: #5b4b3b;
  --color-neutral-700: #42342a;
  --color-neutral-800: #2c221c;
  --color-neutral-900: #18110d;

  --overlay-strong: rgba(0, 0, 0, 0.78);
  --overlay-soft: rgba(5, 4, 3, 0.6);

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  --font-mono: "JetBrains 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 */
  --font-size-6xl: 3.75rem;  /* 60px */

  --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-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-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows - soft, cinematic */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-soft-up: 0 -12px 40px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.78);
  --shadow-header: 0 18px 60px rgba(0, 0, 0, 0.75);
  --shadow-focus: 0 0 0 1px rgba(216, 169, 90, 0.9), 0 0 0 8px rgba(216, 169, 90, 0.16);

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

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

  /* Z-index scale */
  --z-header: 1000;
  --z-overlay: 1200;
  --z-modal: 1400;
  --z-toast: 1600;
}

/* -------------------------------------------------------------------------- */
/* Reset & Normalize                                                          */
/* -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

/* Prevent text overflow issues */

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Remove list styles by default (we'll style explicitly) */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Buttons - normalize */
button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

/* -------------------------------------------------------------------------- */
/* Base Styles                                                                 */
/* -------------------------------------------------------------------------- */

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-text-size-adjust: 100%;
}

main {
  min-height: 60vh;
}

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

h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  margin-bottom: var(--space-4);
}

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

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  margin-bottom: var(--space-3);
}

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

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

h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-1);
}

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

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

strong {
  font-weight: 600;
}

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

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

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

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

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

a.underline::after,
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 169, 90, 0), rgba(216, 169, 90, 0.9), rgba(216, 169, 90, 0));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

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

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: var(--space-8) 0;
}

::selection {
  background: rgba(216, 169, 90, 0.22);
  color: var(--color-text);
}

/* Form base */

input,
select,
textarea {
  background-color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Accessibility                                                               */
/* -------------------------------------------------------------------------- */

:focus {
  outline: none;
}

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

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

/* Reduced motion */

@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;
  }
}

/* -------------------------------------------------------------------------- */
/* Utilities                                                                   */
/* -------------------------------------------------------------------------- */

/* Container */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
  max-width: var(--container-max-width);
}

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

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

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

/* Layout helpers */

.flex {
  display: flex;
}

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

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

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

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

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

.grid {
  display: grid;
}

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

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

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

/* Alignment & text */

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

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

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

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

/* Spacing utilities (minimal set) */

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

.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

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

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

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

.px-6 {
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* Max-width helpers for editorial storytelling */



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

/* Background helpers */

.bg-elevated {
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.12) 0, transparent 55%), var(--color-bg-elevated);
}

.bg-soft {
  background-color: var(--color-bg-soft);
}

.bg-forest {
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.2) 0, transparent 58%), linear-gradient(135deg, #111612 0, #171712 34%, #203628 100%);
}

/* -------------------------------------------------------------------------- */
/* Components                                                                 */
/* -------------------------------------------------------------------------- */

/* Buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.8rem;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(216, 169, 90, 0.42);
  color: var(--color-heading)!important;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, rgba(32, 54, 40, 0.9) 0, rgba(24, 17, 13, 0.94) 45%, rgba(5, 3, 1, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 22px 60px rgba(0, 0, 0, 0.9);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-base), color var(--transition-base);
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.24), transparent 60%);
  opacity: 0.3;
  mix-blend-mode: screen;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px) translateZ(0);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, rgba(216, 169, 90, 0.9) 0, rgba(151, 113, 48, 0.95) 38%, rgba(32, 54, 40, 0.96) 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.95);
}

.btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Secondary / ghost button for subtle CTAs */

.btn--ghost {
  background: rgba(7, 7, 7, 0.5);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
}

.btn--ghost:hover {
  background: rgba(18, 18, 18, 0.9);
  border-color: rgba(216, 169, 90, 0.7);
}

.btn--light {
  background: rgba(245, 241, 234, 0.96);
  color: #1a120d!important;
  border-color: rgba(245, 241, 234, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

.btn--light:hover {
  background: #fff7ec;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
}

/* Button sizing */

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1rem 2.1rem;
  font-size: 0.8rem;
}

/* Inputs */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__label {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

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

.input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(11, 9, 7, 0.98), rgba(20, 16, 13, 0.98));
  color: var(--color-text);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), transform var(--transition-fast);
}

.input::placeholder,
textarea::placeholder {
  color: rgba(165, 154, 139, 0.7);
}

.input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(216, 169, 90, 0.7), 0 0 0 12px rgba(216, 169, 90, 0.1);
}

.input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--color-danger);
}

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

/* Card */

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04) 0, transparent 55%), linear-gradient(145deg, rgba(26, 19, 15, 0.98) 0, rgba(11, 9, 7, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.card--soft {
  background: linear-gradient(160deg, rgba(16, 13, 11, 0.96), rgba(21, 21, 21, 0.98));
  box-shadow: var(--shadow-soft);
}

.card--accent {
  background: radial-gradient(circle at top left, rgba(216, 169, 90, 0.12) 0, transparent 65%), linear-gradient(145deg, rgba(24, 17, 13, 0.98) 0, rgba(32, 54, 40, 0.98) 100%);
  border-color: rgba(216, 169, 90, 0.42);
}

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

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

.card__subtitle {
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

/* Glassmorphism header shell (for floating navigation) */

.header-glass {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: linear-gradient(to bottom, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.4), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-header);
}

.header-glass__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Announcement / trust bar (top strip) */

.ribbon {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.16) 0, transparent 55%), linear-gradient(90deg, rgba(11, 9, 7, 0.98), rgba(18, 18, 18, 0.98), rgba(11, 9, 7, 0.98));
  border-bottom: 1px solid rgba(216, 169, 90, 0.35);
  color: var(--color-text-soft);
}

/* Hero overlay utility (for cinematic images) */

.hero-overlay {
  position: relative;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.2) 0, transparent 58%), linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.9) 90%);
  pointer-events: none;
}

.hero-overlay > * {
  position: relative;
  z-index: 1;
}

/* Badges / labels for poker & cuisine tags */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(216, 169, 90, 0.6);
  color: var(--color-text-soft);
}

.badge--soft {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(24, 17, 13, 0.85);
}

/* Tagline text helper (for editorial intros) */

.tagline {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-soft);
}

/* Image frame for cinematic photography */

.frame-cinematic {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.95);
}

.frame-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.frame-cinematic:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05);
}

/* Decorative separator used in footer & section intros */

.separator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.separator::before,
.separator::after {
  content: "";
  flex: 1 1 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 169, 90, 0), rgba(216, 169, 90, 0.65), rgba(216, 169, 90, 0));
}

/* Footer shell */

.site-footer {
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.08) 0, transparent 55%), linear-gradient(180deg, #050404 0, #070707 40%, #050404 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Social icons hover */

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-text-soft);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08) 0, transparent 70%);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-base);
}

.social-link:hover {
  color: var(--color-heading);
  border-color: rgba(216, 169, 90, 0.8);
  background: radial-gradient(circle at top, rgba(216, 169, 90, 0.25) 0, transparent 70%);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.78);
}

/* -------------------------------------------------------------------------- */
/* Responsive fine-tuning                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .card {
    padding: var(--space-4);
  }

  .header-glass__inner {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--font-size-md);
  }
}
