:root {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --ink: #1f1a17;
  --muted: #6d625b;
  --accent: #7d2b2f;
  --accent-dark: #5c1f22;
  --line: #e9ded4;
  --soft: #f2e7de;
  --shadow: 0 20px 55px rgba(38, 24, 18, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 222, 212, 0.8);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: white; font-family: Georgia, serif; letter-spacing: -0.5px;
}
nav { display: flex; gap: 26px; font-size: 0.95rem; color: var(--muted); }
nav a:hover { color: var(--accent); }
.hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(125, 43, 47, 0.10), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; font-weight: 800; color: var(--accent); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); letter-spacing: -0.04em; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -0.03em; margin-bottom: 22px; }
h3 { font-size: 1.6rem; margin-bottom: 10px; }
.lead { max-width: 680px; font-size: 1.16rem; color: var(--muted); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 20px; border-radius: 999px; font-weight: 800; transition: .2s ease;
}
.button.primary { color: white; background: var(--accent); }
.button.primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.65); }
.story-card { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.2deg); }
.story-card-top { padding: 18px 20px; border-bottom: 1px solid var(--line); display: flex; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d8c6ba; }
.story-card-body { padding: 48px 38px; }
.mini-label { display: inline-block; margin-bottom: 18px; font-size: .74rem; font-weight: 900; letter-spacing: .16em; color: var(--accent); }
blockquote { margin: 0 0 26px; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.4rem); line-height: 1.18; }
.story-card p { color: var(--muted); margin: 0; }
.section { padding: 92px 0; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.body-copy { font-size: 1.08rem; color: var(--muted); }
.body-copy p:first-child { margin-top: 0; }
.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: #fffdfb; }
.number { display: inline-block; font-size: .78rem; font-weight: 900; color: var(--accent); margin-bottom: 32px; }
.card p { color: var(--muted); margin-bottom: 0; }
.contact { padding-bottom: 110px; }
.contact-box { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; padding: 48px; border-radius: 28px; background: var(--soft); border: 1px solid var(--line); }
.contact-box h2 { margin-bottom: 14px; }
.contact-box p { color: var(--muted); }
.contact-note { display: grid; gap: 4px; padding: 24px; border-radius: 18px; background: rgba(255,255,255,.65); }
.small { margin-top: 14px; font-size: .86rem; color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 820px) {
  .hero-grid, .split, .contact-box { grid-template-columns: 1fr; gap: 34px; }
  .cards { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 68px; }
  .story-card { transform: none; }
  .footer-row { flex-direction: column; }
}
