@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --tracking-tight: -0.03em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.14em;

  /* Brand Colors — Vibrant Event Palette */
  --color-ink:      #0d0d12;
  --color-surface:  #faf8f4;
  --color-mid:      #f2ede4;
  --color-rule:     #e0d9ce;
  --color-muted:    #7a7269;
  --color-accent:   #e8472f;   /* Vibrant coral-red — primary accent */
  --color-gold:     #c9973a;   /* Gold — secondary accent */
  --color-violet:   #6b3fa0;   /* Deep violet — third accent */
  --color-dark:     #131218;
  --color-dark-2:   #1d1b26;

  --max-w: 1320px;
  --max-w-text: 720px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-v: clamp(4rem, 9vw, 8rem);

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-v) 0; }
.section--dark { background: var(--color-dark); color: var(--color-surface); }
.section--mid { background: var(--color-mid); }
.section--dark2 { background: var(--color-dark-2); color: var(--color-surface); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-rule);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(13,13,18,0.07); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span { color: var(--color-accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-rule);
  border-radius: 2px;
  background: transparent;
  transition: all 0.15s;
}
.lang-toggle:hover { border-color: var(--color-ink); color: var(--color-ink); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-ink);
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-surface);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--color-surface);
  font-size: 2rem;
  line-height: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: #c93a24; border-color: #c93a24; }
.btn-dark {
  background: var(--color-ink);
  color: var(--color-surface);
  border-color: var(--color-ink);
}
.btn-dark:hover { background: transparent; color: var(--color-ink); }
.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn-ghost:hover { background: var(--color-ink); color: var(--color-surface); }
.btn-ghost-light {
  background: transparent;
  color: var(--color-surface);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn-gold {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
.btn-gold:hover { background: #b07d28; border-color: #b07d28; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1.125rem 2.5rem; font-size: var(--text-base); }

/* ============================================
   EYEBROW / LABEL
   ============================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--color-gold); }
.eyebrow--muted { color: var(--color-muted); }
.eyebrow--light { color: rgba(255,255,255,0.55); }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, var(--text-7xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, var(--text-6xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, var(--text-3xl));
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.lead {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 620px;
}
.lead--light { color: rgba(255,255,255,0.65); }
em.accent { font-style: italic; color: var(--color-accent); }
em.gold { font-style: italic; color: var(--color-gold); }

/* ============================================
   DECORATIVE RULES
   ============================================ */
.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--sp-6);
}
.section-rule::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-rule);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  border: 1px solid var(--color-rule);
  border-radius: 4px;
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--color-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-body { padding: var(--sp-3); }
.card-category {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--sp-3);
  border-top: 1px solid var(--color-rule);
  background: var(--color-mid);
}
.card-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.badge-available { background: #e8f5e9; color: #2e7d32; }
.badge-limited { background: #fff3e0; color: #e65100; }
.badge-custom { background: #ede7f6; color: #5e35b1; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.anim-fade-up { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.anim-fade-in { animation: fadeIn 0.6s ease both; }
.anim-slide-left { animation: slideInLeft 0.65s cubic-bezier(0.16, 1, 0.3, 1) both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.38s; }
.anim-delay-4 { animation-delay: 0.52s; }

/* Scroll-triggered */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--color-rule);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  border-right: 1px solid var(--color-rule);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: var(--sp-3); }
.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-radius: 3px;
  transition: border-color 0.15s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-control::placeholder { color: var(--color-muted); opacity: 0.6; }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7269' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-hint { font-size: var(--text-xs); color: var(--color-muted); margin-top: 0.35rem; }

/* ============================================
   TAGS / FILTERS
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-4);
}
.filter-tag {
  padding: 0.45rem 1rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--color-rule);
  border-radius: 2px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-tag:hover, .filter-tag.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 71, 47, 0.05);
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-rule);
  border-radius: 3px;
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--color-accent); }
.search-bar input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  outline: none;
}
.search-bar button {
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.15s;
}
.search-bar button:hover { background: #c93a24; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--color-accent);
  padding: var(--sp-6) 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  font-weight: 700;
  color: #fff;
  letter-spacing: var(--tracking-tight);
}
.cta-strip p { color: rgba(255,255,255,0.75); font-size: var(--text-base); margin-top: 0.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: var(--color-surface);
  padding: var(--sp-12) 0 var(--sp-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: var(--sp-2); max-width: 300px; }
.footer-col h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: var(--sp-12) 0 var(--sp-8);
  background: var(--color-dark);
  color: var(--color-surface);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,71,47,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-breadcrumb {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-3);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.35); }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.65); }

/* ============================================
   NOTIFICATION / TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-ink);
  color: var(--color-surface);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: var(--text-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.toast.show { transform: translateY(0); }
.toast-success { border-left: 3px solid #4caf50; }
.toast-info { border-left: 3px solid var(--color-accent); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,18,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--color-surface);
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  border-bottom: 1px solid var(--color-rule);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-body { padding: var(--sp-4); }
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-muted);
  padding: 0;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--color-ink); }

/* ============================================
   CART / BOOKING PANEL
   ============================================ */
.cart-panel {
  position: fixed;
  right: 0;
  top: 72px;
  bottom: 0;
  width: 380px;
  background: var(--color-surface);
  border-left: 1px solid var(--color-rule);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--color-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items { flex: 1; overflow-y: auto; padding: var(--sp-3) var(--sp-4); }
.cart-item {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-rule);
  align-items: flex-start;
}
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; font-size: var(--text-sm); }
.cart-item-detail { font-size: var(--text-xs); color: var(--color-muted); margin-top: 0.15rem; }
.cart-item-remove { font-size: var(--text-xs); color: var(--color-accent); cursor: pointer; background: none; border: none; padding: 0; }
.cart-footer {
  padding: var(--sp-4);
  border-top: 1px solid var(--color-rule);
}
.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 0.35rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  margin-left: 0.3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar .stat-item:nth-child(2) { border-right: none; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cart-panel { width: 100%; top: 0; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 0.875rem 1.5rem; font-size: var(--text-sm); }
  .stats-bar { grid-template-columns: 1fr; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--color-rule); }
}
