:root {
  --bg: #f5f1ea;
  --paper: #faf8f3;
  --ink: #111108;
  --muted: #7a7268;
  --accent: #0A39D7;   /* brand cobalt blue */
  --accent-ink: #ffffff;
  --lime: #DEFF1A;     /* brand neon lime */
  --pink: #F8C1F5;     /* brand lavender pink */
  --warm: #c97a3d;
  --border: #e5ddd0;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

.draft-banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 6px 12px;
  letter-spacing: 0.04em;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

header.site.scrolled {
  background: rgba(245, 241, 234, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

/* Logo: white when transparent, original when scrolled */
.wordmark img {
  filter: brightness(0) invert(1);
  transition: filter 0.35s;
}
header.site.scrolled .wordmark img {
  filter: none;
}

/* Nav links: white when transparent, dark when scrolled */
nav.links a:not(.btn) {
  color: rgba(255,255,255,0.85);
  transition: color 0.35s;
}
header.site.scrolled nav.links a:not(.btn) {
  color: var(--ink);
}

/* On pages without a hero (no dark bg), start scrolled */
body.no-hero header.site {
  background: rgba(245, 241, 234, 0.96);
  border-bottom: 1px solid var(--border);
}
body.no-hero .wordmark img { filter: none; }
body.no-hero nav.links a:not(.btn) { color: var(--ink); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.wordmark img {
  height: 44px;
  width: auto;
  display: block;
}

nav.links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 600;
  transition: background 0.18s, transform 0.18s;
}
.btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn.outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

main { padding-bottom: 60px; }

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

.hero {
  padding: 100px 24px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 30px;
}

.placeholder {
  border: 1px dashed var(--border);
  background: var(--paper);
  padding: 18px 22px;
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
  border-radius: 10px;
}
.placeholder strong { color: var(--ink); }

/* ---------- Spotlight pair (sometimesalways-style featured duo) ---------- */

.spotlight {
  padding: 64px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) {
  .spotlight-grid { grid-template-columns: 1fr; }
}
.spotlight-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.spotlight-card .tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.spotlight-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.spotlight-card p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 15px;
}
.spotlight-card .swatch {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--warm), transparent 70%);
  opacity: 0.35;
}

/* ---------- Sections ---------- */

section {
  padding: 70px 24px;
}

