:root {
  --bg: #fdfbf6;
  --ink: #1a1613;
  --accent: #b85c3c;
  --muted: #7a6a58;
  --rule: #1a1613;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.letter {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px 64px;
}

.photo {
  margin: 0 0 28px;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  height: 300px;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.headline {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(40px, 7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.headline .accent {
  color: var(--accent);
}

.intro {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.intro strong { font-weight: 600; }

.facts {
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  padding: 18px 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 24px;
}

.facts > div { min-width: 0; }

.facts dt {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.facts dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.contact h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.contact address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.8;
}

.contact a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.contact a:hover { color: var(--accent); }

.phone { color: var(--muted); }

@media (min-width: 520px) {
  .letter { padding: 56px 40px 80px; }
  .photo { height: 400px; }
  .facts { grid-template-columns: 1fr 1fr; gap: 18px 32px; }
}

@media print {
  body { background: #fff; }
  .letter { max-width: none; padding: 0; }
  .contact a { text-decoration: none; color: var(--ink); }
}
