:root {
  --c-bg: #FAF3E8;
  --c-dark: #1A1A2E;
  --c-terra: #8B2500;
  --c-ochre: #C97B2A;
  --c-vermillion: #D4572A;
  --c-jade: #2D4A3E;
  --c-cream: #FAF3E8;
  --c-text: #1A1A2E;
  --c-muted: #7A6A58;
  --f-display: 'Spectral', Georgia, serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
}
.nav__inner { display: flex; align-items: baseline; gap: 0.5rem; }
.nav__logo { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; color: var(--c-dark); letter-spacing: 0.01em; }
.nav__tagline { font-family: var(--f-body); font-size: 0.8rem; font-weight: 300; color: var(--c-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hero__text-col {
  padding: 4rem 3.5rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--c-bg);
}
.hero__kicker {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ochre);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__sub {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-muted);
  max-width: 36ch;
  line-height: 1.7;
}
.hero__visual-col {
  position: relative;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  min-height: 70vh;
}
.hero__grid-cell { min-height: 0; }
.hero__grid-cell--tall { grid-row: 1; grid-column: 1; }
.hero__grid-cell--wide { grid-column: span 2; }
.hero__stat {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--c-cream);
  padding: 1.25rem 1.5rem;
  text-align: right;
}
.hero__stat-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--c-terra);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--c-dark);
  padding: 6rem 2.5rem;
}
.manifesto__inner { max-width: 900px; margin: 0 auto; }
.manifesto__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--c-cream);
  line-height: 1.5;
  margin-bottom: 1rem;
  border-left: 3px solid var(--c-ochre);
  padding-left: 1.5rem;
}
.manifesto__attribution {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ochre);
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}
.manifesto__body {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: #B8B0A0;
  line-height: 1.8;
  max-width: 65ch;
}

/* ── WORKS ── */
.works { padding: 6rem 2.5rem; }
.works__header { margin-bottom: 3rem; max-width: 600px; }
.works__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}
.works__sub {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.work-card { display: flex; flex-direction: column; }
.work-card__swatch {
  height: 220px;
  margin-bottom: 1.25rem;
  position: relative;
}
.work-card__info { flex: 1; }
.work-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.work-card__desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.work-card__price {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.work-card__price-orig {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-terra);
  font-size: 1rem;
}
.work-card__price-print {
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* ── MISSION ── */
.mission {
  background: var(--c-ochre);
  padding: 6rem 2.5rem;
}
.mission__inner { max-width: 1000px; margin: 0 auto; }
.mission__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,46,0.6);
  margin-bottom: 0.75rem;
}
.mission__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--c-dark);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.mission__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}
.mission__pillar {}
.mission__pillar-icon {
  display: block;
  font-size: 1.2rem;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}
.mission__pillar-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.mission__pillar-body {
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: rgba(26,26,46,0.75);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  background: var(--c-bg);
  padding: 8rem 2.5rem;
  text-align: center;
}
.closing__inner { max-width: 680px; margin: 0 auto; }
.closing__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
}
.closing__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--c-dark);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.closing__body {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing__link {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: var(--c-terra);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.closing__link:hover { background: var(--c-vermillion); }

/* ── FOOTER ── */
.footer {
  background: var(--c-dark);
  padding: 3rem 2.5rem;
}
.footer__inner { max-width: 1000px; margin: 0 auto; }
.footer__brand { margin-bottom: 1.5rem; }
.footer__name {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-cream);
  margin-bottom: 0.25rem;
}
.footer__tag {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,243,232,0.4);
}
.footer__links { display: flex; gap: 2rem; margin-bottom: 2rem; }
.footer__link {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--c-ochre);
  text-decoration: none;
}
.footer__link:hover { color: var(--c-cream); }
.footer__copy {
  font-family: var(--f-body);
  font-size: 0.72rem;
  color: rgba(250,243,232,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__text-col { padding: 3rem 1.5rem 2rem; }
  .hero__headline { font-size: 3.5rem; }
  .hero__visual-col { min-height: 55vw; }
  .hero__stat { bottom: 1rem; right: 1rem; }
  .manifesto, .works, .mission, .closing, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .works__grid { grid-template-columns: 1fr; }
  .footer__links { flex-direction: column; gap: 0.75rem; }
}