section.alt { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* h2.section-title — font-family, size, weight defined in Typography block above */

p.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 44px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

@media (max-width: 800px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  /* Sticky header on mobile: logo row + compact links row */
  header.site {
    position: sticky;
    background: rgba(245, 241, 234, 0.96) !important;
    border-bottom: 1px solid var(--border) !important;
    backdrop-filter: blur(8px);
  }
  .wordmark img { filter: none !important; }
  .nav-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  nav.links {
    font-size: 11px;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
  }
  nav.links .btn { padding: 7px 12px; font-size: 11px; }
  nav.links a:not(.btn) { color: var(--ink) !important; }
  /* Hero needs normal padding since header is now in flow */
  .hero { padding-top: 60px; }
  .hero-full { padding-top: 60px; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -16px rgba(24, 20, 15, 0.25);
}

.card .origin {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.card .swatch-block {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--warm), #e8b27a 60%, var(--bg));
  filter: saturate(1.1);
}

.card h3 {
  margin: 0 0 10px;
  /* font-size + weight defined in Typography block */
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
}

.cta-band {
  text-align: center;
  padding: 80px 24px;
  background: var(--ink);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8d2c6; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn { background: var(--accent); }
.cta-band .btn:hover { background: #fff; color: var(--ink); }

footer.site {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--accent); }

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 24px 24px 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.producer-hero {
  padding: 70px 24px 44px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.producer-hero .origin-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
/* .producer-hero h1 — font-family, size, weight in Typography block */
.producer-hero h1 { margin: 0 0 18px; }
.producer-hero p.lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted);
}

.producer-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 54px 24px;
}
.producer-body h2 {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 700;
}
.producer-body ul {
  padding-left: 20px;
}
.producer-body li { margin-bottom: 8px; }

.order-band {
  text-align: center;
  padding: 54px 24px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
/* .order-band h2 — font-family, size, weight in Typography block */
.order-band p { color: var(--muted); margin: 0 0 22px; }

/* ---------- Typography: bold grotesque + monospace ---------- */

/*
  Display level (headings):  Space Grotesk 700 — bold, wide, impactful
  Eyebrow / labels / captions: Space Mono — technical, ALL CAPS
  Body copy:                   Inter — clean, functional
  Manifesto only:              Cormorant Garamond — expressive, kept intentionally
*/

/* All major display headings → Space Grotesk */
.hero-full h1,
h2.section-title,
.order-band h2,
.cta-band h2 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 300;
}

/* Hero — large, tight, impactful */
.hero-full h1 {
  font-size: 108px;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

/* Section titles */
h2.section-title {
  font-size: 52px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 10px;
  text-align: center;
}

/* Order/CTA band h2 */
.order-band h2 {
  font-size: 38px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.cta-band h2 {
  font-size: 48px;
  letter-spacing: -0.03em;
}

/* Producer page hero h1 — Space Grotesk, very large */
.producer-hero h1 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 88px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0 0 18px;
}

/* Card heading */
.card h3 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Eyebrows, labels, captions → Space Mono ALL CAPS */
.hero-eyebrow,
.editorial-label,
.origin,
.manifesto-for,
.section-sub,
.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Editorial paragraph */
.editorial-text p:first-child {
  line-height: 1.65;
  color: var(--ink);
}

/* ---------- Full-bleed dark hero ---------- */

.hero-full {
  background: var(--ink);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,20,15,0.62) 0%, rgba(24,20,15,0.72) 100%);
  pointer-events: none;
}
.hero-full-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 11px;
  color: var(--lime);
  margin: 0 0 20px;
}
/* .hero-full h1 — font-family, size, weight in Typography block */
.hero-full h1 {
  color: #fff;
  margin: 0 0 26px;
}
.hero-full .hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
@media (max-width: 620px) {
  .hero-full h1 { font-size: 56px; letter-spacing: -0.03em; }
  .hero-full { min-height: 80vh; }
  h2.section-title { font-size: 36px; }
  .producer-hero h1 { font-size: 60px; }
}

/* ---------- Marquee ---------- */

.marquee-band {
  overflow: hidden;
  background: var(--lime);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee-track span { padding: 0 20px; }
.marquee-track .dot { opacity: 0.35; padding: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Manifesto ---------- */

.manifesto {
  background: var(--accent);
  padding: 110px 24px;
  text-align: center;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-smiley {
  display: block;
  margin: 0 auto 32px;
  width: 62px;
  height: 62px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.manifesto-for {
  font-size: 11px;
  color: var(--lime);
  margin: 0 0 24px;
}
.manifesto-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--pink);
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 680px) {
  .manifesto-text { font-size: 38px; }
  .manifesto { padding: 80px 24px; }
}

/* ---------- Editorial about section ---------- */

.editorial {
  padding: 100px 24px;
  border-bottom: 1px solid var(--border);
}
.editorial-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 700px) {
  .editorial-inner { grid-template-columns: 1fr; gap: 20px; }
  .editorial-label { position: static; }
}
.editorial-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 8px;
  position: sticky;
  top: 100px;
}
.editorial-text p {
  font-size: 21px;
  line-height: 1.68;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 400;
}
.editorial-text p:last-of-type { margin-bottom: 32px; }

/* ---------- Card images ---------- */

.card-img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--warm), #e8b27a 60%, var(--bg));
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
}
.card:hover .card-img img {
  filter: grayscale(60%) contrast(1.05) brightness(0.95);
}
.card:hover .card-img img { transform: scale(1.04); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
