/* ==========================================================================
   mummaTee — Clothing for the post-breakthrough being.
   Editorial / streetwear / sacred-geometric.
   ========================================================================== */

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

:root {
  /* base — warm charcoal / faded bone */
  --bg:           #0d0c08;
  --bg-soft:      #181613;
  --bg-card:      #1a1814;
  --bone:         #ece1c6;
  --bone-soft:    #d6c9a8;
  --paper:        #f5ebd2;

  /* earth */
  --sand:         #c9b88c;
  --olive:        #5e5d2e;
  --olive-soft:   #797a40;
  --clay:         #b85e2c;
  --mushroom:     #8a7456;
  --cacao:        #3b2317;
  --forest:       #1d3022;
  --forest-deep:  #0f1d12;

  /* sharp accents */
  --gold:         #c9a14e;
  --gold-deep:    #8e6c2c;
  --ember:        #e6611f;
  --emerald-aya:  #2b6e4a;
  --indigo:       #4a44d6;
  --neon-muted:   #a8d05a;

  /* lines */
  --line:         rgba(236,225,198,0.14);
  --line-soft:    rgba(236,225,198,0.07);
  --line-strong:  rgba(236,225,198,0.28);

  /* type — editorial serif + characterful sans + utilitarian mono */
  --serif:  'Newsreader', 'EB Garamond', Georgia, serif;
  --sans:   'Bricolage Grotesque', 'IBM Plex Sans', -apple-system, sans-serif;
  --mono:   'DM Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* shadow */
  --shadow-1: 0 1px 2px rgba(0,0,0,.4), 0 12px 28px -12px rgba(0,0,0,.5);
  --shadow-2: 0 30px 80px -20px rgba(0,0,0,.7);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: var(--bg); }
body {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: 'opsz' 16;
  font-size: 17px;
  line-height: 1.65;
  color: var(--bone);
  background: var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* film-grain overlay (analogue) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: overlay;
  opacity: .55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grain 1.6s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0) }
  20%  { transform: translate(-8%, -3%) }
  40%  { transform: translate(5%, 2%) }
  60%  { transform: translate(-2%, 6%) }
  80%  { transform: translate(3%, -7%) }
  100% { transform: translate(0, 0) }
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--gold); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--ember); color: var(--bg); }

/* ----- Type --------------------------------------------------------------- */

h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 280;
  font-variation-settings: 'opsz' 144;
  color: var(--paper);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8.5vw, 8rem); font-weight: 200; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }

.display-sans {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variation-settings: 'wdth' 80, 'wght' 700;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.eyebrow::before {
  content: '✺';
  margin-right: 12px;
  color: var(--ember);
  font-size: 13px;
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.55;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.pull {
  font-family: var(--serif);
  font-weight: 280;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--paper);
  position: relative;
}
.pull::before {
  content: '"';
  position: absolute;
  left: -0.45em; top: -0.2em;
  font-size: 2.2em;
  color: var(--ember);
  line-height: 1;
}

.small { font-family: var(--mono); font-size: 12px; line-height: 1.5; color: var(--bone-soft); letter-spacing: .04em; }
.tabular { font-variant-numeric: tabular-nums; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mushroom);
}

/* ----- Layout primitives -------------------------------------------------- */

.container       { max-width: 1320px; margin: 0 auto; padding: 0 36px; }
.container-narrow{ max-width: 880px;  margin: 0 auto; padding: 0 36px; }
.container-wide  { max-width: 1560px; margin: 0 auto; padding: 0 36px; }

@media (max-width: 720px) {
  .container, .container-narrow, .container-wide { padding: 0 22px; }
}

section { padding: clamp(80px, 9vw, 160px) 0; position: relative; }
.s-tight { padding: clamp(50px, 6vw, 90px) 0; }

/* ----- Header ------------------------------------------------------------ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,12,8,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 320;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-glyph {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
}
.brand em { font-style: italic; color: var(--gold); }
.brand-tagline {
  display: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mushroom);
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.site-header.scrolled .brand-tagline { display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-cta {
  font-family: var(--mono);
  padding: 12px 22px;
  border: 1px solid var(--bone);
  border-radius: 999px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  background: transparent;
  color: var(--paper);
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.nav-cta:hover { background: var(--ember); color: var(--bg); border-color: var(--ember); transform: translateY(-1px); }

.nav-toggle { display: none; width: 44px; height: 44px; }
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: var(--bone); margin: 6px auto;
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; left: 22px; right: 22px; top: 80px;
    padding: 28px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow-2);
  }
  .nav.is-open .nav-cta { display: inline-block; align-self: flex-start; margin-top: 14px; }
}

/* ----- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ember); color: var(--bg); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-ghost { border-color: var(--bone); color: var(--bone); }
.btn-ghost:hover { background: var(--bone); color: var(--bg); }
.btn-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  transition: gap .2s ease, border-color .2s ease, color .2s ease;
}
.btn-link::after { content: '→'; }
.btn-link:hover { gap: 18px; border-color: var(--gold); color: var(--paper); }

/* ----- Hero -------------------------------------------------------------- */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  display: flex; align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 80% 30%, rgba(184,94,44,.20), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(43,110,74,.14), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  width: 100%;
}

