:root {
  --paper: #f7f4ed;
  --ink: #203129;
  --muted: #65716a;
  --line: #d9d3c7;
  --accent: #ae6548;
  --deep: #21352c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

nav { display: flex; gap: 22px; font-size: .92rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent); }

.eyebrow {
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; padding: 112px 0 90px; }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; }
h1 { max-width: 760px; margin: 16px 0 25px; font-size: clamp(3.2rem, 7vw, 6.5rem); letter-spacing: -.05em; }
h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.035em; }
h3 { margin: 0 0 6px; font-size: 1.35rem; }

.lead { max-width: 600px; color: var(--muted); font-size: 1.23rem; }

.hero-card {
  align-self: end;
  padding: 30px;
  color: #fbfaf7;
  background: var(--deep);
}

.hero-card p { margin: 0; color: #d6e0d8; }
.hero-card strong { display: block; margin-bottom: 9px; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; }

.features { padding: 82px 0 100px; border-top: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.feature { padding-top: 18px; border-top: 3px solid var(--accent); }
.feature p { color: var(--muted); margin: 0; }

.quiet { padding: 52px 0 70px; border-top: 1px solid var(--line); color: var(--muted); }

.page { max-width: 800px; padding: 84px 0 110px; }
.page .intro { color: var(--muted); font-size: 1.15rem; }
.page h2 { margin-top: 48px; font-size: 2rem; }
.page h3 { margin-top: 28px; font-family: inherit; font-size: 1rem; font-weight: 700; }
.page p, .page li { color: #48534d; }
.page ul { padding-left: 1.25rem; }

.support-box { max-width: 620px; margin-top: 38px; padding: 30px; background: #eee8dc; border-left: 4px solid var(--accent); }
.email { color: var(--accent); font-size: 1.25rem; font-weight: 700; }

footer { padding: 28px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 1120px); }
  .site-header { min-height: 66px; }
  nav { gap: 14px; font-size: .82rem; }
  .hero { display: block; padding: 76px 0 64px; }
  .hero-card { margin-top: 42px; }
  .feature-grid { grid-template-columns: 1fr; }
  .page { padding: 62px 0 80px; }
}
