:root {
  --ink: #14213d;
  --muted: #5f6b7a;
  --paper: #f6f4ef;
  --card: #ffffff;
  --accent: #ef8354;
  --line: #dfe3e8;
}

* { 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.65;
}
a { color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav .wrap { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-weight: 850; letter-spacing: -.03em; text-decoration: none; font-size: 1.2rem; }
.brand span { color: var(--accent); }
.links { display: flex; gap: 22px; font-size: .94rem; }
.links a { text-decoration: none; color: var(--muted); }
.links a:hover { color: var(--ink); }
.hero { padding: 86px 0 62px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); margin: 14px 0 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 20px; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 650px; }
.hero img { height: 520px; border-radius: 4px 64px 4px 4px; box-shadow: 22px 22px 0 #e7e2d8; }
.button { display: inline-block; margin-top: 18px; padding: 12px 18px; color: #fff; background: var(--ink); text-decoration: none; border-radius: 6px; font-weight: 700; }
.section { padding: 70px 0; }
.section.alt { background: var(--ink); color: #fff; }
.section.alt p { color: #c7cfda; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.card img { height: 210px; }
.card-body { padding: 24px; }
.card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.card p { color: var(--muted); margin: 0; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fact strong { display: block; font-size: 2.8rem; color: var(--accent); }
.fact span { color: #c7cfda; }
.page-hero { padding: 82px 0 42px; max-width: 820px; }
.content { max-width: 820px; padding-bottom: 90px; }
.content h2 { margin-top: 46px; font-size: 2rem; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
footer { border-top: 1px solid var(--line); padding: 34px 0 46px; color: var(--muted); font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 800px) {
  .links { gap: 12px; font-size: .84rem; }
  .hero-grid, .grid, .facts, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .hero img { height: 360px; }
  footer .wrap { display: block; }
}

