/* =====================================================================
   CULT OF NONE — design system
   Dark occult-brutalist. Sharp edges, no radii, no startup gradients.
   ===================================================================== */

:root {
  /* --- core palette (warm candlelit coven) --- */
  --void:    #0c0a09;   /* warm near-black background */
  --void-2:  #141110;   /* raised surfaces */
  --void-3:  #1d1916;   /* hairline borders / dividers */
  --bone:    #efe7d6;   /* warm bone text */
  --bone-dim:#9a8f7d;   /* muted warm bone */
  --gold:    #c9a86a;   /* PRIMARY mystical accent — candlelit gold */
  --gold-hi: #e3c489;   /* gold, hover/glow */
  --ash:     #7c7a83;   /* dim muted grey — background sigil ink */
  --blood:   #9e1f2d;   /* secondary accent — warm garnet/wine */
  --blood-hi:#c33042;   /* garnet, hover/active */

  /* --- type --- */
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body:    "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-ritual:  "UnifrakturCook", serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;

  /* --- spacing / sizing --- */
  --bar-h: 34px;
  --header-h: 64px;
  --maxw: 1280px;
  --gutter: clamp(16px, 5vw, 48px);
}

/* =========================== reset =========================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain overlay — SVG fractal noise, fixed, non-interactive */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: var(--blood); color: var(--bone); }

/* =========================== announce bar =========================== */
.announce {
  height: var(--bar-h);
  background: var(--gold);
  color: var(--void);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 60;
}
.announce__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-left: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  animation: marquee 22s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================== header =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--void-3);
}
.header__mark { display: flex; align-items: center; gap: 0.6rem; color: var(--bone); transition: color .25s; }
.header__mark:hover { color: var(--blood-hi); }
.header__wordmark {
  position: relative;
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  display: inline-block;
}
/* the signature gold double-hairline strike — the brand logo (variant 13) */
.header__strike {
  position: absolute;
  left: -3%;
  width: 106%;
  top: 52%;
  height: 3px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-1deg);
  opacity: 0.85;
  pointer-events: none;
}
@media (max-width: 760px) { .header__wordmark { font-size: 1.05rem; } }
.header__nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
.header__nav a,
.header__cart {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--bone);
  position: relative;
  transition: color .25s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.header__nav a:hover { color: var(--bone); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__cart:hover { color: var(--blood-hi); }

/* =========================== buttons =========================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border: 1px solid var(--bone);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: background .16s cubic-bezier(.2,.85,.2,1),
              color .16s, border-color .16s, letter-spacing .16s,
              box-shadow .16s, transform .16s;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--void);
  letter-spacing: 0.4em;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--gold), 0 0 28px rgba(201,168,106,0.5);
  outline: none;
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

/* =========================== hero =========================== */
.hero {
  min-height: calc(100svh - var(--bar-h) - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2.5rem var(--gutter) 5rem;
  overflow: hidden;
  /* oxblood core glow + faint violet nebula dust, deep near-black edges */
  background:
    radial-gradient(ellipse 64% 56% at 50% 45%, rgba(150,34,42,0.20), transparent 60%),
    radial-gradient(ellipse 46% 40% at 28% 28%, rgba(96,64,128,0.10), transparent 64%),
    radial-gradient(ellipse 52% 46% at 74% 66%, rgba(72,44,96,0.10), transparent 64%),
    radial-gradient(ellipse 120% 100% at 50% 48%, transparent 40%, #050306 100%),
    var(--void);
}

/* drifting misty-grey fog */
.hero__fog {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 32% at 36% 40%, rgba(150,40,46,0.06), transparent 62%),
    radial-gradient(ellipse 44% 34% at 68% 60%, rgba(96,60,124,0.07), transparent 62%);
  filter: blur(46px);
  animation: fog-drift 28s ease-in-out infinite alternate;
}
@keyframes fog-drift {
  from { transform: translate(-2%, -1%) scale(1); }
  to   { transform: translate(3%, 2%) scale(1.08); }
}

/* galactic dust — faint starfield */
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}
.hero__stars svg { width: 100%; height: 100%; display: block; }
.hero__stars .tw { animation: twinkle 5s ease-in-out infinite; }
@keyframes twinkle {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.9; }
}

/* faded grimoire tableau (background layer) — sigils kept warm + alive */
.hero__tableau {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  color: var(--ash);
}
.hero__tableau svg {
  /* square 1000×1000 — cap by HEIGHT so the corner runes never clip on
     short laptop viewports (this is what made 67% zoom "fit") */
  width: min(1000px, 96vw, 76svh);
  height: auto;
  opacity: 0.32;
  filter: drop-shadow(0 0 4px rgba(160,160,176,0.12));
}

