/* ============================================================
   Maker & Field — Indianapolis small-batch home goods
   Self-contained stylesheet (no external CSS deps)
   ============================================================ */
:root {
  --cream: #faf7f2;
  --cream-2: #f3ede2;
  --ink: #1a1a1a;
  --ink-soft: #4a463f;
  --muted: #8a8479;
  --line: #e4ddd0;
  --accent: #d65a3a;
  --accent-deep: #b8432a;
  --accent-soft: #f6e3da;
  --card: #ffffff;
  --shadow: 0 1px 2px rgba(26,26,26,.04), 0 8px 28px rgba(26,26,26,.06);
  --shadow-lg: 0 20px 60px rgba(26,26,26,.12);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  background: transparent; color: var(--ink); line-height: 1; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--accent); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--add {
  background: var(--cream); color: var(--ink); border-color: var(--line);
  font-size: 14px; padding: 9px 16px;
}
.btn--add:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn.is-added { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.btn--ghost { border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px;
  box-shadow: 0 4px 12px rgba(214,90,58,.3);
}
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 999px; color: var(--ink-soft); transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--ink); background: var(--cream-2); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; display: block; height: 2px; width: 16px; margin: 3px auto 0;
  background: var(--accent); border-radius: 2px;
}

.cart-link { position: relative; display: inline-flex; align-items: center; gap: 7px; }
.cart-badge {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: var(--line); color: var(--ink-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  transition: background .2s, color .2s, transform .2s;
}
.cart-badge.is-active { background: var(--accent); color: #fff; transform: scale(1.05); }

.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px;
  background: var(--card); cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 76px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 420px at 88% -8%, rgba(214,90,58,.14), transparent 60%),
    radial-gradient(620px 480px at 5% 110%, rgba(138,109,82,.12), transparent 60%);
  pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-deep);
  background: var(--accent-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: 19px; color: var(--ink-soft); max-width: 30ch; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero__fact { }
.hero__fact b { font-family: var(--font-display); font-size: 24px; display: block; }
.hero__fact span { font-size: 13px; color: var(--muted); letter-spacing: .02em; }

/* hero visual: stacked swatch collage */
.hero__visual { position: relative; aspect-ratio: 1 / 1; }
.hero__tile {
  position: absolute; border-radius: 18px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700;
  padding: 18px; text-align: center; overflow: hidden;
}
.hero__tile span { position: relative; z-index: 1; font-size: 15px; line-height: 1.2; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.hero__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.18)); }
.hero__tile--a { width: 56%; height: 64%; left: 0; top: 6%; background: linear-gradient(135deg,#e8a87c,#d65a3a); z-index: 2; }
.hero__tile--b { width: 46%; height: 46%; right: 2%; top: 0; background: linear-gradient(135deg,#8a9a8b,#5c6e5e); z-index: 3; }
.hero__tile--c { width: 50%; height: 44%; right: 0; bottom: 2%; background: linear-gradient(135deg,#6b4f3a,#3a2a1f); z-index: 1; }
.hero__tile--d { width: 40%; height: 34%; left: 8%; bottom: 0; background: linear-gradient(135deg,#e3c87a,#b8923a); z-index: 4; }

/* ---------- section heads ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.sec-head__kicker { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.sec-head h2 { font-size: clamp(28px, 3.5vw, 40px); }
.sec-head__sub { color: var(--ink-soft); max-width: 46ch; margin-top: 8px; }
.sec-link { font-family: var(--font-display); font-weight: 500; color: var(--accent-deep); }
.sec-link:hover { color: var(--accent); }

/* ---------- product grid / cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { display: block; }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.card__name:hover { color: var(--accent-deep); }
.card__blurb { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.card__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.card__price { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

/* ---------- swatch ("image") ---------- */
.swatch {
  position: relative; aspect-ratio: 4 / 3; width: 100%; overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px; color: #fff;
}
.swatch::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,.22));
}
.swatch__label {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700;
  font-size: 17px; line-height: 1.15; letter-spacing: -.01em; text-shadow: 0 1px 10px rgba(0,0,0,.3); max-width: 80%;
}
.swatch__cat {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 999px; color: #fff;
}
.swatch--lg { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.swatch--lg .swatch__label { font-size: 26px; }
.swatch--sm { aspect-ratio: 1 / 1; border-radius: 10px; }
.swatch--sm .swatch__label { font-size: 0; }
.swatch--sm .swatch__cat { display: none; }
.swatch--xs { aspect-ratio: 1/1; width: 48px; height: 48px; border-radius: 9px; flex: none; padding: 0; }
.swatch--xs .swatch__label, .swatch--xs .swatch__cat { display: none; }

/* ---------- brand story strip ---------- */
.story { background: var(--ink); color: var(--cream); border-radius: 22px; overflow: hidden; position: relative; }
.story__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 56px; position: relative; z-index: 1; }
.story::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 400px at 90% 20%, rgba(214,90,58,.28), transparent 60%); }
.story__kicker { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.story h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 18px; }
.story p { color: #d8d2c6; margin-bottom: 14px; }
.story__map {
  aspect-ratio: 1/1; border-radius: 16px;
  background: linear-gradient(135deg, #2a2722, #1a1a1a);
  border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; position: relative; overflow: hidden;
}
.story__pin { position: relative; z-index: 1; text-align: center; }
.story__pin .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); margin: 0 auto 10px; box-shadow: 0 0 0 8px rgba(214,90,58,.18), 0 0 0 18px rgba(214,90,58,.08); }
.story__pin b { font-family: var(--font-display); display: block; font-size: 18px; }
.story__pin span { font-size: 13px; color: #b8b2a6; }

/* ---------- categories ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  position: relative; aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px; color: #fff; transition: transform .2s, box-shadow .2s;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.4)); }
.cat span { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.cat--home { background: linear-gradient(135deg,#e8a87c,#d65a3a); }
.cat--kitchen { background: linear-gradient(135deg,#8a9a8b,#5c6e5e); }
.cat--desk { background: linear-gradient(135deg,#b07a4f,#6e451f); }
.cat--gifts { background: linear-gradient(135deg,#d65a3a,#7a2d3a); }

/* ---------- value props ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 16px; font-family: var(--font-display); font-weight: 700; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- page head ---------- */
.page-head { padding: 56px 0 28px; }
.page-head h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 12px; }
.page-head p { color: var(--ink-soft); max-width: 52ch; }

/* ---------- filters ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--card);
  cursor: pointer; transition: all .2s; color: var(--ink-soft);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 18px; }
.pdp__media { position: sticky; top: 96px; }
.pdp__crumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; font-family: var(--font-display); }
.pdp__crumb a:hover { color: var(--accent-deep); }
.pdp__crumb span { margin: 0 6px; }
.pdp__name { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.pdp__price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--accent-deep); margin-bottom: 22px; }
.pdp__blurb { font-size: 18px; color: var(--ink-soft); margin-bottom: 20px; }
.pdp__meta { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; margin-bottom: 26px; }
.pdp__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; background: var(--card); overflow: hidden; }
.qty__btn { width: 42px; height: 46px; border: 0; background: transparent; font-size: 20px; cursor: pointer; color: var(--ink); font-family: var(--font-display); }
.qty__btn:hover { background: var(--cream-2); }
.qty__val { width: 44px; height: 46px; border: 0; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; background: transparent; color: var(--ink); }
.qty--sm .qty__btn { width: 34px; height: 36px; font-size: 17px; }
.qty--sm { margin-top: 10px; }
.qty__val--static { width: 38px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }

/* not found */
.notfound { text-align: center; padding: 80px 20px; max-width: 480px; margin: 0 auto; }
.notfound h1 { font-size: 36px; margin-bottom: 14px; }
.notfound p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---------- cart ---------- */
.cart__layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart__lines { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.line { display: grid; grid-template-columns: 84px 1fr auto; gap: 18px; align-items: center; padding: 20px; border-bottom: 1px solid var(--line); }
.line:last-child { border-bottom: 0; }
.line__thumb { width: 84px; }
.line__mid { display: flex; flex-direction: column; }
.line__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.line__name:hover { color: var(--accent-deep); }
.line__unit { font-size: 13px; color: var(--muted); margin-top: 2px; }
.line__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.line__total { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.line__remove { background: none; border: 0; color: var(--muted); font-size: 13px; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.line__remove:hover { color: var(--accent-deep); }

/* summary */
.summary { position: sticky; top: 96px; }
.summary__inner { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 14px; }
.summary__title { font-size: 19px; margin-bottom: 18px; }
.summary__row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15px; color: var(--ink-soft); }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); }
.summary__note { font-size: 13px; color: var(--accent-deep); background: var(--accent-soft); padding: 9px 12px; border-radius: 9px; margin: 6px 0; }
.summary__keep { display: block; text-align: center; font-size: 14px; color: var(--ink-soft); margin-top: 14px; font-family: var(--font-display); }
.summary__keep:hover { color: var(--accent-deep); }

/* empty */
.empty { text-align: center; padding: 80px 20px; max-width: 460px; margin: 0 auto; }
.empty--sm { padding: 40px 20px; }
.empty__icon { font-family: var(--font-display); font-size: 40px; color: var(--line); line-height: 1; margin-bottom: 12px; }
.empty h2 { font-size: 28px; margin-bottom: 10px; }
.empty p { color: var(--ink-soft); margin-bottom: 22px; }

/* ---------- checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.co-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.co-form h2 { font-size: 21px; margin-bottom: 4px; }
.co-form__hint { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 13px; margin-bottom: 6px; letter-spacing: .01em; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,90,58,.14); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.co-section-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 28px 0 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.demo-note { background: var(--accent-soft); color: var(--accent-deep); font-size: 13.5px; padding: 11px 14px; border-radius: 10px; margin: 4px 0 18px; display: flex; gap: 8px; align-items: flex-start; }
.demo-note b { font-family: var(--font-display); }
.co-summary { position: sticky; top: 96px; }
.co-items { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.co-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-item:last-child { border-bottom: 0; }
.co-item__info { flex: 1; display: flex; flex-direction: column; }
.co-item__name { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; }
.co-item__qty { font-size: 12.5px; color: var(--muted); }
.co-item__price { font-family: var(--font-display); font-weight: 700; font-size: 15px; }

/* ---------- confirmation receipt ---------- */
.confirm-wrap { max-width: 640px; margin: 0 auto; padding-top: 12px; }
.receipt__head { text-align: center; margin-bottom: 30px; }
.receipt__check { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 28px; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(214,90,58,.35); }
.receipt__head h1 { font-size: clamp(28px,4vw,40px); margin-bottom: 12px; }
.receipt__head p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }
.receipt__order { margin-top: 18px; font-family: var(--font-display); font-size: 14px; color: var(--ink-soft); background: var(--cream-2); display: inline-block; padding: 8px 16px; border-radius: 999px; }
.receipt__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.receipt__line { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.receipt__lineinfo { flex: 1; display: flex; flex-direction: column; }
.receipt__name { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.receipt__qty { font-size: 13px; color: var(--muted); }
.receipt__price { font-family: var(--font-display); font-weight: 700; }
.receipt__totals { margin-top: 16px; padding-top: 8px; }
.confirm-wrap .btn { display: flex; max-width: 280px; margin: 0 auto; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); margin-top: 90px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding: 60px 0 30px; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { color: #b8b2a6; font-size: 14.5px; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: #d8d2c6; font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #948e82; }

/* ---------- No404 badge ---------- */
.n404-badge {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,26,26,.92); color: #f3ede2; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px;
  padding: 7px 14px 7px 8px; font-size: 12.5px; font-family: var(--font-display); font-weight: 500;
  box-shadow: var(--shadow-lg); transition: transform .2s, background .2s; max-width: calc(100vw - 32px);
}
.n404-badge:hover { transform: translateY(-2px); background: #000; }
.n404-badge strong { color: var(--accent); font-weight: 700; }
.n404-badge__dot { background: var(--accent); color: #fff; font-weight: 700; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.n404-badge .n404-badge__full { white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; }
  .story__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .pdp { grid-template-columns: 1fr; gap: 36px; }
  .pdp__media { position: static; max-width: 460px; }
  .cart__layout { grid-template-columns: 1fr; gap: 28px; }
  .checkout { grid-template-columns: 1fr; gap: 28px; }
  .summary, .co-summary, .pdp__media { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 72px 0 0; background: var(--cream); flex-direction: column;
    align-items: stretch; padding: 18px 24px; gap: 4px; transform: translateY(-110%); transition: transform .3s ease;
    border-bottom: 1px solid var(--line); z-index: 49;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: 14px 12px; font-size: 18px; border-radius: 10px; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: var(--cream-2); }
  .cart-link { justify-content: space-between; }
  .grid, .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .values { grid-template-columns: 1fr; }
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .n404-badge__full { display: none; }
  .n404-badge { padding: 6px 12px 6px 6px; }
}
@media (max-width: 420px) {
  .grid, .grid--3 { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .card__body { padding: 16px; }
}
