/* ============================================
   WASATCH SPARROW MAHJONG — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,0..100;1,9..144,300..900,0..100&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette — drawn from the Wasatch Sparrow logo */
  --cream: #F5EDDE;
  --cream-warm: #EBDFC7;
  --cream-light: #FAF6EC;
  --cream-deep: #E2D3B6;

  --navy: #1A3651;
  --navy-deep: #0F2540;
  --navy-soft: #2C4866;
  --navy-mist: #466B8E;

  --gold: #C5A572;
  --gold-deep: #A18653;
  --gold-light: #DEC394;
  --gold-pale: #ECDCB8;

  --terracotta: #B5563D;
  --terracotta-soft: #C97759;

  --ink: #251F18;
  --ink-soft: #4A4239;
  --ink-muted: #6E6452;

  --rule: rgba(37, 31, 24, 0.12);
  --rule-strong: rgba(37, 31, 24, 0.22);
  --rule-light: rgba(245, 237, 222, 0.18);

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --body: 'Manrope', -apple-system, system-ui, sans-serif;

  /* Spacing scale */
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --content-max: 1280px;
  --reading-max: 720px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Paper grain texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.13 0 0 0 0 0.10 0 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Type scale ── */
.eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--navy-deep);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

p { font-size: 1.05rem; line-height: 1.75; }
p.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ── Layout containers ── */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }
.section-pad { padding: var(--section-y) 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 237, 222, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.nav-brand-tag {
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--navy-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy-deep);
  color: var(--cream-light) !important;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: all 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--terracotta);
  color: var(--cream-light) !important;
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--navy-deep);
  color: var(--cream-light);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(15, 37, 64, 0.4);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--cream-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-ghost:hover {
  background: var(--navy-deep);
  color: var(--cream-light);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.25s;
  font-size: 1.1em;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.18) 0%, transparent 65%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}
.hero p.lede {
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s both;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  animation: fadeIn 1.2s 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; order: -1; }
}

/* ============================================
   PAGE HEADERS (interior pages)
   ============================================ */
.page-header {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}
.page-header .eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.page-header h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.page-header p.lede {
  max-width: 640px;
  margin: 0 auto;
}
.page-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 1.5px;
  background: var(--gold);
  margin: 2.5rem auto 0;
}

/* ============================================
   SECTION HEADERS / GRIDS
   ============================================ */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 600px; }
.section-head p.lede { max-width: 380px; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) {
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--cream-light);
  border-radius: 14px;
  border: 1px solid var(--rule);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(15, 37, 64, 0.15);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}
.feature-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================
   CLASS SCHEDULE CARDS
   ============================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

.class-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.class-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(15, 37, 64, 0.18);
}
.class-date {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding-right: 1.75rem;
  min-width: 90px;
}
.class-date-month {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.class-date-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.class-date-day {
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.class-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--navy-deep);
}
.class-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 13.5px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.class-meta span { display: flex; align-items: center; gap: 0.4rem; }
.spots-pill {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold-deep);
  letter-spacing: 0.03em;
}
.spots-pill.low {
  background: rgba(181, 86, 61, 0.15);
  color: var(--terracotta);
}
.class-card-action .btn {
  padding: 0.7rem 1.4rem;
  font-size: 13.5px;
}

@media (max-width: 600px) {
  .class-card { grid-template-columns: auto 1fr; }
  .class-card-action { grid-column: 1 / -1; justify-self: stretch; }
  .class-card-action .btn { width: 100%; justify-content: center; }
}

/* ============================================
   PRODUCT GRID (Shop)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-image {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
}
.product-image-shirt { background: linear-gradient(180deg, #E8DCC2 0%, #D8C8A8 100%); }
.product-image-hoodie { background: linear-gradient(180deg, #2C4866 0%, #1A3651 100%); }
.product-image-cup { background: linear-gradient(180deg, #DEC394 0%, #C5A572 100%); }
.product-image-tile-set { background: linear-gradient(180deg, #F5EDDE 0%, #E2D3B6 100%); }
.product-image-tote { background: linear-gradient(180deg, #EBDFC7 0%, #D8C8A8 100%); }
.product-image-cap { background: linear-gradient(180deg, #1A3651 0%, #0F2540 100%); }

.product-image-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(245, 237, 222, 0.92);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 4px;
}

.product-image svg {
  width: 60%;
  height: 60%;
  opacity: 0.9;
}

.product-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.product-price {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.coming-soon-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 5px 10px;
  border-radius: 4px;
}

/* ============================================
   SPLIT / EDITORIAL SECTIONS
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream-deep) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-image::after {
  content: 'PORTRAIT';
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(245, 237, 222, 0.92);
  padding: 5px 11px;
  border-radius: 4px;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.split-content p:last-of-type { margin-bottom: 2rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ============================================
   DARK SECTIONS
   ============================================ */
.dark-section {
  background: var(--navy-deep);
  color: var(--cream-light);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.dark-section h1, .dark-section h2, .dark-section h3 { color: var(--cream-light); }
.dark-section h1 em, .dark-section h2 em { color: var(--gold-light); }
.dark-section p { color: rgba(245, 237, 222, 0.8); }
.dark-section .eyebrow { color: var(--gold-light); }
.dark-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.cta-band {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.cta-band h2 { margin-bottom: 1.25rem; }
.cta-band p { max-width: 540px; margin: 0 auto 2rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.faq-a { color: var(--ink-soft); line-height: 1.7; }

/* ============================================
   FORMS
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--body);
  font-size: 15px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule-strong);
  background: var(--cream-light);
  border-radius: 6px;
  color: var(--ink);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.18);
}
.form-group textarea { min-height: 140px; resize: vertical; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--cream-light);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-brand-name { color: var(--cream-light); font-size: 1.3rem; }
.footer-brand .nav-brand-tag { color: var(--gold-light); }
.footer-brand p {
  color: rgba(245, 237, 222, 0.65);
  font-size: 14px;
  margin-top: 1.25rem;
  max-width: 320px;
  line-height: 1.65;
}
.footer-col-title {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: rgba(245, 237, 222, 0.8);
  font-size: 14px;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid var(--rule-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(245, 237, 222, 0.55);
  font-size: 13px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ORNAMENTS / DIVIDERS
   ============================================ */
.tile-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 3rem auto;
  max-width: 280px;
}
.tile-divider::before,
.tile-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.tile-divider svg {
  width: 36px;
  height: 36px;
  opacity: 0.5;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.5rem 0;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding: 0 1rem;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.stat-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; border: none; }
  .stat { border-right: none; }
}

/* ============================================
   MERCH PREVIEW (home)
   ============================================ */
.merch-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .merch-preview-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2.5rem; }