/* alchemical hands — one in each corner of the hero */
.hero__hand {
  position: absolute;
  z-index: 1;
  width: clamp(50px, 7vw, 92px);
  height: auto;
  color: var(--ash);
  opacity: 0.2;
  pointer-events: none;
}
.hero__hand--tl { top: 10px;    left: 10px; }
.hero__hand--tr { top: 10px;    right: 10px;  transform: scaleX(-1); }
.hero__hand--bl { bottom: 10px; left: 10px;   transform: scaleY(-1); }
.hero__hand--br { bottom: 10px; right: 10px;  transform: scale(-1, -1); }

/* ===== edge decorations spread to the real screen edges (not the cramped square) ===== */
/* inverted sun-triangles, out on the flanks */
.hero__tri {
  position: absolute;
  z-index: 0;
  width: clamp(58px, 7vw, 104px);
  height: auto;
  color: var(--ash);
  opacity: 0.24;
  pointer-events: none;
}
.hero__tri--l { top: 31%; left: 26%; }
.hero__tri--r { top: 31%; right: 26%; }

/* runes — Algiz top corners, Fehu bottom corners, inboard of the hands */
.hero__rune {
  position: absolute;
  z-index: 0;
  width: clamp(20px, 2.3vw, 32px);
  height: auto;
  color: var(--ash);
  opacity: 0.3;
  pointer-events: none;
}
.hero__rune--tl { top: 11%;    left: 27%; }
.hero__rune--tr { top: 11%;    right: 27%; }
.hero__rune--bl { bottom: 11%; left: 27%; }
.hero__rune--br { bottom: 11%; right: 27%; }

/* real grimoire sigils — Clauneck on the left flank, Bune on the right */
.hero__sigil {
  position: absolute;
  z-index: 0;
  height: auto;
  opacity: 0.17;
  pointer-events: none;
  animation: sigil-breathe 9s ease-in-out infinite;
}
.hero__sigil--l { bottom: 23%; left: 20%;  width: clamp(84px, 10vw, 156px); }
.hero__sigil--r { bottom: 25%; right: 18%; width: clamp(56px, 6.2vw, 96px); }

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* the focal Agares sigil — lifted a touch to seat the Lucifer seal beneath it */
.agares { display: flex; justify-content: center; color: #948f9c; margin-top: -1.4rem; }
.agares svg {
  width: auto;
  height: clamp(180px, 32vh, 320px);
  opacity: 0.86;
  animation: sigil-breathe 7s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(160,160,176,0.16));
}

/* the Sigil of Lucifer — actual seal image, seated between Agares and the wordmark */
.hero__seal { display: flex; justify-content: center; margin-top: -0.7rem; }
.hero__seal img {
  width: auto;
  height: clamp(82px, 14vh, 142px);
  /* pre-processed to transparent line-art (tint baked in) — just fade it */
  opacity: 0.4;
  animation: sigil-breathe 8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(160,160,176,0.12));
}
@keyframes sigil-breathe {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.72; }
}

.logo__word {
  position: relative;
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--bone);
}
/* delicate double-hairline gold strike — the word is annulled, not slashed */
.logo__strike {
  position: absolute;
  left: -4%;
  width: 108%;
  top: 50%;
  height: 5px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-0.8deg);
  transform-origin: center;
  opacity: 0.8;
  pointer-events: none;
}

.hero__tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.45rem, 3.8vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--gold);
}

.hero__cta { margin-top: 1rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--bone-dim);
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--bone-dim), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* =========================== glitch (CSS-only, tasteful) =========================== */
.glitch { position: relative; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* hidden until the flicker animation fires */
  opacity: 0;
}
.glitch::before { color: var(--blood-hi); }
.glitch::after  { color: var(--gold-hi); }

/* main wordmark flickers occasionally like a failing sign */
.glitch { animation: flicker 9s steps(1) infinite; }
@keyframes flicker {
  0%, 96%, 100% { opacity: 1; }
  96.5% { opacity: 0.35; }
  97%   { opacity: 1; }
  97.5% { opacity: 0.55; }
  98%   { opacity: 1; }
}
/* chromatic split fires in the same window */
.glitch::before { animation: glitch-r 9s steps(1) infinite; }
.glitch::after  { animation: glitch-l 9s steps(1) infinite; }
@keyframes glitch-r {
  0%, 95.5%, 100% { opacity: 0; transform: translate(0,0); }
  96%   { opacity: 0.8; transform: translate(3px,-2px); clip-path: inset(0 0 62% 0); }
  97.5% { opacity: 0.8; transform: translate(-2px,1px); clip-path: inset(40% 0 20% 0); }
  98.5% { opacity: 0; transform: translate(0,0); }
}
@keyframes glitch-l {
  0%, 95.5%, 100% { opacity: 0; transform: translate(0,0); }
  96%   { opacity: 0.7; transform: translate(-3px,2px); clip-path: inset(55% 0 0 0); }
  97.5% { opacity: 0.7; transform: translate(2px,-1px); clip-path: inset(10% 0 55% 0); }
  98.5% { opacity: 0; transform: translate(0,0); }
}

