@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --paper: #eae5d8;
  --paper-deep: #ddd6c4;
  --ink: #232320;
  --ink-soft: #4a4944;
  --line: #232320;
  --red: #8a2e28;
  --red-soft: #b6564c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */

header.site {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--ink);
}

header.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.mark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

nav.site-nav {
  display: flex;
  gap: 28px;
}

nav.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.site-nav a:hover,
nav.site-nav a.current {
  color: var(--ink);
  border-color: var(--red);
}

/* ---------- footer ---------- */

footer.site {
  border-top: 1px solid var(--ink);
  margin-top: 96px;
  padding: 36px 0 48px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- generic type ---------- */

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

p { max-width: 62ch; }

.byline {
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- hero ---------- */

.hero {
  padding: 88px 0 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 12ch;
}

.hero .lede {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44ch;
}

.hero-plate {
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  aspect-ratio: 4 / 5;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plate-rule {
  height: 1px;
  background: var(--ink);
  opacity: 0.35;
}

.plate-glyph {
  font-family: 'Fraunces', serif;
  font-size: 5.5rem;
  line-height: 0.9;
  color: var(--red);
}

.plate-caption {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- sections ---------- */

section {
  padding: 64px 0;
  border-top: 1px solid var(--ink-soft);
}

section.no-rule { border-top: none; }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 1.7rem;
}

.section-head .note {
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero-plate { max-width: 320px; }
}

/* ---------- work grid ---------- */

.plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.plate {
  background: var(--paper);
  padding: 28px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plate .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red-soft);
  font-size: 0.95rem;
}

.plate h3 {
  font-size: 1.15rem;
  margin-top: 18px;
}

.plate p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

@media (max-width: 720px) {
  .plates { grid-template-columns: 1fr; }
}

/* ---------- list rows (process / specimen) ---------- */

.rows { border-top: 1px solid var(--ink-soft); }

.row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-soft);
}

.row .label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; }

button.submit {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
}

button.submit:hover { background: var(--red); border-color: var(--red); }

.info-block { color: var(--ink-soft); }
.info-block h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.info-block .group { margin-bottom: 24px; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
