/* Haus of Haug . Brand tokens */
:root {
  /* Sand palette (default) */
  --hh-grapefruit: #FB6737;
  --hh-grapefruit-hot: #FF4315;
  --hh-petal: #FECEE6;
  --hh-lipstick: #FE70BA;
  --hh-midnight: #483254;
  --hh-midnight-deep: #2F1F3A;
  --hh-lilac: #E2CBFF;
  --hh-sunshine: #FEB42F;
  --hh-sand: #F5ECDD;
  --hh-sand-deep: #EEE1C7;
  --hh-ink: #1C1024;
  --hh-off: #FFFAF7;

  /* Semantic . driven by theme */
  --bg: var(--hh-sand);
  --fg: var(--hh-midnight);
  --fg-soft: rgba(72, 50, 84, 0.72);
  --rule: rgba(72, 50, 84, 0.18);
  --cta: var(--hh-grapefruit);
  --cta-text: #fff;
  --cta-hover: var(--hh-midnight);
  --card: #fff;
  --chip: var(--hh-lilac);

  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body: "Instrument Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --page: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* Theme overrides */
[data-theme="midnight"] {
  --bg: var(--hh-midnight);
  --fg: var(--hh-sand);
  --fg-soft: rgba(245, 236, 221, 0.78);
  --rule: rgba(245, 236, 221, 0.22);
  --cta: var(--hh-grapefruit);
  --cta-text: #fff;
  --cta-hover: var(--hh-lilac);
  --card: #54395F;
  --chip: var(--hh-lipstick);
}
[data-theme="grapefruit"] {
  --bg: var(--hh-grapefruit);
  --fg: #2F1F3A;
  --fg-soft: rgba(47, 31, 58, 0.78);
  --rule: rgba(47, 31, 58, 0.22);
  --cta: var(--hh-midnight);
  --cta-text: #fff;
  --cta-hover: var(--hh-sand);
  --card: #FF8659;
  --chip: var(--hh-lilac);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 250ms ease, color 250ms ease;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Type utilities */
.serif { font-family: var(--font-display); font-weight: 400; }
.mono { font-family: var(--font-mono); }
.upper { text-transform: uppercase; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 0.95; text-wrap: balance; }
h1 { font-size: clamp(68px, 13vw, 220px); letter-spacing: -0.02em; }
h2 { font-size: clamp(44px, 7vw, 112px); letter-spacing: -0.015em; }
h3 { font-size: clamp(28px, 3vw, 48px); letter-spacing: -0.01em; line-height: 1; }
h4 { font-size: clamp(18px, 1.4vw, 22px); letter-spacing: 0.01em; }
p { margin: 0; }

/* Layout */
.page { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--page); margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo .amp { color: var(--hh-grapefruit); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  font-family: var(--font-mono); font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--hh-grapefruit);
}
.nav-links a:hover { color: var(--hh-grapefruit); }
.nav-cta {
  background: var(--hh-grapefruit); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.nav-cta:hover { background: var(--hh-midnight); color: #fff; transform: translateY(-1px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}
.btn-primary { background: var(--cta); color: var(--cta-text); }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1.5px solid var(--fg);
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }
.btn-lg { padding: 20px 36px; font-size: 14px; }

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--hh-lilac);
  color: var(--hh-midnight);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: flex; gap: 48px;
  animation: scroll 40s linear infinite;
  padding: 16px 0;
  white-space: nowrap;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-dot { color: var(--hh-grapefruit); font-style: normal; opacity: 0.8; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero {
  background: var(--hh-midnight);
  color: var(--hh-sand);
  padding: clamp(24px, 3vw, 48px) var(--gutter) clamp(20px, 2.5vw, 40px);
  position: relative; overflow: hidden;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hh-petal);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--hh-grapefruit);
  box-shadow: 0 0 0 0 rgba(251, 103, 55, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 103, 55, 0.6); }
  100% { box-shadow: 0 0 0 16px rgba(251, 103, 55, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--hh-petal); }
.hero-title .accent { color: var(--hh-grapefruit); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--hh-sand);
  color: transparent;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(52px, 11.5vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
  white-space: nowrap;
  color: var(--hh-sand);
}
.hero-wordmark i { color: var(--hh-grapefruit); }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 40px);
  padding-top: 24px;
  border-top: 1px solid rgba(245,236,221,0.25);
}
.hero-meta {
  max-width: 420px;
  font-size: 15px; line-height: 1.55;
  color: rgba(245,236,221,0.82);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: var(--hh-sand); color: var(--hh-sand); }
