/* =========================================================
   hotemin.shop — Hot Emin Summer
   Aesthetic: black + AVAX red + Mediterranean gold
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --line: #2a2a2a;
  --line-soft: #1f1f1f;
  --ink: #f6f5f1;
  --ink-2: #c7c5be;
  --muted: #8a8780;
  --red: #e84142;        /* AVAX red */
  --red-deep: #c2282a;
  --gold: #f5b042;
  --sun: #ffd96a;
  --cyan: #00d4ff;
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");

  --font-display: 'Anton', 'Bebas Neue', 'Impact', system-ui, sans-serif;
  --font-italic: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 4px;

  --t-fast: 120ms cubic-bezier(.2,.7,.2,1);
  --t: 240ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
*::selection { background: var(--red); color: #fff; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232,65,66,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(245,176,66,0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  background-size: 160px 160px;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(56px, 12vw, 200px); }
h2 { font-size: clamp(40px, 6vw, 92px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

.italic, em.italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--sun);
}

.mono { font-family: var(--font-mono); letter-spacing: .02em; }
.tiny { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .04em;
}
.brand .tri {
  width: 18px; height: 18px;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 8px rgba(232,65,66,.5));
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav-links a { transition: color var(--t-fast); }
.nav-links a:hover { color: var(--red); }
.nav-cart {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav-cart:hover { border-color: var(--red); background: rgba(232,65,66,0.08); }
.nav-cart .count {
  background: var(--red); color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 18px; text-align: center;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .2em;
  overflow: hidden;
  border-bottom: 1px solid #000;
}
.ticker-track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  width: max-content;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 16px; }
.ticker-track .dot { width: 6px; height: 6px; background: #000; border-radius: 50%; opacity: .7; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 9vw, 140px) 0 clamp(56px, 8vw, 120px);
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  min-height: min(860px, calc(100vh - 104px));
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.9) 33%, rgba(10,10,10,0.18) 66%, rgba(10,10,10,0.38) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 32%),
    url("../img/campaign/hero-emin-inspired.png") center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
  z-index: -1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(232,65,66,0.6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,65,66,0.6); }
  100% { box-shadow: 0 0 0 16px rgba(232,65,66,0); }
}
.hero h1 {
  background: linear-gradient(180deg, #fff 0%, #c7c5be 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .red { color: var(--red); -webkit-text-fill-color: var(--red); }
.hero h1 .tri-inline {
  display: inline-block;
  width: .76em; height: .76em;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  vertical-align: -8%;
  margin: 0 .08em;
  filter: drop-shadow(0 0 24px rgba(232,65,66,.6));
}
.hero-sub {
  max-width: 640px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
}
.hero-cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 620px;
}
.hero-proof span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid rgba(246,245,241,0.2);
  background: rgba(10,10,10,0.52);
  backdrop-filter: blur(10px);
  padding: 8px 10px;
  border-radius: 999px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .18em;
  border-radius: var(--radius);
  background: var(--ink); color: #000;
  border: 1px solid var(--ink);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn .arr { font-family: var(--font-mono); font-size: 16px; transition: transform var(--t-fast); }
.btn:hover .arr { transform: translateX(4px); }

.hero-side {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero-side .ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.hero-side .ring:nth-child(2) { inset: 12%; }
.hero-side .ring:nth-child(3) { inset: 24%; border-color: var(--red); opacity: .5; }
.hero-side .big-tri {
  width: 56%;
  aspect-ratio: 1.15;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 60px rgba(232,65,66,.55));
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.38) 0%, rgba(10,10,10,0.92) 42%, var(--bg) 100%),
      url("../img/campaign/hero-emin-inspired.png") top right 36% / auto 54vh no-repeat;
    padding-top: 48vh;
  }
  .hero-side { display: none; }
}

/* ---------- Section header ---------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  padding: clamp(48px, 8vw, 96px) 0 24px;
  flex-wrap: wrap;
}
.section-head .label {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.section-head h2 .italic { color: var(--sun); }

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  padding-bottom: clamp(48px, 8vw, 96px);
  border-top: 1px solid var(--line-soft);
  margin-top: 24px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
  overflow: hidden;
}
.card:hover { border-color: var(--line); }
.card .image {
  aspect-ratio: 1;
  background: var(--bg-3);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.card .image::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,65,66,0.08), transparent 60%);
  pointer-events: none;
}
.card svg.art { width: 70%; height: 70%; }
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.card:hover .product-photo { transform: scale(1.035); }
.card .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
}
.card .tagline {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px;
  color: var(--sun);
}
.card .row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.card .price {
  font-family: var(--font-mono);
  font-size: 16px;
}
.card .price::before { content: "$"; color: var(--red); }
.card .add {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .18em;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--ink); color: #000;
  border: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.card .add:hover { background: var(--red); color: #fff; }

.card .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 8px;
  background: var(--red); color: #fff;
  border-radius: 2px;
}
.card .badge.alt { background: var(--ink); color: #000; }
.card .badge.limited { background: var(--gold); color: #000; }

/* ---------- Manifesto / band ---------- */
.band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(64px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.band .quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.01em;
  max-width: 1100px;
}
.band .quote em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--sun);
}
.band .attrib {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 32px;
}

