:root {
  --bg: #f8f6f3; --paper: #f3ede6; --ink: #2b2622; --muted: #6f655d;
  --accent: #c48b6c; --accent-dark: #a8704f; --sage: #9aa88f; --line: #e6ddd3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.55 -apple-system, "Segoe UI", Helvetica, Arial, sans-serif; }
a { color: var(--accent-dark); }
h1, h2, .hand { font-family: "Patrick Hand", "Bradley Hand", cursive; font-weight: 400; letter-spacing: 0.2px; }
h1 { font-size: clamp(40px, 7vw, 64px); line-height: 1.05; margin: 0 0 16px; }
h2 { font-size: clamp(30px, 5vw, 42px); line-height: 1.1; margin: 0 0 12px; }
p { margin: 0 0 14px; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
header .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 20px; }
header .brand img { width: 44px; height: 44px; }
header nav a { margin-left: 22px; text-decoration: none; color: var(--muted); }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 40px 0 60px; }
.hero .lead { font-size: 21px; color: var(--muted); max-width: 46ch; }
.hero img.phone { width: 100%; max-width: 380px; justify-self: center; filter: drop-shadow(0 30px 40px rgba(60,40,30,.18)); }
.stores { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.stores img { height: 60px; }
.stores .soon { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 15px; background: #fff; }
.mark { display: inline-block; width: 64px; height: 6px; border-radius: 3px; background: var(--accent); margin: 4px 0 22px; }
section.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line); }
section.feature:nth-of-type(even) .text { order: 2; }
section.feature img { width: 100%; max-width: 340px; justify-self: center; filter: drop-shadow(0 20px 30px rgba(60,40,30,.14)); }
section.feature .text p { color: var(--muted); font-size: 18px; max-width: 44ch; }
.band { background: var(--paper); border-radius: 24px; padding: 40px; margin: 40px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.band h3 { margin: 0 0 6px; font-size: 19px; }
.band p { color: var(--muted); font-size: 16px; margin: 0; }
.free { text-align: center; padding: 50px 0 20px; }
.free p { color: var(--muted); font-size: 19px; }
footer { border-top: 1px solid var(--line); margin-top: 50px; padding: 30px 0 50px; color: var(--muted); font-size: 15px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); margin-right: 18px; }
article { max-width: 720px; margin: 0 auto; padding: 20px 24px 60px; }
article h1 { font-size: 44px; }
article h2 { font-size: 30px; margin-top: 36px; }
article li { margin-bottom: 8px; }
article .meta { color: var(--muted); }
@media (max-width: 760px) {
  .hero, section.feature { grid-template-columns: 1fr; gap: 28px; }
  section.feature:nth-of-type(even) .text { order: 0; }
  .band { grid-template-columns: 1fr; padding: 28px; }
  header nav a { margin-left: 14px; font-size: 15px; }
}
