/* WWJD — Homepage editorial layout (companion to refined.css) */

/* ═════════════ HERO ═════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(184,138,58,0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(200,75,46,0.12), transparent 70%);
  pointer-events: none;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 40px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  color: rgba(244,240,232,0.55);
  border-bottom: 1px solid rgba(244,240,232,0.08);
  text-transform: uppercase;
  position: relative; z-index: 3;
}
.hero-meta .left, .hero-meta .right {
  display: flex; gap: 32px; align-items: center;
}
.hero-meta a { color: rgba(244,240,232,0.7); }
.hero-meta a:hover { color: var(--paper); }
.hero-meta .pulse {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Lock the row so longer sub-copy on some slides (e.g. N°04 Islamic
     Heritage) can't make the hero taller than other slides. Combined
     with #hero-shoe's locked height this keeps the page from shifting
     vertically when slides change. */
  min-height: 78vh;
}
.hero-copy {
  padding: 80px 64px 80px 40px;  /* lean text closer to the left edge */
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow-row .line {
  flex: 0 0 48px; height: 1px;
  background: var(--accent);
}
.hero-eyebrow-row .label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: normal;               /* upright by default */
  font-size: clamp(64px, 9.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 0;
}
.hero h1 .accent-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.hero h1 .upright {
  font-style: normal;
  font-weight: 350;
  color: var(--paper);
}
.hero-sub {
  margin-top: 32px;
  font-size: 17px; max-width: 440px;
  color: rgba(244,240,232,0.78);
  line-height: 1.55;
}
.hero-actions {
  display: flex; gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero .btn { border-color: var(--paper); color: var(--paper); }
.hero .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero .btn-primary:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.hero .btn-ghost:hover { background: var(--paper); color: var(--ink); }

.hero-product {
  position: relative;
  height: 100%;
  min-height: 60vh;
  display: flex; align-items: stretch; justify-content: stretch;
  padding: 0;          /* photo column fills its full half — no inset */
  overflow: hidden;
}
.hero-product .stage-bg {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80%; max-width: 600px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(184,138,58,0.22) 0%, rgba(184,138,58,0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Photo container fills the right half of the hero — same height as the
   stage row, full width of the column. Image inside scales to fit. */
#hero-shoe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
}
#hero-shoe img {
  max-width: 90%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  /* Transform-only animation — does NOT change layout (no width/height/margin
     changes), so it can't make the page jump or trigger scroll shifts.
     Final state is straight (no rotation) so the photo sits centered. */
  animation: heroShoeIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s both;
  transform-origin: center center;
}
.hero-product .shoe-svg {
  position: relative; z-index: 2;
  width: 110%; max-width: 700px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  animation: heroShoeIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s both;
  transform-origin: center center;
}
@keyframes heroShoeIn {
  from { opacity: 0; transform: translate3d(0, 16px, 0) scale(0.96); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
.hero-tags {
  position: absolute;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent);
  z-index: 3;
}
.hero-tags.top-right { top: 32px; right: 32px; text-align: right; }
.hero-tags.bot-left { bottom: 32px; left: 32px; }

.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px;
  border-top: 1px solid rgba(244,240,232,0.08);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  color: rgba(244,240,232,0.5);
  position: relative; z-index: 3;
  text-transform: uppercase;
}
.hero-foot .dots {
  display: flex; gap: 8px;
}
.hero-foot .dot {
  width: 24px; height: 2px; background: rgba(244,240,232,0.2);
  border: none; cursor: pointer;
  transition: background 0.25s;
}
.hero-foot .dot.active { background: var(--accent); }
.hero-foot .nav-arrows {
  display: flex; gap: 4px;
}
.hero-foot .nav-arrows button {
  width: 36px; height: 36px;
  background: transparent; border: 1px solid rgba(244,240,232,0.2);
  color: var(--paper);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  font-size: 14px;
}
.hero-foot .nav-arrows button:hover { background: var(--paper); color: var(--ink); }

/* ═════════════ MARQUEE STRIP (under hero) ═════════════ */
.tag-strip {
  background: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.tag-strip-track {
  display: inline-flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tag-strip-track span::before {
  content: '◆'; color: var(--accent); margin-right: 24px; font-style: normal; font-size: 14px; vertical-align: middle;
}

/* ═════════════ MANIFESTO ═════════════ */
.manifesto {
  padding: 160px 40px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 80px;
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}
.manifesto .stamp {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--accent);
  display: inline-block;
}
.manifesto .quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.manifesto .quote em {
  font-style: italic;
  color: var(--accent);
}
.manifesto .sig {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ═════════════ FEATURED EDITORIAL ═════════════ */
.feature {
  background: var(--ink); color: var(--paper);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}
.feature-image {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,138,58,0.15), transparent 70%);
}
.feature-image .shoe-svg {
  position: relative; z-index: 2;
  width: 92%; max-width: 720px;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.55));
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
}
.feature:hover .feature-image .shoe-svg { transform: rotate(-1deg) scale(1.03); }

