/* D&J Sausage Factory — global styles */

:root {
  --bg: #f5efe4;
  --bg-2: #ebe2d0;
  --ink: #2a2520;
  --ink-2: #4a423a;
  --ink-mute: #7a6f63;
  --line: rgba(42, 37, 32, 0.14);
  --line-strong: rgba(42, 37, 32, 0.28);
  --accent: #8b2a1f;
  --accent-2: #6e2118;
  --gold: #b88a3e;
  --paper: #fbf6ec;

  --font-display: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shell-max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
section[id] { scroll-margin-top: 72px; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

h1.display { font-size: clamp(56px, 8.4vw, 132px); }
h2.display { font-size: clamp(40px, 5.6vw, 84px); }
h3.display { font-size: clamp(28px, 3.2vw, 44px); }

.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink-2);
  line-height: 1.3;
}

.lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}

.label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.nav-left, .nav-right { display: flex; gap: 28px; align-items: center; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link.is-active { color: var(--accent); }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.02em;
}
.brand-mark em { color: var(--accent); font-style: italic; }
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.nav-tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2f7d3a;
  box-shadow: 0 0 0 3px rgba(47, 125, 58, 0.18);
}

/* ---------- Hero (shared) ---------- */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
.hero-meta-item b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* Hero variant A: Editorial */
.hero--editorial .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.hero--editorial .hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero--editorial .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero--editorial .hero-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
}

/* Hero variant B: Full Bleed */
.hero--bleed { position: relative; padding: 0; border-bottom: none; }
.hero--bleed .hero-bg {
  position: relative;
  height: clamp(560px, 78vh, 820px);
  background: var(--ink);
  overflow: hidden;
}
.hero--bleed .hero-bg image-slot { width: 100%; height: 100%; }
.hero--bleed .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 5vw, 72px) var(--gutter);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%);
  color: var(--paper);
}
.hero--bleed .hero-overlay .display { color: var(--paper); }
.hero--bleed .hero-overlay .display em { color: #e9b765; }
.hero--bleed .hero-overlay .lead { color: rgba(255,255,255,0.82); }
.hero--bleed .hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: end;
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
}

/* Hero variant C: Catalog grid */
.hero--catalog .hero-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.hero--catalog .hero-top-left { display: flex; flex-direction: column; }
.hero--catalog .hero-storefront {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero--catalog .hero-storefront img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: contrast(1.04) brightness(0.98);
  box-shadow: 0 1px 0 var(--line-strong);
}
.hero--catalog .hero-storefront figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero--catalog .hero-storefront figcaption::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.hero--catalog .hero-top-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero--catalog .hero-logo {
  width: 480px;
  height: 320px;
  max-width: 100%;
  align-self: flex-end;
  margin: -20px 0 8px;
}
.hero--catalog .hero-logo image-slot {
  width: 100%;
  height: 100%;
  --image-slot-frame-bg: transparent;
  background: transparent;
}
.hero--catalog .hero-top-right .lead {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.55;
}
.hero--catalog .hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hero--catalog .strip-tile {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--bg-2);
  overflow: hidden;
  border-radius: 2px;
}
.hero--catalog .strip-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero--catalog .strip-cap b { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; text-transform: none; font-weight: 400; }

