:root {
  --paper: #f3efe8;
  --paper-2: #ebe6dd;
  --ink: #161412;
  --muted: #6b6560;
  --line: rgba(22, 20, 18, 0.12);
  --signal: #b4232c;
  --card: #fffdf8;
  --dark: #111214;
  --max: 1180px;
  --r: 22px;
  --r-sm: 14px;
  --r-lg: 28px;
  --r-pill: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 8px 12px;
  z-index: 9;
  border-radius: var(--r-pill);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 15px;
}

nav { display: flex; gap: 22px; }
nav a {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
nav a:hover { color: var(--ink); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 32px 96px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 500;
  margin: 8px 0 18px;
}

.lede {
  font-size: 22px;
  max-width: 26ch;
  font-family: Fraunces, serif;
  font-weight: 400;
}

.sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: 36ch;
}

.stats {
  display: flex;
  gap: 28px;
  margin: 36px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat-k {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-v { font-size: 14px; }

.text-link {
  color: var(--signal);
  font-size: 14px;
}

.hero-photo {
  background: #2a2a2a;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work, .method, .now, .about, .contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 96px;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.grid { display: grid; gap: 18px; margin-bottom: 18px; }
.pair .card,
.systems .card,
.triple .card {
  min-height: 100%;
}
.pair .card-media,
.systems .card-media {
  flex: 1 1 auto;
  min-height: 280px;
  aspect-ratio: 1 / 1;
  padding: 14px;
}
.pair .card-media img {
  object-fit: contain;
  object-position: center center;
}
.pair .card-meta,
.systems .card-meta,
.triple .card-meta {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.systems, .pair { grid-template-columns: 1fr 1fr; }
.triple { grid-template-columns: 1fr 1fr 1fr; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: var(--r);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22, 20, 18, 0.08);
}
.card.dark { background: var(--dark); color: #f4f0ea; }
.card.dark .role, .card.dark p { color: #b7b1a8; }
.card.warm { background: #f6f1e8; }

.card-media {
  overflow: hidden;
  background: #ece8e1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.card-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.tall .card-media {
  min-height: 280px;
  aspect-ratio: 1 / 1;
  padding: 18px;
}
.systems .card-media img,
.pair .card-media img,
.triple .card-media:not(.product) img {
  object-fit: contain;
  object-position: center center;
}
.peach { background: #f6d5c4; }
.ink { background: #0b0d12; }

.card-media.product {
  background: #e7e2da;
  min-height: 260px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-media.product img {
  width: auto;
  max-width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: contain;
}

.card-meta { padding: 18px 20px 22px; }
.role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.card-meta h3 { font-size: 26px; margin-bottom: 8px; }
.card-meta p { font-size: 14px; color: var(--muted); }

.origin {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r);
}
.origin img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.origin h3 { font-size: 28px; margin-bottom: 10px; }
.origin p { max-width: 62ch; }
.quiet { margin-top: 10px; color: var(--muted); font-size: 14px; }

.method { padding-top: 24px; }
.method-copy {
  font-family: Fraunces, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  max-width: 22ch;
  margin: 8px 0 28px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.chips li {
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 13px;
  background: var(--card);
  border-radius: var(--r-pill);
}

.now h2 { font-size: 36px; margin-bottom: 28px; }
.now-list { list-style: none; border-top: 1px solid var(--line); }
.now-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.now-list span { color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about figure {
  background: #ddd8d0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
}
.about h2 { font-size: 40px; margin-bottom: 16px; }
.about p + p { margin-top: 12px; color: var(--muted); }

.contact h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.contact a { color: var(--signal); font-size: 20px; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 32px 48px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero, .systems, .pair, .triple, .about, .origin, .now-list li {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 40px; }
  .hero-photo { max-width: 420px; }
  .origin img { width: 88px; height: 110px; }
  .site-header { padding: 14px 18px; }
  .work, .method, .now, .about, .contact, .hero { padding-left: 18px; padding-right: 18px; }
}


.card-media.product.fill {
  padding: 0;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  background: #f6f3ee;
}
.card-media.product.fill img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}
.pair .card-media.product.fill {
  aspect-ratio: 4 / 3;
}

.triple .card-media.product.fill {
  aspect-ratio: 4 / 3;
  padding: 0;
}
.triple .card-meta {
  min-height: 156px;
}

.origin.capital {
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}
