:root {
  color-scheme: light;
  --paper: #f4f0e8;
  --paper-raised: #fffdf8;
  --ink: #243229;
  --muted: #65705f;
  --moss: #5e6b52;
  --line: rgba(36, 50, 41, 0.14);
  --wash: #e5eadf;
  font-family: "Instrument Sans", "Avenir Next", Avenir, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 17px; line-height: 1.65; }
a { color: inherit; text-underline-offset: 0.2em; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-size: 1.1rem; font-weight: 760; text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 0.92rem; }
.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 7vw, 100px); align-items: center; padding: 56px 0 90px; }
.eyebrow { color: var(--moss); font-size: 0.78rem; font-weight: 760; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; }
h1 { max-width: 760px; margin: 18px 0 24px; font-size: clamp(3rem, 7vw, 6.6rem); font-weight: 720; }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 700; }
h3 { margin: 0 0 8px; font-size: 1.2rem; letter-spacing: -0.02em; }
.lead { max-width: 640px; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.35rem); }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.store-badge { min-width: 182px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,253,248,.72); color: var(--muted); }
.store-badge small { display: block; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.store-badge strong { display: block; color: var(--ink); font-size: 1rem; }
.phone-stage { position: relative; min-height: 680px; }
.phone { position: absolute; width: min(45%, 330px); overflow: hidden; border-radius: 38px; box-shadow: 0 36px 80px rgba(36,50,41,.16); }
.phone:first-child { top: 0; left: 2%; transform: rotate(-4deg); }
.phone:nth-child(2) { top: 100px; right: 0; transform: rotate(4deg); }
.phone:nth-child(3) { top: 260px; left: 27%; z-index: 2; }
.section { padding: 100px 0; border-top: 1px solid var(--line); }
.section-intro { max-width: 720px; margin-bottom: 44px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,253,248,.56); }
.card p { color: var(--muted); margin: 0; }
.privacy { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.privacy-points { margin: 0; padding: 0; list-style: none; }
.privacy-points li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.legal h1 { font-size: clamp(2.5rem, 7vw, 4.8rem); }
.legal h2 { margin-top: 52px; font-size: 1.65rem; letter-spacing: -0.025em; }
.legal .meta { color: var(--muted); }
.legal li { margin-bottom: 8px; }
.notice { padding: 18px 20px; border-radius: 18px; background: var(--wash); }
.footer { padding: 44px 0 70px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .phone-stage { min-height: 600px; }
  .grid, .privacy { grid-template-columns: 1fr; }
  .nav-links a:not(:last-child) { display: none; }
}
@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 28px; }
  .phone-stage { min-height: 500px; }
  .phone { width: 52%; border-radius: 26px; }
  .phone:nth-child(2) { top: 70px; }
  .phone:nth-child(3) { top: 220px; left: 23%; }
  .section { padding: 72px 0; }
}