/* Category tiles (hero) */
.hero--catalog .cat-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
}
.hero--catalog .cat-tile:hover {
  background: var(--bg);
  border-color: var(--line-strong);
}
.hero--catalog .cat-tile .cat-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 4px 0 10px;
}
.hero--catalog .cat-tile .cat-icon svg,
.hero--catalog .cat-tile .cat-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform .25s ease;
}
.hero--catalog .cat-tile:hover .cat-icon svg,
.hero--catalog .cat-tile:hover .cat-icon img {
  transform: scale(1.06) rotate(-2deg);
}
.hero--catalog .cat-tile .strip-cap {
  position: static;
  color: var(--ink);
  text-shadow: none;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.hero--catalog .cat-tile .strip-cap b {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.hero--catalog .cat-tile .strip-cap span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.hero--catalog .cat-tile .cat-sub {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: clamp(64px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
  border-bottom: none;
}
.section--dark .lead { color: rgba(251, 246, 236, 0.78); }
.section--dark .eyebrow { color: rgba(251, 246, 236, 0.6); }
.section--dark .label-num { color: rgba(251, 246, 236, 0.5); }
.section--paper { background: var(--paper); }

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.label-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story-copy { display: flex; flex-direction: column; gap: 22px; }
.story-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.story-copy p.first {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 12px;
}
.story-stat {
  background: var(--bg);
  padding: 22px 0 22px 22px;
}
.story-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.story-stat span { font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute); }
.story-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
}
.story-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.story-tape {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* ---------- Featured products ---------- */
.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feat-card {
  background: var(--bg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background .2s ease;
  cursor: pointer;
}
.feat-card:hover { background: var(--paper); }
.feat-card .feat-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.feat-card .feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.feat-img {
  aspect-ratio: 1;
  background: var(--bg-2);
  margin: 8px 0 4px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.feat-img img.feat-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feat-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.feat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.feat-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.feat-foot .price {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.feat-foot .unit { font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute); }

/* ---------- Categories ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.cat {
  background: var(--bg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  position: relative;
  transition: background .2s ease;
  cursor: pointer;
}
.cat:hover { background: var(--paper); }
.cat .cat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.cat .cat-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.cat .cat-count {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 6px;
}
.cat .cat-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: transform .2s ease, opacity .2s ease;
}
.cat:hover .cat-arrow { transform: translate(2px, -2px); opacity: 1; }

/* ---------- Testimonials / press ---------- */
.press {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.press-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}
.press-quote::before {
  content: "“";
  display: block;
  font-size: 120px;
  line-height: 0.6;
  margin-bottom: 8px;
  color: var(--accent);
  font-style: normal;
}
.press-attr {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.press-attr b { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 18px; }
.press-attr .bar { width: 24px; height: 1px; background: currentColor; opacity: 0.4; }
.press-list { display: flex; flex-direction: column; gap: 1px; background: rgba(251,246,236,0.16); }
.press-item {
  background: var(--ink);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}
.press-item .yr { font-family: var(--font-mono); color: rgba(251,246,236,0.45); font-size: 12px; }
.press-item .src { font-family: var(--font-display); font-style: italic; font-size: 20px; }
.press-item .qte { color: rgba(251,246,236,0.7); }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  font-size: 14px;
}
.hours .day { color: var(--ink-2); font-weight: 500; }
.hours .day.today { color: var(--accent); }
.hours .time { font-variant-numeric: tabular-nums; color: var(--ink-mute); }
.hours .time.today { color: var(--accent); font-weight: 500; }
.hours .row {
  display: contents;
}
.visit-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.visit-block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0 0 14px;
}
.visit-block p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.visit-block p a { border-bottom: 1px solid var(--line-strong); }
.visit-block p a:hover { color: var(--accent); border-color: var(--accent); }

.map {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: #e8e0cf;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.02) saturate(0.92);
  pointer-events: none;
}
.map .map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: background .2s ease;
}
.map:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.map:hover .map-overlay { background: rgba(139,42,31,0.04); }
  border: 1px solid var(--line);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,37,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,37,32,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-roads {
  position: absolute;
  inset: 0;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.map-pin .label {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.map-pin .marker {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ---------- Wholesale CTA ---------- */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.55);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251,246,236,0.25);
  color: var(--paper);
  font: inherit;
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  font-family: var(--font-body);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: #e9b765;
}
.field textarea { resize: vertical; min-height: 60px; }

/* ---------- Footer ---------- */
.foot {
  padding: clamp(48px, 5vw, 80px) 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot-brand .brand-mark { font-size: 32px; }
.foot-brand .brand-sub { font-size: 10px; }
.foot p.small {
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 32ch;
  margin: 16px 0 0;
}
.foot-col h5 {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14px;
  color: var(--ink-2);
}
.foot-col a:hover { color: var(--accent); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ---------- Image slots ---------- */
image-slot {
  --image-slot-bg: var(--bg-2);
  --image-slot-fg: var(--ink-mute);
  width: 100%;
  height: 100%;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #e9b765;
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero--editorial .hero-grid,
  .story-grid,
  .press,
  .visit-grid,
  .cta,
  .sec-head,
  .hero--catalog .hero-top { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .hero--catalog .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero--bleed .hero-row { grid-template-columns: 1fr; gap: 18px; }

  /* Mobile nav: stack the logo on top, show links as centered rows below */
  .nav-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 0;
  }
  .brand { order: -1; }
  .nav-left, .nav-right {
    display: flex;
    gap: 18px 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-tag { display: none; }
}

/* ---------- Mobile (phones) ---------- */
@media (max-width: 640px) {
  /* Keep every big type element inside the screen and let it wrap */
  .display { overflow-wrap: break-word; word-break: break-word; }
  h1.display { font-size: clamp(30px, 8.5vw, 44px) !important; }
  h2.display { font-size: clamp(26px, 7.5vw, 38px) !important; }
  h3.display { font-size: clamp(24px, 6vw, 32px); }
  .hero--catalog .display { font-size: clamp(28px, 8.5vw, 42px) !important; }
  .eyebrow { font-size: 10px; flex-wrap: wrap; }

  /* Text blocks never exceed the viewport */
  .lead, .story-copy p, .press-quote, .hero-storefront figcaption,
  .visit-block p, .foot p.small { max-width: 100%; }
  .lead { font-size: 16px; }

  /* Single-column the grids that were still multi-column */
  .cats { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .hero--catalog .hero-strip { grid-template-columns: 1fr 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr 1fr; }

  /* Hero action buttons stack and fit full width */
  .hero-actions,
  .hero--catalog .hero-top-right > div:last-child {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { justify-content: center; white-space: normal; }

  /* Section padding a touch tighter on phones */
  .section { padding: 56px 0; }
  .hero--catalog { padding-top: 8px; }

  /* Right-aligned header text reads better left-aligned when stacked */
  .head-right, .head-right .lead { align-items: flex-start; text-align: left; }
  .head-logo, .head-mascot { align-self: flex-start; }

  /* Hero meta row wraps cleanly */
  .hero-meta { gap: 16px 24px; }
}