.hero-copy { padding: 0 0 0 max(36px, calc((100vw - 1320px) / 2 + 36px)); padding-right: 30px; }
.hero-copy h1 {
  margin-top: 32px;
  font-style: italic;
  font-weight: 200;
  letter-spacing: -0.04em;
}
.hero-copy h1 em {
  font-style: normal;
  font-weight: 320;
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
}
.hero-copy h1 .strike {
  display: inline-block;
  position: relative;
  color: var(--bone-soft);
}
.hero-copy h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 4px;
  background: var(--ember);
  transform: rotate(-2deg);
  opacity: .85;
}
.hero-copy .lede { margin-top: 32px; max-width: 50ch; }

.hero-actions { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; gap: 50px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-variation-settings: 'opsz' 144;
  font-size: 22px;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-transform: none;
}

.hero-art {
  position: relative;
  height: clamp(560px, 80vh, 800px);
  margin-right: max(0px, calc((100vw - 1560px) / 2));
}
.hero-art .frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px;
  filter: contrast(1.1) saturate(.85) brightness(0.92);
}
.hero-art .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,12,8,0.6) 100%);
  pointer-events: none;
}

.hero-stamp {
  position: absolute;
  bottom: 50px; left: -50px;
  z-index: 3;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  box-shadow: var(--shadow-1);
  animation: stamp-spin 30s linear infinite;
}
.hero-stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--gold-deep);
  border-radius: 50%;
}
.hero-stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-stamp .core {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 280;
  font-variation-settings: 'opsz' 144;
  font-size: 28px;
  color: var(--gold);
  animation: stamp-spin 30s linear infinite reverse;
  text-align: center;
  line-height: 1;
}
.hero-stamp .core span {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--mushroom);
  margin-top: 4px;
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: 60vh; margin: 0 22px; }
  .hero-copy { padding: 0 22px; }
  .hero-stamp { left: 22px; bottom: -40px; width: 130px; height: 130px; }
  .hero-stamp .core { font-size: 22px; }
}

/* ----- Marquee ------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 50px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 280;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--paper);
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 50px; }
.marquee-track .dot { color: var(--ember); font-size: 1.4em; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----- Manifesto / quotation --------------------------------------------- */
.manifesto-strip {
  background: var(--bg-soft);
  padding: clamp(80px, 8vw, 130px) 0;
}
.manifesto-strip blockquote {
  max-width: 18ch;
  font-family: var(--serif);
  font-weight: 280;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -0.025em;
}
.manifesto-strip blockquote em {
  font-style: normal;
  color: var(--ember);
}
.manifesto-strip .credit {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mushroom);
}

/* ----- The drop / collection ---------------------------------------------- */
.drop {
  background: var(--bg);
}
.drop-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.drop-head h2 {
  max-width: 16ch;
  font-style: italic;
  font-weight: 200;
}
.drop-head h2 em { font-style: normal; font-weight: 320; color: var(--gold); }
.drop-head .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.drop-head .meta strong { color: var(--paper); font-family: var(--serif); font-style: italic; font-weight: 320; font-size: 18px; text-transform: none; letter-spacing: -0.01em; }
@media (max-width: 880px) { .drop-head { grid-template-columns: 1fr; gap: 30px; } }

.drop-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.product {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.product .frame {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--cacao);
}
.product .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter .6s ease;
  filter: contrast(1.05) saturate(.9);
}
.product:hover .frame img { transform: scale(1.04); filter: contrast(1.1) saturate(1); }

.product .lim {
  position: absolute;
  top: 18px; left: 18px;
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border-radius: 1px;
}
.product .lim.sold { background: var(--bg); color: var(--ember); border: 1px solid var(--ember); }
.product .body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.product .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.product h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--paper);
}
.product .desc {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone-soft);
}
.product .row {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
}
.product .price {
  font-family: var(--serif);
  font-weight: 320;
  font-size: 22px;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.product .price small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mushroom);
  margin-left: 8px;
  letter-spacing: 0.16em;
}
.product .arrow { color: var(--gold); transition: transform .25s ease; }
.product:hover .arrow { transform: translateX(6px); }

/* span sizes (12-col) */
.product.col-7 { grid-column: span 7; }
.product.col-5 { grid-column: span 5; }
.product.col-6 { grid-column: span 6; }
.product.col-4 { grid-column: span 4; }
.product.col-12 { grid-column: span 12; }
.product.col-8 { grid-column: span 8; }

@media (max-width: 1080px) {
  .product.col-7, .product.col-5, .product.col-8 { grid-column: span 12; }
  .product.col-6 { grid-column: span 12; }
  .product.col-4 { grid-column: span 6; }
}
@media (max-width: 720px) {
  .product.col-4 { grid-column: span 12; }
}