/* ---------- Drop grid (3-column feature) ---------- */
.drops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.drops .drop {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: border-color var(--t);
}
.drops .drop:hover { border-color: var(--red); }
.drops .drop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: .72;
  transform: scale(1.01);
  transition: transform var(--t), opacity var(--t);
}
.drops .drop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.12) 42%, rgba(10,10,10,.9) 100%),
    radial-gradient(circle at 70% 20%, rgba(232,65,66,.26), transparent 42%);
}
.drops .drop:hover::before { transform: scale(1.055); opacity: .9; }
.drops .drop > * {
  position: relative;
  z-index: 1;
}
.drops .drop-apparel::before { background-image: url("../img/campaign/category-apparel.png"); }
.drops .drop-summer::before { background-image: url("../img/campaign/category-summer.png"); }
.drops .drop-jewelry::before { background-image: url("../img/campaign/category-jewelry.png"); }
.drops .drop .num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em; color: rgba(246,245,241,.72);
}
.drops .drop h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: .95;
  max-width: 90%;
}
.drops .drop h3 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--sun);
}
.drops .drop p { color: var(--ink-2); font-size: 14px; line-height: 1.55; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.drops .drop .pill {
  display: inline-flex; align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .drops { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line-soft);
  background: #050505;
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 400;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--ink-2); transition: color var(--t-fast); }
.foot a:hover { color: var(--red); }
.foot-brand {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .9;
  letter-spacing: .01em;
}
.foot-brand em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--sun);
  display: block;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { font-size: 40px; }
}

/* ---------- Cart drawer ---------- */
.drawer {
  position: fixed; inset: 0;
  z-index: 100;
  pointer-events: none;
}
.drawer.open { pointer-events: auto; }
.drawer-back {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.drawer.open .drawer-back { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 96vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--t);
  display: flex; flex-direction: column;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  padding: 20px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-head h3 { font-size: 24px; }
.drawer-close {
  background: transparent;
  border: none;
  color: var(--ink-2);
  font-size: 22px;
  padding: 4px 10px;
}
.drawer-close:hover { color: var(--red); }
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.drawer-empty {
  text-align: center;
  color: var(--muted);
  padding: 64px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.line-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.line-item .thumb {
  width: 64px; height: 64px;
  background: var(--bg-3);
  display: grid; place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.line-item .thumb svg { width: 70%; height: 70%; }
.thumb-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.line-item .li-name { font-family: var(--font-display); font-size: 15px; letter-spacing: .02em; }
.line-item .li-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .1em; }
.line-item .li-price { font-family: var(--font-mono); font-size: 13px; }
.line-item .li-controls {
  display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
}
.qty-btn {
  width: 22px; height: 22px;
  background: var(--bg-3);
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: grid; place-items: center;
  padding: 0;
}
.qty-btn:hover { color: var(--red); border-color: var(--red); }
.li-qty { font-family: var(--font-mono); font-size: 12px; min-width: 16px; text-align: center; }
.li-remove {
  background: transparent; border: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-left: 8px;
}
.li-remove:hover { color: var(--red); }

.drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.totals {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.totals.grand {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 12px 0 18px;
  letter-spacing: .03em;
}
.totals.grand span:last-child { color: var(--red); }
.drawer-foot .btn { width: 100%; justify-content: center; }
.drawer-foot .pay-options {
  display: flex; gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pay-options .pay {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-2);
}

/* ---------- Filter chips ---------- */
.chips {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.chip:hover { color: var(--ink); border-color: var(--ink-2); }
.chip.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------- About page ---------- */
.about-hero {
  padding: clamp(48px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(10,10,10,.96), rgba(10,10,10,.82) 54%, rgba(10,10,10,.12)),
    url("../img/campaign/hero-still-life.png") center right / cover no-repeat;
}
.about-hero h1 { font-size: clamp(56px, 11vw, 160px); }
.shop-hero {
  padding: clamp(48px, 8vw, 96px) 0 0;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(10,10,10,.22), var(--bg) 92%),
    radial-gradient(900px 420px at 78% 10%, rgba(232,65,66,.16), transparent 62%),
    url("../img/campaign/hero-still-life.png") top right / min(54vw, 840px) auto no-repeat;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 24px 0 64px;
}
.about-cell {
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
}
.about-cell h3 { color: var(--ink); margin-bottom: 14px; }
.about-cell p { color: var(--ink-2); line-height: 1.6; }
.about-cell .num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 12px;
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--red); color: #fff;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .18em;
  padding: 14px 22px;
  border-radius: var(--radius);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  box-shadow: 0 12px 40px rgba(232,65,66,.35);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive nav ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  h1 { font-size: clamp(48px, 14vw, 96px); }
  .hero-sub { font-size: 16px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- Utility ---------- */
.tri-mark {
  display: inline-block;
  width: .68em; height: .68em;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  vertical-align: -8%;
  margin: 0 .12em;
}
.center { text-align: center; }
.muted { color: var(--muted); }
