/* =============================================================
   home.css — MOBILE FIRST
   ============================================================= */

/* ============ hero ============ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: radial-gradient(1200px 400px at 80% -10%, #fff 0%, #f3f3f3 55%);
  overflow: hidden;
}
.hero-copy {
  padding-block: var(--sp-4) var(--sp-5);
  padding-inline: var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.eyebrow {
  display: inline-flex; width: fit-content; align-items: center; gap: var(--sp-2);
  background: #111; color: var(--yellow);
  font-weight: 800; font-size: var(--t-xs);
  padding: 5px var(--sp-3);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.hero h1 {
  font-size: var(--h1);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.hero .lead {
  margin-top: var(--sp-3);
  color: var(--muted);
  font-size: var(--t-md);
  max-width: 42ch;
}
.hero-actions {
  display: flex; flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.hero-actions .btn { width: 100%; }
.hours {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--t-sm);
  color: #555;
}

/* The yellow band is the brand's signature — it stays on phones,
   just shorter, so mobile keeps the same identity as desktop. */
.hero-visual {
  position: relative;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
  padding: var(--sp-6) var(--gutter);
}
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; border-radius: 50%; }
.hero-visual::before { width: 150px; height: 150px; background: var(--magenta); opacity: .18; top: -40px; right: -30px; }
.hero-visual::after { width: 180px; height: 180px; background: var(--cyan); opacity: .26; bottom: -60px; left: -30px; }

