/* ============================================================
   EAS_3D — bento build.
   White canvas, chunky radii, big type, colour-blocked tiles.
   All tokens live in :root.
   ============================================================ */

:root {
  --cream:   #FFFFFF;   /* page canvas + light text on dark */
  --paper:   #FFFFFF;
  --sand:    #F2F2EF;

  --ink:     #14110D;
  --ink-2:   #57503F;
  --ink-3:   #7A7366;

  --orange:  #FF5A1F;
  --orange-d:#CE3A07;   /* orange dark enough to be readable as small text */
  --lime:    #C4F52B;
  --indigo:  #3B2BFF;
  --mint:    #00C48C;
  --pink:    #FF3D8A;

  --line:    #E3E3DF;
  --line-2:  #CFCFC9;

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;

  --maxw: 1280px;
  --gutter: 24px;
  --measure: 60ch;

  --shadow: 0 2px 0 var(--line-2);
  --shadow-lift: 0 14px 34px rgba(20, 17, 13, .10);

  --font-display: 'Bricolage Grotesque', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --spring: cubic-bezier(.34, 1.4, .48, 1);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

[id] { scroll-margin-top: 120px; }
img { max-width: 100%; }

:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 20px; top: -70px; z-index: 400;
  background: var(--ink); color: var(--cream);
  padding: 14px 22px; border-radius: 0 0 16px 16px;
  text-decoration: none; font-family: var(--font-display); font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 .45em;
  text-wrap: balance;
}
.display  { font-size: clamp(2.9rem, 8vw, 6.6rem); line-height: .94; letter-spacing: -0.045em; }
.display-2{ font-size: clamp(2.2rem, 5vw, 4rem);  line-height: 1; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: .98; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.32rem; line-height: 1.22; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; max-width: var(--measure); color: var(--ink-2); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.5; color: var(--ink-2); max-width: 52ch; }
.tint { color: var(--orange); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .01em;
  background: var(--ink); color: var(--cream);
  padding: 7px 15px; border-radius: 999px;
  margin: 0 0 22px;
}
.eyebrow.lime  { background: var(--lime);   color: var(--ink); }
.eyebrow.orange{ background: var(--orange); color: var(--ink); }
.eyebrow.paper { background: var(--paper);  color: var(--ink); box-shadow: var(--shadow); }

/* ---------- Floating pill nav ---------- */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 200;
  padding: 0 var(--gutter);
  transition: transform .4s var(--ease);
}
.site-header.tucked { transform: translateY(-140%); }
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 9px 9px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: 0 6px 24px rgba(20, 17, 13, .07);
}
.wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; letter-spacing: -0.04em;
  text-decoration: none; color: var(--ink); line-height: 1; white-space: nowrap;
}
.wordmark span { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .95rem; font-weight: 500;
  text-decoration: none; color: var(--ink-2);
  padding: 9px 15px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: var(--sand); color: var(--ink); }