/* reduced motion: kill all animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================== sections (shared) =========================== */
.section { padding: clamp(4rem, 9vw, 8rem) var(--gutter); position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; }
.container--narrow { max-width: 720px; text-align: center; }

.section__head { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.divider-ic {
  width: clamp(48px, 7vw, 70px);
  height: auto;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section__title {
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--bone);
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================== featured drops =========================== */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
}
.product__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse 80% 70% at 50% 38%, rgba(201,168,106,0.07), transparent 70%),
    var(--void-2);
  border: 1px solid var(--void-3);
  overflow: hidden;
  color: var(--gold);
}
.product__art {
  width: 46%;
  height: 46%;
  opacity: 0.8;
  transition: transform .4s ease, opacity .4s ease;
}
.product__media:hover { border-color: var(--gold); }
.product__media:hover .product__art { transform: scale(1.08) translateY(-4px); opacity: 1; }
.product__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 3px 8px;
}
.product__add {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.product__media:hover .product__add,
.product__media:focus-within .product__add { transform: translateY(0); }
.product__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0.2rem 0;
}
.product__name {
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.product__price { font-family: var(--font-body); font-size: 0.95rem; color: var(--gold); white-space: nowrap; }

/* =========================== manifesto =========================== */
.section--manifesto {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,106,0.08), transparent 70%),
    var(--void);
  border-top: 1px solid var(--void-3);
  border-bottom: 1px solid var(--void-3);
}
.section--manifesto .divider-ic { width: clamp(40px, 6vw, 58px); }
.manifesto__title {
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.manifesto__body {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.7;
  color: #cfc6b4;
  margin: 0 auto;
}
.manifesto__sign {
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================== category teasers =========================== */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 300px;
  padding: 2rem;
  background:
    radial-gradient(ellipse 90% 80% at 50% 30%, rgba(201,168,106,0.06), transparent 70%),
    var(--void-2);
  border: 1px solid var(--void-3);
  color: var(--bone);
  transition: border-color .3s ease, transform .3s ease;
}
.cat:hover { border-color: var(--gold); transform: translateY(-4px); }
.cat__art { width: 72px; height: 72px; color: var(--gold); opacity: 0.85; transition: transform .4s ease; }
.cat:hover .cat__art { transform: scale(1.1) rotate(-3deg); }
.cat__name { font-family: var(--font-elegant); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.03em; }
.cat__enter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.cat:hover .cat__enter { opacity: 1; transform: none; }

/* =========================== join the order =========================== */
.section--order {
  background:
    radial-gradient(ellipse 70% 90% at 50% 30%, rgba(201,168,106,0.1), transparent 65%),
    var(--void);
  border-top: 1px solid var(--void-3);
}
.order__sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: var(--bone-dim);
  margin: 1.2rem auto 2rem;
  max-width: 520px;
}
.order__form {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.order__input {
  flex: 1 1 240px;
  background: transparent;
  border: 1px solid var(--void-3);
  border-bottom-color: var(--gold);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.1rem;
}
.order__input::placeholder { color: var(--bone-dim); font-style: italic; }
.order__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.order__note {
  margin-top: 1.4rem;
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

/* =========================== footer =========================== */
.footer { border-top: 1px solid var(--void-3); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; background: #080605; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.footer__mark { display: inline-flex; align-items: center; color: var(--bone); }
.footer__wordmark {
  position: relative;
  display: inline-block;
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.footer__strike {
  position: absolute;
  left: -3%;
  width: 106%;
  top: 52%;
  height: 3px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-1deg);
  opacity: 0.85;
  pointer-events: none;
}
.footer__tag { font-family: var(--font-elegant); font-style: italic; color: var(--bone-dim); margin: 0.8rem 0 1.2rem; }
.footer__socials { display: flex; gap: 0.9rem; }
.footer__socials a { color: var(--bone-dim); transition: color .25s ease; }
.footer__socials a:hover { color: var(--gold); }
.footer__socials svg { width: 22px; height: 22px; display: block; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer__col a { font-family: var(--font-body); font-weight: 300; font-size: 0.92rem; color: var(--bone-dim); transition: color .25s ease; width: fit-content; }
.footer__col a:hover { color: var(--bone); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--void-3);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
}

/* =========================== responsive =========================== */
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .header__nav { gap: 1rem; }
  .header__nav a, .header__cart { font-size: 0.68rem; letter-spacing: 0.12em; }
  .header__cart { display: none; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product__name { font-size: 1rem; }
  .footer__grid { grid-template-columns: 1fr; }
}