.printer-card {
  position: relative; z-index: 1;
  background: #fff;
  border: 3px solid #111;
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  width: min(84%, 460px);
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
  transform: rotate(-1.2deg);
  transition: transform .45s var(--ease);
}
.printer-top {
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1c1c1c, #3a3a3a);
  position: relative; overflow: hidden;
}
.printer-top .slot { position: absolute; left: 16px; right: 16px; top: 16px; height: 12px; background: #0d0d0d; border-radius: 4px; }
.printer-top .photo {
  position: absolute; left: 50%; bottom: 8px;
  transform: translateX(-50%) rotate(-6deg);
  width: 84px; height: 60px;
  background: linear-gradient(180deg, #7ec8ff, #ffe08a);
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.printer-card .cap {
  display: grid;
  gap: 2px;
  margin-top: var(--sp-2);
  font-size: var(--t-sm);
  line-height: 1.3;
}
.printer-card .cap span { color: #666; }

.stamp {
  display: none;
  position: absolute;
  top: var(--sp-3);
  inset-inline-end: var(--sp-3);
  z-index: 2;
  width: 72px; height: 72px;
  border: 3px dashed rgba(0,0,0,.5);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-size: 9.5px; font-weight: 800; line-height: 1.25;
  transform: rotate(-12deg);
  background: rgba(255,255,255,.38);
}
.chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--sp-2);
  position: relative; z-index: 1;
}
.chip { background: #111; color: #fff; font-size: 11px; font-weight: 800; padding: 5px 9px; border-radius: var(--r-pill); }
.chip.alt { background: #fff; color: #111; border: 2px solid #111; }

/* ============ trust band ============ */
.trust { background: #111; color: #fff; }
.trust .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-2);
  padding-block: var(--sp-4);
}
.trust-item { display: flex; gap: var(--sp-2); align-items: center; }
.trust-ico {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--yellow); color: #111;
  display: grid; place-items: center;
  font-weight: 900; font-size: var(--t-sm);
  flex: 0 0 auto;
}
.trust-item b { display: block; font-size: var(--t-sm); line-height: 1.25; }
.trust-item small { color: #cfcfcf; font-size: 11.5px; line-height: 1.3; display: block; }

/* ============ section shell ============ */
section.block { padding-block: var(--section-y); }
.sec-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.sec-kicker { color: var(--magenta); font-size: var(--t-xs); font-weight: 800; letter-spacing: .04em; margin-bottom: var(--sp-1); }
.sec-head h2 { font-size: var(--h2); font-weight: 900; letter-spacing: -.02em; line-height: 1.2; text-wrap: balance; }
.sec-head p { color: var(--muted); max-width: 42ch; font-size: var(--t-sm); margin-top: var(--sp-1); }

/* ============ categories ============ */
/* A 2-up grid rather than a swipe rail: all ten departments are visible
   and reachable without hunting sideways. */
.cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.cat {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  min-height: 84px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.cat:nth-child(1) { background: linear-gradient(180deg, var(--yellow-pale), #fff); }
.cat:nth-child(10) { background: linear-gradient(180deg, #ffe6f3, #fff); }
.cat .icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--yellow-pale);
  display: grid; place-items: center;
  font-size: 17px;
  transition: transform .3s var(--ease);
}
.cat h3 { font-size: var(--t-sm); font-weight: 800; line-height: 1.25; }
.cat p { display: none; }

/* ============ best sellers ============ */
.grid4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }

/* ============ why ============ */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: center; }
.why-grid > div > h2 { font-size: var(--h2); letter-spacing: -.02em; line-height: 1.2; }
.why-lead { color: var(--muted); margin: var(--sp-2) 0; font-size: var(--t-sm); }
.point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  display: flex; gap: var(--sp-3);
  margin-top: var(--sp-2);
  transition: border-color .25s var(--ease);
}
.point b { font-size: var(--t-base); }
.point .sub { color: #666; font-size: var(--t-sm); display: block; margin-top: 2px; }
.dot {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--yellow);
  display: grid; place-items: center;
  font-weight: 900; font-size: var(--t-sm);
  flex-shrink: 0;
}
.why-panel {
  background: #111; color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: relative; overflow: hidden;
}
.why-panel h3 { font-size: var(--h2); line-height: 1.2; }
.why-panel > p { color: #ddd; margin-top: var(--sp-2); font-size: var(--t-sm); }
.why-panel::after {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  background: var(--yellow);
  border-radius: 50%;
  left: -95px; bottom: -95px;
}
.why-panel > * { position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: var(--sp-4); }
.stat { background: rgba(255,255,255,.1); border-radius: 12px; padding: var(--sp-3); }
.stat b { display: block; color: var(--yellow); font-size: 22px; line-height: 1.15; }
.stat span { font-size: var(--t-xs); color: #ddd; }

/* ============ steps ============ */
/* Genuinely a sequence, so it reads as a numbered list on phones
   instead of a rail that hides steps 3 and 4. */
.steps { display: grid; gap: var(--sp-2); }
.step {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--sp-3);
  align-items: start;
  background: #fff;
  transition: border-color .25s var(--ease);
}
.num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  font-weight: 900; font-size: var(--t-sm);
}
.step h3 { font-size: var(--t-base); font-weight: 800; padding-top: 5px; }
.step p { color: #666; font-size: var(--t-sm); margin-top: 2px; grid-column: 2; }

/* ============ quotes ============ */
.quotes {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scroll-padding-inline-start: var(--gutter);
}
.quotes::-webkit-scrollbar { display: none; }
.quotes .quote { flex: 0 0 86%; scroll-snap-align: start; }
.quote {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  background: #fff;
}
.quote p { font-size: var(--t-sm); }
.quote:first-child { background: #111; color: #fff; border-color: #111; }
.quote:first-child .stars { color: var(--yellow); }
.stars { color: #f5b400; margin-bottom: var(--sp-2); letter-spacing: 1px; }
.quote footer { margin-top: var(--sp-3); font-size: var(--t-xs); opacity: .85; }

/* ============ cta ============ */
.cta-box {
  background: var(--yellow);
  border: 3px solid #111;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: var(--sp-4);
  align-items: stretch;
  text-align: center;
}
.cta-box h2 { font-size: var(--h2); letter-spacing: -.02em; line-height: 1.2; }
.cta-box p { font-size: var(--t-sm); margin-top: var(--sp-1); }
.cta-actions { display: flex; flex-direction: column; gap: var(--sp-2); }

/* =============================================================
   ≥600px
   ============================================================= */
@media (min-width: 600px) {
  .hero-visual { min-height: 300px; }
  .printer-top { height: 130px; }
  .printer-card { width: min(72%, 460px); }
  .stamp { display: grid; width: 84px; height: 84px; font-size: 10.5px; }
  .trust .wrap { grid-template-columns: repeat(4, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
  .cat { min-height: 118px; padding: var(--sp-4); }
  .cat h3 { font-size: var(--t-base); }
  .cat p { display: block; font-size: var(--t-xs); color: #666; margin-top: auto; }
  .grid4 { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
  .steps { grid-template-columns: 1fr 1fr; }
  .quotes .quote { flex-basis: 60%; }
  .stat b { font-size: 26px; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .cta-actions .btn { flex: 0 1 auto; }
}

/* =============================================================
   ≥768px — tablet
   ============================================================= */
@media (min-width: 768px) {
  .hero { grid-template-columns: 1.05fr .95fr; }
  .hero-copy { padding: var(--sp-8) var(--sp-6) var(--sp-8) 0; }
  .hero-visual { min-height: 380px; padding-inline: 0; }
  .printer-card { width: min(80%, 460px); }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .cats { grid-template-columns: repeat(4, 1fr); }
  .grid4 { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); }
  .why-panel { padding: var(--sp-6); min-height: 300px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { grid-template-columns: 1fr; }
  .step p { grid-column: 1; }
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .quotes .quote { flex: none; }
  .cta-box { flex-direction: row; text-align: start; align-items: center; padding: var(--sp-6); }
  .point:hover { border-color: #ccc; }
  .cat:hover { transform: translateY(-4px); border-color: #111; box-shadow: var(--shadow); }
  .cat:hover .icon { transform: rotate(-8deg); }
  .step:hover { border-color: #111; transform: translateY(-3px); }
  .printer-card:hover { transform: rotate(0deg) translateY(-4px); }
}

/* =============================================================
   ≥992px — DESKTOP (original values restored)
   ============================================================= */
@media (min-width: 992px) {
  .hero { grid-template-columns: 1.08fr .92fr; }
  .hero-copy { padding: 64px 44px 56px 24px; }
  .hero h1 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.1; }
  .hero .lead { margin-top: 16px; font-size: 17.5px; max-width: 44ch; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hours { margin-top: 16px; font-size: 14px; }
  .eyebrow { font-size: 13px; padding: 6px 12px; margin-bottom: 18px; }
  .hero-visual { min-height: 460px; padding-block: 0; }
  .hero-visual::before { width: 220px; height: 220px; top: -50px; right: -40px; }
  .hero-visual::after { width: 260px; height: 260px; bottom: -80px; left: -40px; }
  .printer-card { padding: 16px; width: min(88%, 460px); border-radius: 22px; }
  .stamp { display: grid; }
  .printer-top { height: 148px; border-radius: 14px; }
  .printer-top .slot { top: 20px; height: 16px; }
  .printer-top .photo { width: 110px; height: 80px; bottom: 10px; }
  .printer-card .cap {
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px; font-size: 14px; margin-top: 10px;
  }
  .stamp { width: 92px; height: 92px; font-size: 11px; top: 18px; inset-inline-end: 18px; }
  .chips { gap: 8px; margin-top: 12px; }
  .chip { font-size: 12px; padding: 6px 10px; }

  .trust .wrap { grid-template-columns: repeat(4, 1fr); gap: 12px; padding-block: 16px; }
  .trust-ico { width: 40px; height: 40px; border-radius: 12px; }
  .trust-item b { font-size: 14.5px; }
  .trust-item small { font-size: 12px; }

  section.block { padding: 72px 0; }
  .sec-head { margin-bottom: 26px; }
  .sec-kicker { font-size: 12.5px; margin-bottom: 6px; }
  .sec-head p { font-size: 15px; }

  .cats { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .cat { border-radius: 16px; padding: 18px 14px; min-height: 148px; gap: 8px; }
  .cat .icon { width: 46px; height: 46px; border-radius: 14px; font-size: 22px; }
  .cat h3 { font-size: 16px; }
  .cat p { font-size: 13px; }

  .grid4 { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .grid4 .prod-card:first-child { grid-column: span 2; }
  .grid4 .prod-card:first-child .prod-pic { height: auto !important; }

  .why-grid { grid-template-columns: 1.12fr .88fr; gap: 28px; }
  .why-lead { font-size: 15px; margin: 10px 0 8px; }
  .point { border-radius: 14px; padding: 14px 16px; gap: 12px; margin-top: 10px; }
  .point:hover { transform: translateX(-3px); }
  .point .sub { font-size: 14px; }
  .dot { width: 32px; height: 32px; border-radius: 10px; font-size: 15px; }
  .why-panel { border-radius: 22px; padding: 32px; min-height: 320px; }
  .why-panel h3 { font-size: 28px; }
  .why-panel::after { width: 200px; height: 200px; left: -70px; bottom: -80px; }
  .stats { gap: 10px; margin-top: 22px; }
  .stat { background: rgba(255,255,255,.08); padding: 12px; }
  .stat b { font-size: 26px; }

  .steps { gap: 12px; }
  .step { border-radius: 16px; padding: 20px 18px; }
  .num { width: 36px; height: 36px; margin-bottom: 12px; font-size: 15px; }
  .step h3 { font-size: 16px; padding-top: 0; }
  .step p { font-size: 14px; margin-top: 6px; }

  .quotes { grid-template-columns: 1.15fr .85fr .85fr; gap: 12px; }
  .quote { border-radius: 16px; padding: 22px 20px; }
  .quote p { font-size: 15px; }
  .quote footer { margin-top: 14px; font-size: 13.5px; }

  .cta-box { border-radius: 24px; padding: 32px; }
  .cta-box h2 { font-size: clamp(22px, 3vw, 32px); }
  .cta-box p { font-size: 15px; }
  .cta-actions { flex-direction: row; gap: 10px; flex-wrap: wrap; }
}

.hero-shot {
  position: relative; z-index: 1;
  display: block; width: min(92%, 420px);
  background: #fff; border: 3px solid #111; border-radius: 22px;
  overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.hero-shot img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; object-position: center; background: #f4f4f4; display: block; }
.hero-shot-cap { display: flex; justify-content: space-between; gap: 8px; padding: 10px 14px; font-size: 14px; }
.hero-shot-cap span { color: #666; }
.cat { padding: 0 0 12px; overflow: hidden; }
.cat-photo { height: auto; aspect-ratio: 1 / 1; background: #f4f4f4; overflow: hidden; }
.cat-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.cat h3 { padding: 10px 12px 0; }
.cat p { padding: 0 12px; display: block; font-size: 12.5px; color: #666; }
@media (min-width: 992px) {
}
