:root {
  --ink: #171514;
  --muted: #665f5a;
  --line: #ddd4cc;
  --paper: #fffdfa;
  --bg: #f6f2ec;
  --accent: #9b4738;
  --accent-dark: #733127;
  --sage: #2d6d59;
  --blue: #294f73;
  --gold: #a86e21;
  --shadow: 0 18px 44px rgba(31, 24, 19, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; }
img { display: block; max-width: 100%; }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 236, 0.94);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.button, button {
  appearance: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary, button.secondary { background: transparent; color: var(--accent-dark); border-color: #c79587; }
main { overflow: hidden; }
section { padding: 56px 24px; }
.inner { max-width: 1120px; margin: 0 auto; }
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 34px;
  align-items: center;
}
.eyebrow { margin: 0 0 12px; color: var(--sage); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
h1 { margin: 0; max-width: 760px; font-size: clamp(42px, 6vw, 78px); line-height: .95; letter-spacing: 0; }
.lead { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.preview img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.preview div { padding: 16px; color: var(--muted); line-height: 1.45; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.fact {
  border-top: 4px solid var(--blue);
  background: var(--paper);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(31, 24, 19, 0.08);
}
.fact:nth-child(2) { border-top-color: var(--sage); }
.fact:nth-child(3) { border-top-color: var(--gold); }
.fact strong { display: block; margin-bottom: 7px; font-size: 18px; }
.fact span { color: var(--muted); line-height: 1.45; }
.share-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 14px;
  align-items: start;
}
.share-copy, .next {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(31, 24, 19, 0.08);
}
.share-copy p, .next p { color: var(--muted); line-height: 1.55; }
.share-text {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  line-height: 1.45;
}
footer { padding: 30px 24px; border-top: 1px solid var(--line); color: var(--muted); }
footer .inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) {
  header { align-items: flex-start; flex-direction: column; }
  .hero, .share-panel { grid-template-columns: 1fr; min-height: auto; }
  .facts { grid-template-columns: 1fr; }
}