.feature-meta {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.25em;
  color: rgba(244,240,232,0.45);
  text-transform: uppercase;
}
.feature-meta.tl { top: 32px; left: 32px; }
.feature-meta.tr { top: 32px; right: 32px; text-align: right; }
.feature-meta.bl { bottom: 32px; left: 32px; }
.feature-meta.br { bottom: 32px; right: 32px; text-align: right; }

.feature-copy {
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(244,240,232,0.08);
}
.feature-copy .label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.feature-copy h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 32px;
}
.feature-copy h2 .italic { font-style: italic; font-weight: 300; color: var(--accent); }
.feature-copy p {
  font-size: 17px;
  max-width: 460px;
  color: rgba(244,240,232,0.78);
  margin-bottom: 16px;
  line-height: 1.6;
}
.feature-copy blockquote {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: rgba(244,240,232,0.9);
  line-height: 1.5;
  max-width: 460px;
}
.feature-copy blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}
.feature-copy .actions {
  margin-top: 32px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.feature-copy .btn { border-color: var(--paper); color: var(--paper); }
.feature-copy .btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.feature-copy .btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ═════════════ HERITAGE TILES ═════════════ */
.heritage-section {
  padding: 140px 40px 120px;
  background: var(--paper);
}
.heritage-section .head {
  max-width: 1480px; margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 64px;
}
.heritage-section .head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.heritage-section .head h2 .italic { font-style: italic; color: var(--accent); }
.heritage-section .head p {
  font-size: 16px; color: var(--muted); max-width: 420px;
}
.heritage-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: var(--ink);
}
/* Mosaic spans */
.tile.span-2-1 { grid-column: span 2; }
.tile.span-1-2 { grid-row: span 2; }
.tile.span-2-2 { grid-column: span 2; grid-row: span 2; }
/* Soft cream scrim fading up from the bottom so the label/text always sits
   on a clean, photo-free wash (the shoe reads as grounded on the tile). */
.tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(244,240,232,0.96) 0%, rgba(244,240,232,0.6) 24%, rgba(244,240,232,0) 48%);
  z-index: 2; pointer-events: none;
}
.tile .shoe-stage {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
/* Product photo: lift it off the tile and tilt it so it reads as a shoe,
   not a boxed catalog cutout. (The .shoe-svg rules below cover the
   illustrated fallback when a product has no photo.) */
.tile .shoe-stage img {
  transform: rotate(-3deg) scale(1.06);
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.18));
  transition: transform 0.6s var(--ease);
}
.tile:hover .shoe-stage img { transform: rotate(-2deg) scale(1.12); }
.tile .shoe-stage .shoe-svg {
  width: 80%; max-width: 380px;
  transform: rotate(-4deg) translateY(15%);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
  transition: transform 0.7s var(--ease);
}
.tile:hover .shoe-stage .shoe-svg {
  transform: rotate(-3deg) translateY(10%) scale(1.05);
}
.tile.span-2-2 .shoe-stage .shoe-svg { width: 70%; }
.tile .info {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  z-index: 3;
}
.tile .info .num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 6px;
}
.tile .info h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 24px;
  line-height: 1; letter-spacing: -0.015em;
  color: inherit;
}
.tile.span-2-2 .info h3,
.tile.span-1-2 .info h3 { font-size: 32px; }
.tile .info .tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-soft);
  opacity: 0.9;
  margin-top: 8px;
}
.tile .arrow {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(19,18,16,0.05);
  border: 1px solid rgba(19,18,16,0.12);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: all 0.3s var(--ease);
}
.tile:hover .arrow { background: var(--ink); color: var(--paper); }
.tile .arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ═════════════ PRODUCT GRID — featured ═════════════ */
.featured-section {
  padding: 140px 40px;
  background: var(--paper-deep);
}
.featured-section .head {
  max-width: 1480px; margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.featured-section h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.featured-section h2 .italic { font-style: italic; color: var(--accent); }
.featured-section .scroll-nav {
  display: flex; gap: 8px;
}
.featured-section .scroll-nav button {
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.25s;
}
.featured-section .scroll-nav button:hover { background: var(--ink); color: var(--paper); }

.featured-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0;
  max-width: 1480px; margin: 0 auto;
}
.featured-scroller::-webkit-scrollbar { display: none; }
.featured-scroller > .card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
  background: var(--paper);
}
.featured-scroller > .card .pic {
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
}
@media (max-width: 1100px) { .featured-scroller > .card { flex: 0 0 calc((100% - 40px) / 3); } }
@media (max-width: 760px) { .featured-scroller > .card { flex: 0 0 calc((100% - 20px) / 2); } }
@media (max-width: 480px) { .featured-scroller > .card { flex: 0 0 85%; } }

