:root {
  --bg: #ece8df;
  --ink: #161513;
  --muted: #6a655c;
  --line: #161513;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
}

a {
  color: inherit;
}

.chooser {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 5rem;
}

.chooser-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.chooser-hero p {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chooser-hero h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.chooser-hero .note {
  max-width: 36rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.4rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}

.card .meta {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-editorial {
  background: #f3eee6;
  color: #1a1612;
  font-family: "Instrument Serif", Georgia, serif;
}

.card-swiss {
  background: #f4f4f0;
  color: #111;
  font-family: "Archivo", sans-serif;
}

.card-swiss h2 {
  font-weight: 800;
  text-transform: uppercase;
}

.card-noir {
  background: #0d0d0d;
  color: #efe8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.card-noir h2 {
  font-size: 2.1rem;
  font-style: italic;
}

.card-brutalist {
  background: #f3e409;
  color: #111;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  border: 4px solid #111;
  outline: 1px solid #111;
}

.card-atelier {
  background: #f7f1ec;
  color: #3a2a28;
  font-family: "Italiana", Georgia, serif;
  text-align: center;
  align-items: center;
}

.card-atelier h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.card-studio {
  background: #2b1bff;
  color: #f3ff4a;
  font-family: "Syne", sans-serif;
}

.card-studio h2 {
  font-weight: 800;
  font-size: 2rem;
}

.card-newsprint {
  background: #f2ead8;
  color: #1b1b1b;
  font-family: "Libre Baskerville", Georgia, serif;
}

.card-newsprint h2 {
  font-size: 1.8rem;
}

.card-product {
  background: #e8edf2;
  color: #12161c;
  font-family: "IBM Plex Sans", sans-serif;
}

.card-product h2 {
  font-weight: 500;
}

@media (max-width: 720px) {
  .direction-grid {
    grid-template-columns: 1fr;
  }
}