/* ----- Section divider with sacred-geometry glyph ------------------------ */
.glyph-divider {
  display: grid;
  place-items: center;
  padding: 60px 0;
  position: relative;
}
.glyph-divider::before, .glyph-divider::after {
  content: '';
  position: absolute;
  top: 50%; height: 1px; width: 35%;
  background: var(--line);
}
.glyph-divider::before { left: 0; }
.glyph-divider::after  { right: 0; }
.glyph-divider svg { width: 60px; height: 60px; color: var(--gold); }

/* ----- Editorial split (manifesto / journal ---------------------------- */
.split {
  background: var(--bg);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  filter: contrast(1.05) saturate(.85);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img.right { order: 2; }
.split-body p { margin-top: 20px; font-size: 17px; line-height: 1.75; color: var(--bone); }
.split-body .pull { margin: 36px 0; }
@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-img.right { order: 0; }
}

/* ----- Journal feed ------------------------------------------------------- */
.journal {
  background: var(--bg-soft);
}
.journal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.j {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .35s ease, transform .35s ease;
}
.j:hover { border-color: var(--gold); transform: translateY(-4px); }
.j .frame {
  aspect-ratio: 16/10;
  background: var(--cacao);
  overflow: hidden;
}
.j .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(.85);
  transition: transform 1s ease;
}
.j:hover .frame img { transform: scale(1.04); }
.j .body { padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.j .stamp {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mushroom);
  display: flex; gap: 18px;
}
.j .stamp em { font-style: normal; color: var(--gold); }
.j h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--paper);
}
.j .blurb { font-size: 14px; color: var(--bone-soft); line-height: 1.6; }
.j .more {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 980px) { .journal-list { grid-template-columns: 1fr; } }

/* ----- Tribe / signup ---------------------------------------------------- */
.tribe {
  background:
    radial-gradient(60% 60% at 90% 20%, rgba(230,97,31,.20), transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(43,110,74,.18), transparent 60%),
    var(--bg);
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.tribe-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px; align-items: end;
}
.tribe h2 { max-width: 18ch; font-style: italic; font-weight: 200; }
.tribe h2 em { font-style: normal; font-weight: 320; color: var(--gold); }
.tribe p { color: var(--bone-soft); margin-top: 24px; max-width: 50ch; font-size: 16px; }
.tribe form {
  margin-top: 40px;
  display: flex; gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(13,12,8,0.5);
  overflow: hidden;
  padding: 6px;
}
.tribe input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 16px 22px;
  font: inherit;
  font-family: var(--serif);
  font-style: italic;
  outline: none;
  font-size: 16px;
}
.tribe input::placeholder { color: var(--mushroom); }
.tribe form button {
  font-family: var(--mono);
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--ember);
  color: var(--bg);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.tribe form button:hover { background: var(--gold); }
.tribe-stats {
  display: flex; flex-direction: column; gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.tribe-stats div { padding: 22px 0; border-top: 1px dashed var(--line); }
.tribe-stats div:last-child { border-bottom: 1px dashed var(--line); }
.tribe-stats strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-transform: none;
}
@media (max-width: 880px) { .tribe-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ----- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  padding: 90px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-mark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-mark .wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 280;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: .9;
  letter-spacing: -0.05em;
  color: var(--paper);
  display: block;
}
.footer-mark .wordmark em {
  font-style: normal;
  color: var(--gold);
}
.footer-mark .tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.footer-cols h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--bone); }
.footer-cols a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-cols { grid-template-columns: 1fr; } }

/* ----- Page head (interior pages) ---------------------------------------- */
.page-head {
  padding: 200px 0 90px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 90% 30%, rgba(230,97,31,.15), transparent 60%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 {
  margin-top: 24px;
  font-style: italic;
  font-weight: 200;
  max-width: 16ch;
}
.page-head h1 em {
  font-style: normal;
  font-weight: 320;
  color: var(--gold);
}
.page-head p { margin-top: 32px; max-width: 60ch; font-size: 18px; line-height: 1.7; color: var(--bone); }
.crumbs {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mushroom);
}
.crumbs a { color: var(--mushroom); }
.crumbs a:hover { color: var(--gold); }

/* ----- Manifesto page ---------------------------------------------------- */
.essay {
  padding-top: 80px; padding-bottom: 80px;
}
.essay-body p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--bone);
  max-width: 64ch;
}
.essay-body p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: 4.5em;
  line-height: .9;
  float: left;
  padding-right: 16px;
  padding-top: 4px;
  color: var(--ember);
}
.essay-body h3 {
  margin-top: 50px;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.essay-body .pull { margin: 50px 0; max-width: 30ch; }
.essay-body .figure {
  margin: 50px 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
}
.essay-body .figure img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(.85); }
.essay-body figcaption {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mushroom);
  margin-top: 14px;
}

/* ----- Shop / collection page -------------------------------------------- */
.shop-bar {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-bottom: 50px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone);
  gap: 24px; flex-wrap: wrap;
}
.shop-bar .filters { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-bar .filters button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.shop-bar .filters button:hover, .shop-bar .filters button.is-active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.shop-bar .sort { color: var(--mushroom); }

/* PDP-lite (in journal post page) */
.essay-body blockquote.pull { font-family: var(--serif); font-style: italic; }

/* ----- Reveal ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