/* ═════════════ PRESS / TRUST STRIP ═════════════ */
.press-strip {
  padding: 80px 40px;
  background: var(--ink); color: var(--paper);
  text-align: center;
  border-top: 1px solid rgba(244,240,232,0.08);
}
.press-strip .eyebrow { color: rgba(244,240,232,0.5); }
.press-strip .quotes {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1480px; margin: 40px auto 0;
}
.press-strip .quote {
  text-align: left;
  padding-top: 24px;
  border-top: 1px solid rgba(244,240,232,0.15);
}
.press-strip .quote .src {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.press-strip .quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(244,240,232,0.9);
  letter-spacing: -0.01em;
}

/* ═════════════ STORIES PREVIEW ═════════════ */
.stories-section {
  padding: 140px 40px;
  background: var(--paper);
}
.stories-section .head {
  max-width: 1480px; margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.stories-section h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.stories-section h2 .italic { font-style: italic; color: var(--accent); }
.stories-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.story-tile {
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  background: var(--ink);
  aspect-ratio: 4 / 5;
}
.story-tile.featured {
  aspect-ratio: auto;
  min-height: 100%;
}
.story-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 70%);
  z-index: 2;
}
.story-tile .glyph {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.story-tile .info {
  position: absolute; left: 32px; bottom: 32px; right: 32px;
  z-index: 3;
  color: var(--paper);
}
.story-tile .meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.story-tile h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 24px;
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 8px;
}
.story-tile.featured h3 { font-size: 40px; }
.story-tile p {
  font-size: 14px;
  color: rgba(244,240,232,0.7);
  line-height: 1.5;
}
.story-tile .read-more {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent);
}

/* ═════════════ COMMITMENT GRID ═════════════ */
.commit {
  background: var(--paper-warm);
  padding: 120px 40px;
}
.commit-inner {
  max-width: 1480px; margin: 0 auto;
}
.commit-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.commit-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.commit-head h2 .italic { font-style: italic; color: var(--accent); }
.commit-head p {
  font-size: 17px; color: var(--ink-soft);
  line-height: 1.6;
  max-width: 460px;
}
.commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.commit-item {
  padding: 40px 32px;
  background: var(--paper-warm);
  display: flex; flex-direction: column;
}
.commit-item .n {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}
.commit-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1; margin-bottom: 12px;
}
.commit-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ═════════════ NEWSLETTER / CLOSER ═════════════ */
.closer {
  background: var(--paper);
  padding: 140px 40px;
  text-align: center;
}
.closer h2 {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 1200px; margin: 0 auto;
}
.closer h2 .upright { font-style: normal; font-weight: 400; }
.closer p {
  margin-top: 32px;
  font-size: 16px; color: var(--muted);
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.closer-form {
  display: flex; max-width: 520px;
  margin: 40px auto 0;
  border-bottom: 1px solid var(--ink);
}
.closer-form input {
  flex: 1; padding: 16px 0;
  background: transparent; border: none; outline: none;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.closer-form input::placeholder { color: var(--muted); }
.closer-form button {
  padding: 16px 24px;
  background: transparent; border: none;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  cursor: pointer;
  color: var(--ink);
}
.closer-form button:hover { color: var(--accent); }

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 1100px) {
  .heritage-grid { grid-template-columns: repeat(2, 1fr); }
  .commit-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .press-strip .quotes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-stage { grid-template-columns: 1fr; }
  .hero-product { display: none; }
  .hero-copy { padding: 64px 32px 80px; }
  .feature { grid-template-columns: 1fr; }
  .feature-copy { padding: 56px 32px; border-left: none; border-top: 1px solid rgba(244,240,232,0.08); }
  .manifesto { grid-template-columns: 1fr; gap: 24px; padding: 96px 32px; }
  .heritage-section .head, .commit-head { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-meta { padding: 16px 20px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-meta .left, .hero-meta .right { gap: 16px; }
  .hero-copy { padding: 56px 20px; }
  .hero-foot { padding: 16px 20px; flex-direction: column; gap: 16px; }
  .heritage-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .tile.span-2-1, .tile.span-1-2, .tile.span-2-2 { grid-column: span 1; grid-row: span 1; }
  .commit-grid { grid-template-columns: 1fr; }
  .press-strip .quotes { grid-template-columns: 1fr; }
}
