/* ============================================================
   MERIDIAN — Premium Technical Running Apparel
   Design System
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-elev: #131313;
  --surface: #181818;
  --surface-2: #1F1F1F;
  --text: #F5F5F4;
  --text-soft: #C4C4C2;
  --text-muted: #777771;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #6B7A57;        /* muted oakwood green */
  --accent-2: #B9A88A;      /* warm sand */
  --danger: #C7674F;
  --radius-sm: 4px;
  --radius-md: 8px;
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', system-ui, sans-serif !important;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  cursor: auto !important;
}

::selection { background: var(--accent); color: var(--text); }

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

img { display: block; max-width: 100%; }

/* Display typeface (subtle premium feel) */
.font-display {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: 'tnum';
}

/* Eyebrow micro-label */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Headings */
h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 500; margin: 0; }
.h-display {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--easing);
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
/* Target both .nav-link class and WP menu <li a> */
.nav-link,
.nav-links li a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--easing);
  display: inline-block;
}
.nav-link::after,
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--easing);
}
.nav-link:hover,
.nav-links li a:hover { color: var(--text); }
.nav-link:hover::after,
.nav-links li a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active,
.nav-links .current-menu-item > a { color: var(--text); }
.nav-link.active::after,
.nav-links .current-menu-item > a::after { transform: scaleX(1); }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.icon-btn {
  background: none; border: none; color: var(--text-soft); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px; transition: color 0.25s var(--easing);
  position: relative;
}
.icon-btn:hover { color: var(--text); }
.icon-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: var(--text);
  font-size: 10px; font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-badge.hidden { display: none; }

.hamburger { display: none; }

/* Mobile nav */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--easing);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 28px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mobile-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
@media (max-width: 700px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  transition: all 0.3s var(--easing);
  font-weight: 500;
}
.btn:hover {
  background: transparent;
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
}
.btn-link {
  background: none; border: none; color: var(--text);
  padding: 6px 0; cursor: pointer;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  transition: opacity 0.25s var(--easing);
}
.btn-link:hover { opacity: 0.6; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  display: block;
  position: relative;
  background: transparent;
  cursor: pointer;
}
.product-card .img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--easing), opacity 0.4s var(--easing);
}
.product-card .img-alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--easing);
}
.product-card:hover img:first-of-type { transform: scale(1.04); }
.product-card:hover .img-alt { opacity: 1; }

.product-card .wishlist-btn {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--easing);
  z-index: 2;
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.product-card .wishlist-btn.active { color: var(--accent-2); opacity: 1; }

.product-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--text); color: var(--bg);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
}
.product-card .tag.muted { background: rgba(10,10,10,0.6); color: var(--text); backdrop-filter: blur(8px); }