.nav a.active { background: var(--ink); color: var(--cream); }
.header-right { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--ink); border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 17px; height: 2px; background: var(--cream); position: relative; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 17px; height: 2px;
  background: var(--cream); border-radius: 2px; transition: transform .3s var(--spring);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 190;
  background: var(--cream);
  padding: 92px var(--gutter) 30px;
  display: none; flex-direction: column;
  overflow-y: auto;
}
.sheet.open { display: flex; }
.sheet a {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -0.04em;
  text-decoration: none; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--line);
  animation: sheetIn .4s var(--spring) both;
  animation-delay: calc(var(--i, 0) * 55ms);
}
.sheet a:last-of-type { border-bottom: none; }
@keyframes sheetIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.sheet .btn { margin-top: 22px; justify-content: center; }
body.sheet-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--spring), background .2s ease, box-shadow .25s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--ink); box-shadow: 0 4px 0 var(--orange-d); }
.btn-primary:hover { box-shadow: 0 6px 0 var(--orange-d); }
.btn-primary:active { box-shadow: 0 2px 0 var(--orange-d); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #2A241B; }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 4px 0 #9BC71B; }
.btn-lime:hover { box-shadow: 0 6px 0 #9BC71B; }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  color: var(--orange-d); text-decoration: none;
}
.arrow-link:hover { text-decoration: underline; text-underline-offset: 3px; }
main p a:not(.btn):not(.arrow-link) {
  color: var(--orange-d); text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.section-head { margin-bottom: 44px; max-width: 62ch; }
.section-head.row {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 30px; flex-wrap: wrap;
}

/* ============================================================
   Bento
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.tile {
  border-radius: var(--r-xl);
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}
.tile-link { text-decoration: none; color: inherit; cursor: pointer; }
.tile-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.t-ink    { background: var(--ink);    border-color: var(--ink); color: var(--cream); }
.t-ink h1, .t-ink h2, .t-ink h3 { color: var(--cream); }
.t-ink p  { color: #C9C2B4; }
.t-orange { background: var(--orange); border-color: var(--orange); }
.t-lime   { background: var(--lime);   border-color: var(--lime); }
.t-indigo { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.t-indigo h2, .t-indigo h3 { color: #fff; }
.t-indigo p { color: #D6D1FF; }
.t-sand   { background: var(--sand);   border-color: var(--line); }
.t-flush  { padding: 0; }

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12{ grid-column: span 12; }
.row-2  { grid-row: span 2; }

.tile-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-media { min-height: 260px; }

.tile-foot { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tile-stat {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1;
  letter-spacing: -0.04em; margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.tile-label { font-size: .95rem; color: var(--ink-2); }
.t-ink .tile-label, .t-indigo .tile-label { color: inherit; opacity: .8; }

/* Sticker */
.sticker {
  position: absolute; top: 18px; right: 18px;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  padding: 8px 14px; border-radius: 999px;
  transform: rotate(-6deg);
  border: 2px solid var(--ink);
  z-index: 3;
}
.sticker.orange { background: var(--orange); }
.sticker.paper { background: var(--paper); }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden; padding: 16px 0;
  background: var(--ink); color: var(--cream);
  user-select: none;
}
.marquee.lime   { background: var(--lime);   color: var(--ink); }
.marquee.orange { background: var(--orange); color: var(--ink); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: -0.02em;
  padding: 0 20px; white-space: nowrap; display: flex; align-items: center; gap: 20px;
}
.marquee-track span::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; display: inline-block; opacity: .55;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Product cards
   ============================================================ */
.rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rail-3 { grid-template-columns: repeat(3, 1fr); }

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  position: relative;
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.product .thumb { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.product-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product h3 { font-size: 1.1rem; margin-bottom: 5px; }
.product .desc { font-size: .93rem; line-height: 1.55; color: var(--ink-2); flex-grow: 1; max-width: none; margin-bottom: 16px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; letter-spacing: -0.03em;
}
.price small { font-size: .74rem; color: var(--ink-3); font-weight: 500; display: block; letter-spacing: 0; }
.pill-go {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; font-size: 1rem;
  transition: background .25s ease, transform .3s var(--spring);
}
.product:hover .pill-go { background: var(--orange); color: var(--ink); transform: rotate(-45deg); }

.badge {
  display: inline-block; font-size: .72rem;
  font-family: var(--font-display); font-weight: 700;
  background: var(--lime); color: var(--ink);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
  align-self: flex-start;
}
.badge.orange { background: var(--orange); }
.badge.sand { background: var(--sand); }

/* ============================================================
   Work grid
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.piece {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
  position: relative;
}
.piece:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.piece figure { margin: 0; }
.piece .thumb { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.piece figcaption { padding: 18px 20px 22px; }
.piece .piece-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; display: block; margin-bottom: 3px; letter-spacing: -0.02em; }
.piece .piece-meta { font-size: .87rem; color: var(--ink-3); line-height: 1.4; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-btn {
  font-family: var(--font-body); font-weight: 500; font-size: .93rem;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper); color: var(--ink-2);
  cursor: pointer; transition: all .25s var(--spring);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============================================================
   Steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .4s var(--spring), background .3s ease;
}
.step:hover { transform: translateY(-4px); }
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  margin-bottom: 18px;
}
.step:nth-child(2) .n { background: var(--orange); }
.step:nth-child(3) .n { background: var(--mint); }
.step:nth-child(4) .n { background: var(--indigo); color: #fff; }
.step h3 { font-size: 1.12rem; }
.step p { font-size: .95rem; margin: 0; }

/* ============================================================
   Lists
   ============================================================ */
.ticks { list-style: none; padding: 0; margin: 0; max-width: var(--measure); }
.ticks li {
  position: relative; padding: 11px 0 11px 30px;
  color: var(--ink-2); line-height: 1.5;
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 19px;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--orange);
  transition: transform .3s var(--spring);
}
.ticks li:hover::before { transform: rotate(45deg) scale(1.15); }
.t-ink .ticks li, .t-indigo .ticks li { color: inherit; opacity: .85; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.tags li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; font-size: .9rem; color: var(--ink-2);
  transition: transform .25s var(--spring), background .25s, color .25s, border-color .25s;
}
.tags li:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); transform: translateY(-2px) rotate(-2deg); }

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 38px;
}
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: 8px; }
.field .hint { font-size: .86rem; color: var(--ink-3); font-weight: 400; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 14px 16px; border: 1px solid var(--line-2); border-radius: var(--r-md);
  background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, .16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.dropzone {
  border: 2px dashed var(--line-2); border-radius: var(--r-lg);
  padding: 32px; text-align: center; background: var(--cream);
  cursor: pointer; display: block;
  transition: border-color .2s, background .2s, transform .25s var(--spring);
}
.dropzone:hover, .dropzone.over { border-color: var(--orange); background: rgba(255, 90, 31, .05); }
.dropzone.over { transform: scale(1.015); }
.dropzone input[type=file] { display: none; }
.dropzone .dz-title { font-family: var(--font-display); font-weight: 600; display: block; }
.dropzone .dz-sub { font-size: .86rem; color: var(--ink-3); }
.file-list { margin-top: 14px; font-size: .92rem; color: var(--ink-2); }
.file-list div { padding: 4px 0; }

.form-note { font-size: .89rem; line-height: 1.55; color: var(--ink-3); margin-top: 18px; max-width: var(--measure); }
.form-status {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--r-md);
  background: var(--lime); color: var(--ink); font-size: .93rem; display: none;
}
.form-status.show { display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { padding: 30px 0 90px; }
.cta-inner {
  background: var(--orange);
  border-radius: var(--r-xl);
  padding: 74px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner h2 { margin-bottom: .3em; }
.cta-inner p { color: rgba(20, 17, 13, .88); margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: #B8B1A2; padding: 70px 0 30px; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap; padding-bottom: 54px;
}
.footer-huge {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -0.045em;
  line-height: .96; margin: 0; color: var(--cream);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px;
  padding-top: 44px; border-top: 1px solid rgba(255,255,255,.12);
}
.site-footer h4 {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: #8C8578; margin-bottom: 15px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #B8B1A2; text-decoration: none; transition: color .2s, transform .2s; display: inline-block; }
.site-footer li a:hover { color: var(--orange); transform: translateX(3px); }
.site-footer .wordmark { color: var(--cream); }
.footer-tag { color: #B8B1A2; max-width: 32ch; margin-top: 12px; font-size: .94rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .87rem; color: #8C8578;
}

/* ============================================================
   Utility
   ============================================================ */
.more-wrap { margin-top: 34px; text-align: center; }
.more-wrap[hidden] { display: none; }
[data-hidden-item] { display: none !important; }

.mobile-cta {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 180;
  background: var(--ink); border-radius: 999px;
  padding: 9px 9px 9px 20px;
  gap: 12px; align-items: center; justify-content: space-between;
  box-shadow: 0 10px 30px rgba(20,17,13,.28);
}
.mobile-cta .mc-text { color: #C9C2B4; font-size: .82rem; line-height: 1.3; font-family: var(--font-display); }
.mobile-cta .mc-text b { color: var(--cream); font-weight: 600; display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .span-3 { grid-column: span 6; }
  .span-4 { grid-column: span 6; }
  .span-5, .span-7 { grid-column: span 12; }
  .span-8 { grid-column: span 12; }
  .rail { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { padding: 8px 8px 8px 20px; }
  .header-cta { display: none; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; --r-xl: 24px; --r-lg: 20px; }
  body { font-size: 16px; overflow-x: hidden; }
  section { padding: 56px 0; }
  section.tight { padding: 40px 0; }

  .bento { gap: 10px; }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: span 12; }
  .row-2 { grid-row: auto; }
  .tile { padding: 26px 22px; }
  .tile-media { min-height: 210px; }

  .rail, .rail-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .steps { grid-template-columns: 1fr; gap: 10px; }

  .product-body { padding: 15px; }
  .product h3 { font-size: .98rem; }
  .product .desc { font-size: .85rem; margin-bottom: 12px; }
  .price { font-size: 1.15rem; }
  .pill-go { width: 32px; height: 32px; }
  .piece figcaption { padding: 13px 14px 17px; }
  .piece .piece-title { font-size: .95rem; }
  .piece .piece-meta { font-size: .79rem; }

  .filter-bar {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin: 0 calc(var(--gutter) * -1) 26px; padding: 0 var(--gutter) 4px;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 24px 20px; }
  .field input, .field select, .field textarea { font-size: 16px; }

  .cta-inner { padding: 52px 24px; }
  .cta-actions .btn { flex: 1 1 auto; }
  .section-head { margin-bottom: 32px; }
  .section-head.row { align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .site-footer { padding: 52px 0 24px; }

  .mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 84px; }
}

@media (max-width: 420px) {
  .rail, .rail-3, .gallery { grid-template-columns: 1fr; }
  .mobile-cta .mc-text { display: none; }
  .mobile-cta .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