.hero .btn-ghost:hover { background: var(--hh-sand); color: var(--hh-midnight); }

/* Section */
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-title { max-width: 800px; }

/* Artwork Placeholder */
.art {
  position: relative; overflow: hidden; display: block;
  background: var(--hh-sand-deep);
  aspect-ratio: 4 / 5;
}
.art-square { aspect-ratio: 1 / 1; }
.art-wide { aspect-ratio: 3 / 2; }
.art-tall { aspect-ratio: 3 / 4; }
.art-caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--hh-midnight);
  mix-blend-mode: multiply;
  display: flex; justify-content: space-between; gap: 12px;
}

/* Print cards */
.print-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.print-card { position: relative; cursor: pointer; }
.print-card .art { transition: transform 400ms ease; }
.print-card:hover .art { transform: scale(0.97); }
.print-card-info {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 14px 0 0; gap: 12px;
}
.print-card-info .title {
  font-family: var(--font-display); font-size: 20px; line-height: 1.1;
}
.print-card-info .meta {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-soft);
  margin-top: 4px;
}
.print-card-info .price {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
}
.print-card .hover-buy {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(72, 50, 84, 0.88);
  color: #fff;
  opacity: 0; transition: opacity 240ms ease;
  aspect-ratio: 4 / 5;
}
.print-card:hover .hover-buy { opacity: 1; }
.print-card .buy-pill {
  background: var(--hh-grapefruit); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Commission archive grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.archive-card { position: relative; }
.archive-card .art { transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.archive-card:hover .art { transform: scale(0.985); }
.archive-card-info { padding: 14px 0 0; }
.archive-card .sold-stamp {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--hh-midnight); color: var(--hh-petal);
  padding: 6px 10px;
}
@media (max-width: 1024px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}

/* Dual CTA bloc */
.dual-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.dual-cta > a {
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 400ms ease;
  position: relative; overflow: hidden;
}
.dual-cta > a:hover { transform: scale(1.01); }
.dual-cta .one { background: var(--hh-lilac); color: var(--hh-midnight); }
.dual-cta .two { background: var(--hh-grapefruit); color: #fff; }
.dual-cta .eye {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.dual-cta h3 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.92;
  margin-top: 16px;
}
.dual-cta .arrow { font-size: 48px; font-family: var(--font-display); }
@media (max-width: 720px) {
  .dual-cta { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: var(--hh-ink); color: var(--hh-sand);
  padding: 80px var(--gutter) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 3fr 1fr 1fr; gap: 48px;
  max-width: var(--page); margin: 0 auto;
}
.footer h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hh-petal); margin-bottom: 18px;
}
.footer a { display: block; padding: 4px 0; opacity: 0.82; }
.footer a:hover { color: var(--hh-grapefruit); opacity: 1; }
.footer-brand .mega {
  font-family: var(--font-display); font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88; letter-spacing: -0.02em;
}
.footer-brand .mega .italic { font-style: italic; color: var(--hh-petal); }
.footer-bottom {
  max-width: var(--page); margin: 64px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(245,236,221,0.18);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.65;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Forms */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-soft);
}
.field input, .field textarea, .field select {
  font: inherit;
  background: transparent;
  border: none; border-bottom: 1.5px solid var(--fg);
  color: var(--fg);
  padding: 12px 0;
  font-family: var(--font-display); font-size: 22px;
  outline: none;
  transition: border-color 180ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--hh-grapefruit);
}
.field textarea { resize: vertical; min-height: 100px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 18px; border-radius: 999px;
  border: 1.5px solid var(--fg); color: var(--fg);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: all 160ms ease;
}
.chip:hover { background: var(--fg); color: var(--bg); }
.chip.on { background: var(--hh-grapefruit); color: #fff; border-color: var(--hh-grapefruit); }

/* Tweaks panel */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  background: var(--hh-midnight); color: var(--hh-sand);
  border-radius: 16px; padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  min-width: 240px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h5 { margin: 0 0 14px; font-size: 11px; letter-spacing: 0.2em; opacity: 0.6; font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; }
.tweaks-row { display: flex; gap: 6px; margin-bottom: 10px; }
.tweaks-row button {
  flex: 1;
  padding: 10px; border-radius: 8px;
  background: rgba(245,236,221,0.1); color: var(--hh-sand);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  transition: all 160ms ease;
}
.tweaks-row button.on { background: var(--hh-grapefruit); color: #fff; }

/* Steps */
.step-track {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 48px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.step-track .dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--fg-soft);
  color: var(--fg-soft);
  font-size: 11px;
}
.step-track .dot.done { background: var(--hh-lilac); color: var(--hh-midnight); border-color: var(--hh-lilac); }
.step-track .dot.cur { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.step-track .line { flex: 1; height: 1.5px; background: var(--fg-soft); opacity: 0.4; }
.step-track .step-label.cur { color: var(--fg); }
.step-track .step-label { color: var(--fg-soft); margin-right: 4px; }

/* Tag */
.tag {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: var(--chip); color: var(--hh-midnight);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
}

/* Misc */
.hr { height: 1px; background: var(--rule); margin: 64px 0; }

/* Cart */
.cart-icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  padding: 6px 0; color: var(--fg); display: flex; align-items: center;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500; gap: 6px;
}
.cart-badge {
  background: var(--hh-grapefruit); color: #fff;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity 220ms;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--hh-lilac); z-index: 101;
  transform: translateX(100%); transition: transform 320ms cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; border-bottom: 1px solid var(--rule);
}
.cart-drawer-head h3 { margin: 0; font-size: 18px; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--fg); padding: 4px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 0 28px; }
.cart-empty {
  text-align: center; padding: 64px 0; color: var(--fg-soft);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.cart-item img { width: 80px; height: 80px; object-fit: contain; background: var(--hh-sand-deep); display: block; }
.cart-item-title { font-family: var(--font-display); font-size: 16px; margin: 0 0 4px; }
.cart-item-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-soft); }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.cart-qty button {
  width: 26px; height: 26px; border: 1px solid var(--rule); background: none;
  cursor: pointer; font-size: 15px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--fg);
}
.cart-qty button:hover { background: var(--hh-sand-deep); }
.cart-qty span { font-family: var(--font-mono); font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--fg-soft); font-size: 18px; padding: 0; }
.cart-item-remove:hover { color: var(--hh-grapefruit); }
.cart-drawer-foot { padding: 24px 28px; border-top: 1px solid var(--rule); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 16px; font-family: var(--font-mono); font-size: 13px; }
.cart-subtotal span:last-child { font-weight: 700; }