.product-meta {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.product-meta .title {
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.product-meta .price {
  font-size: 14px;
  color: var(--text-soft);
  white-space: nowrap;
}
.product-meta .sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
}

/* ============================================================
   FILTERS
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-group { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.filter-btn {
  background: none; border: none; color: var(--text-soft); cursor: pointer;
  padding: 8px 14px; border: 1px solid var(--border);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s var(--easing);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

select.sort {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 8px 32px 8px 14px; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23f5f5f4' d='M5 6 0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 460px; max-width: 100%; height: 100vh;
  background: var(--bg-elev);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.5s var(--easing);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--easing);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img { width: 80px; height: 100px; object-fit: cover; background: var(--surface); }
.cart-item .ci-title { font-size: 13px; margin-bottom: 4px; line-height: 1.4; }
.cart-item .ci-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.cart-item .ci-price { font-size: 13px; color: var(--text-soft); }
.cart-item .qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--border-strong);
  margin-top: 8px;
}
.qty button {
  background: none; border: none; color: var(--text);
  width: 28px; height: 28px; cursor: pointer; font-size: 14px;
}
.qty span { font-size: 12px; padding: 0 12px; }

.ci-remove {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0; margin-top: 8px;
  text-decoration: underline;
}
.ci-remove:hover { color: var(--text); }

.cart-footer { padding: 24px 28px; border-top: 1px solid var(--border); }
.cart-totals { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 13px; }
.cart-totals .lab { color: var(--text-muted); }
.cart-empty { text-align: center; padding: 80px 28px; color: var(--text-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero h1 { max-width: 14ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px;
  color: var(--text-soft); margin-bottom: 10px;
  transition: color 0.25s var(--easing);
}
.footer-col a:hover { color: var(--text); }
.footer-brand .logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 280px;
}

.newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  padding: 10px 0;
  width: 100%;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.newsletter input::placeholder { color: var(--text-muted); }
.newsletter button {
  margin-top: 14px;
  background: none; border: none; color: var(--text);
  border-bottom: 1px solid var(--text);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; padding: 4px 0;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--text); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 1s var(--easing) both; }
.rise-d1 { animation: rise 1s var(--easing) 0.1s both; }
.rise-d2 { animation: rise 1s var(--easing) 0.2s both; }
.rise-d3 { animation: rise 1s var(--easing) 0.3s both; }
.rise-d4 { animation: rise 1s var(--easing) 0.4s both; }

/* On-scroll reveal helper (toggled in JS) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 100px;
  padding: 0 32px 80px;
}
.pdp-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 16px; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 12px; }
.pdp-thumbs img {
  width: 80px; aspect-ratio: 4/5; object-fit: cover;
  background: var(--surface);
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid var(--border);
  transition: opacity 0.3s var(--easing), border-color 0.3s var(--easing);
}
.pdp-thumbs img:hover, .pdp-thumbs img.active {
  opacity: 1; border-color: var(--text);
}
.pdp-main img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--surface);
}
.pdp-info h1 { font-size: 32px; margin-bottom: 12px; }
.pdp-info .price { font-size: 18px; color: var(--text-soft); margin-bottom: 24px; }
.pdp-info .desc { color: var(--text-soft); line-height: 1.7; font-size: 14px; margin-bottom: 32px; }

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.size-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s var(--easing);
}
.size-btn:hover { border-color: var(--text); color: var(--text); }
.size-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.specs { border-top: 1px solid var(--border); margin-top: 40px; }
.spec-row {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}
.spec-row summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text);
}
.spec-row summary::-webkit-details-marker { display: none; }
.spec-row p { color: var(--text-soft); font-size: 14px; line-height: 1.7; margin: 14px 0 4px; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 40px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; overflow-x: auto; order: 2; }
  .pdp-thumbs img { flex-shrink: 0; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--text); color: var(--bg);
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 500;
  transition: transform 0.4s var(--easing);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Marquee */
.marquee {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Mobile / Tablet responsive ─────────────────────────── */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  /* Hero */
  .hero-content { padding: 60px 0 40px; }
  .h-display { font-size: clamp(32px, 8vw, 72px) !important; }

  /* Grid: 12-col → 2-col */
  .grid.md\:grid-cols-12 { grid-template-columns: 1fr 1fr !important; }
  .md\:col-span-4, .md\:col-span-5, .md\:col-span-6,
  .md\:col-span-7, .md\:col-span-8 { grid-column: span 1 !important; }
  .md\:col-start-6, .md\:col-start-7, .md\:col-start-9 { grid-column-start: auto !important; }

  /* Grid: 3-col → 2-col */
  .md\:grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

  /* Filter bar wraps */
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .filter-group { gap: 10px; }

  /* About stats: 4→2 */
  .grid.md\:grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .section-tight { padding: 40px 0; }
  .container { padding: 0 16px; }

  /* Single column everything */
  .md\:grid-cols-2, .md\:grid-cols-3, .md\:grid-cols-4,
  .md\:grid-cols-12, .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr !important;
  }
  .md\:col-span-4, .md\:col-span-5, .md\:col-span-6,
  .md\:col-span-7, .md\:col-start-6, .md\:col-start-7,
  .md\:col-start-9 { grid-column: 1 !important; }

  /* Product grid: 2 cols on mobile */
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px 10px !important; }

  /* Lookbook: 2 cols */
  .grid.grid-cols-2.md\:grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 18px; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 40px 0 30px; }

  /* Buttons side by side */
  .rise-d3 { flex-direction: column; }
  .btn, .btn-ghost { width: 100%; justify-content: center; }

  /* About stats: still 2 cols on mobile */
  .grid.md\:grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .grid.md\:grid-cols-4 > div { border-right: none !important; padding: 16px 0 !important; border-bottom: 1px solid var(--border); }

  /* Contact form layout */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* PDP */
  .pdp { padding: 16px 16px 60px; }

  /* Marquee smaller */
  .marquee { font-size: 10px; letter-spacing: 0.16em; }
}

/* ── Responsive grid utilities (replaces Tailwind CDN) ───── */
.grid { display: grid; }
.block { display: block; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-2  { gap: 8px; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.items-center { align-items: center; }
.mt-6   { margin-top: 24px; }

@media (min-width: 768px) {
  .md\:grid-cols-2  { grid-template-columns: repeat(2,  minmax(0, 1fr)); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3,  minmax(0, 1fr)); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4,  minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4   { grid-column: span 4 / span 4; }
  .md\:col-span-5   { grid-column: span 5 / span 5; }
  .md\:col-span-6   { grid-column: span 6 / span 6; }
  .md\:col-span-7   { grid-column: span 7 / span 7; }
  .md\:col-start-6  { grid-column-start: 6; }
  .md\:col-start-7  { grid-column-start: 7; }
  .md\:col-start-9  { grid-column-start: 9; }
}
