:root {
  color-scheme: light;
  --paper: #f7f2ec;
  --ink: #201d1a;
  --muted: #665f59;
  --accent: #bb572d;
  --leaf: #dfe9dc;
  --line: #d9d0c8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

a { color: #8e3d20; }
a:hover { color: var(--accent); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 236, 0.96);
}

.nav {
  width: min(1080px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; border-radius: 8px; }
.links { display: flex; gap: 22px; }
.links a { color: var(--muted); font-weight: 600; text-decoration: none; }

main { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
  padding: 70px 0 54px;
}

.icon { width: 78px; height: 78px; border-radius: 17px; }
h1 { margin: 22px 0 14px; font-family: Georgia, serif; font-size: clamp(54px, 8vw, 88px); line-height: 0.98; letter-spacing: 0; }
.lead { max-width: 620px; margin: 0; color: var(--muted); font-size: 23px; line-height: 1.45; }
.promise { margin-top: 30px; color: var(--ink); font-weight: 650; }
.phone-shot { width: 100%; max-height: 650px; object-fit: cover; object-position: top; border-radius: 6px; box-shadow: 0 25px 70px rgba(48, 38, 31, 0.16); }

.feature-band { margin: 0 calc(50% - 50vw); padding: 64px max(20px, calc((100vw - 1080px) / 2)); background: var(--leaf); }
.feature-band h2 { margin: 0 0 24px; font-family: Georgia, serif; font-size: 36px; letter-spacing: 0; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.features h3 { margin: 0 0 6px; font-size: 19px; }
.features p { margin: 0; color: var(--muted); }

.content { max-width: 760px; min-height: calc(100vh - 150px); padding: 64px 0 90px; }
.content h1 { font-size: clamp(42px, 8vw, 64px); }
.content h2 { margin: 38px 0 8px; font-family: Georgia, serif; font-size: 27px; letter-spacing: 0; }
.content p, .content li { color: #48423d; }
.content ul { padding-left: 22px; }
.updated { color: var(--muted); }
.contact { margin-top: 30px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

footer { width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 44px; color: var(--muted); font-size: 14px; }

@media (max-width: 720px) {
  .nav { min-height: 62px; }
  .links { gap: 14px; font-size: 15px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding-top: 48px; }
  h1 { font-size: 56px; }
  .lead { font-size: 20px; }
  .phone-shot { width: min(100%, 390px); justify-self: center; max-height: 600px; }
  .features { grid-template-columns: 1fr; gap: 28px; }
}