/* Media query niceties */
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile ────────────────────────────────────────────────── */
.checkout-grid { grid-template-columns: 1fr auto; }
@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .checkout-cta { min-width: unset !important; width: 100% !important; }
  .checkout-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {

  /* Nav */
  .nav-inner { padding: 0 var(--gutter); }
  .nav-cta { display: none; }

  /* Hero */
  .hero { padding: 20px var(--gutter) 24px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-bottom { margin-top: 20px; padding-top: 20px; flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Section spacing */
  .section { padding: clamp(40px, 8vw, 60px) 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head .btn { align-self: flex-start; }

  /* Home — 2x2 commission grid */
  .home-commission-grid { grid-template-columns: 1fr 1fr !important; }

  /* Home — 5 print row → 2 col */
  .print-grid[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }

  /* Print grid */
  .print-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Print card */
  .print-card-info { flex-wrap: wrap; gap: 4px; }

  /* Dual CTA */
  .dual-cta { grid-template-columns: 1fr; min-height: auto; }

  /* Archive grid */
  .archive-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Commission availability block */
  .commission-cta-grid { grid-template-columns: 1fr !important; }
  .commission-cta-grid button { width: 100%; justify-content: center; }

  /* Product page */
  .product-grid { grid-template-columns: 1fr !important; }
  .product-grid > div:last-child { position: static !important; }

  /* About page */
  .about-grid { grid-template-columns: 1fr !important; }
  .about-grid > div:last-child { display: none; }

  /* Home portfolio 2x2 — hide captions */
  .home-commission-grid .art-caption { display: none; }

  /* Footer */
  .footer { padding: 48px var(--gutter) 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .mega { font-size: clamp(56px, 18vw, 120px); }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Cart drawer */
  .cart-drawer { width: 100vw; }

  /* Step tracker */
  .step-track { gap: 4px; }
  .step-track .step-label { display: none; }

  /* Marquee */
  .marquee-track { font-size: clamp(18px, 5vw, 28px); }

}
