:root {
  --bg: #F3F6F7;
  --surface: #FFFFFF;
  --ink: #1B2A2F;
  --muted: #5E6E73;
  --teal: #0B7C7C;
  --teal-text: #0A6E6E;
  --tint: #DDF4F2;
  --ring: #2EC4C0;
  --line: #E3E9EB;
  --issue: #A8362B;
  --issue-bg: #FBE9E6;
  --radius-lg: 28px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: var(--teal-text); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { padding: 20px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 18px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.site-nav { display: flex; gap: 20px; font-size: 15px; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 40px 0 72px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
  max-width: 13ch;
}
.hero p.lede { font-size: 19px; color: var(--muted); max-width: 34em; margin: 0 0 28px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 12px 20px; border-radius: 14px; font-weight: 600; font-size: 16px;
}
.store-badge svg { width: 20px; height: 20px; fill: currentColor; }
.price-note { margin: 14px 0 0; font-size: 14px; color: var(--muted); }

/* The room-walk card: the one memorable element */
.walk-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 10px 10px 30px rgba(150, 170, 178, 0.35), -8px -8px 24px rgba(255, 255, 255, 0.9);
}
.walk-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.ring { width: 92px; height: 92px; flex: none; }
.ring circle { fill: none; stroke-width: 9; }
.ring .track { stroke: var(--line); }
.ring .fill { stroke: var(--ring); stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%;
  stroke-dasharray: 239; stroke-dashoffset: 239; animation: fill-ring 1.4s 0.3s cubic-bezier(.2,.7,.2,1) forwards; }
.ring text { font: 700 22px "Plus Jakarta Sans", sans-serif; fill: var(--ink); }
@keyframes fill-ring { to { stroke-dashoffset: 102; } }
.walk-head h2 { margin: 0; font-size: 20px; }
.walk-head p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }
.shots { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.shots li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); background: var(--bg); font-size: 15px; }
.shots .tick { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.shots .done .tick { background: var(--teal); color: #fff; }
.shots .todo .tick { border: 2px solid var(--line); }
.shots .issue { background: var(--issue-bg); }
.shots .issue .tick { background: var(--issue); color: #fff; }
.shots .issue small { display: block; color: var(--issue); font-size: 13px; }
.shots .next { background: var(--tint); color: var(--teal-text); font-weight: 600; }

/* Sections */
section { padding: 64px 0; }
section h2 { font-size: clamp(28px, 4vw, 38px); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 12px; max-width: 22ch; }
section .intro { color: var(--muted); max-width: 38em; margin: 0 0 36px; }

.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step); display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; margin-bottom: 14px;
}
.steps h3 { margin: 0 0 6px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); font-size: 16px; }

.report { background: var(--surface); }
.report .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.facts { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.facts li { padding-left: 18px; border-left: 3px solid var(--ring); }
.facts strong { display: block; }
.facts span { color: var(--muted); font-size: 16px; }

.private { text-align: left; }
.private p { max-width: 38em; }

.price { padding-bottom: 88px; }
.price-box { background: var(--tint); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.price-box h2 { margin: 0 0 6px; }
.price-box p { margin: 0; color: var(--teal-text); }

/* Plain text pages */
.doc { max-width: 720px; padding: 24px 16px 80px; margin: 0 auto; }
.doc h1 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -0.02em; line-height: 1.1; margin: 16px 0 8px; }
.doc .updated { color: var(--muted); margin: 0 0 32px; font-size: 15px; }
.doc h2 { font-size: 22px; margin: 36px 0 8px; }
.doc p, .doc li { max-width: 68ch; }
.doc details { background: var(--surface); border-radius: var(--radius-sm); padding: 14px 18px; margin: 10px 0; }
.doc summary { cursor: pointer; font-weight: 600; }
.doc details p { margin: 10px 0 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 40px; font-size: 14px; color: var(--muted); }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: var(--muted); }

@media (max-width: 820px) {
  .hero .wrap, .report .wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .site-nav { gap: 14px; }
  section { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ring .fill { animation: none; stroke-dashoffset: 102; }
}
