:root {
  --cream: #f4eee3;
  --cream-2: #faf6ee;
  --paper: #fffdf8;
  --ink: #141311;
  --ink-2: #2c2a26;
  --mute: #5a554c;
  --line: #e2d8c6;
  --amber: #e09510;
  --amber-2: #f2b430;
  --char: #1a1916;
  --char-2: #24221e;
  --ok: #2f6b3a;
  --danger: #8b2e2e;
  --shadow: 0 24px 60px rgba(20,19,17,.08);
  --max: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream-2); line-height: 1.55; font-size: 17px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(250,246,238,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .14em; font-size: 12px; font-weight: 650; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); background: #fff; }
nav { display: flex; align-items: center; gap: 20px; }
nav a { text-decoration: none; font-size: 14.5px; color: var(--ink-2); }
nav a:hover, nav a.active { color: var(--ink); }
.menu-btn { display: none; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; font: inherit; cursor: pointer; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border: 0; cursor: pointer; border-radius: 999px; padding: 13px 22px; font-weight: 600; font-family: inherit; font-size: 14.5px; line-height: 1; }
.btn-amber { background: var(--amber); color: #1a1406; }
.btn-amber:hover { background: var(--amber-2); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.hero { position: relative; overflow: hidden; padding: 84px 0 56px; background: radial-gradient(ellipse at 18% 0%, rgba(240,180,41,.22), transparent 42%), var(--cream-2); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.kicker { letter-spacing: .18em; text-transform: uppercase; font-size: 11.5px; color: var(--mute); font-weight: 650; margin: 0 0 14px; }
h1,h2,h3 { font-family: var(--serif); line-height: 1.08; margin: 0; font-weight: 560; }
h1 { font-size: clamp(42px, 6.4vw, 76px); letter-spacing: -.03em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.02em; }
h3 { font-size: 26px; }
.lead { font-size: 19px; color: var(--ink-2); max-width: 560px; margin: 16px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-mark { background: var(--paper); border: 1px solid var(--line); border-radius: 40px; padding: 36px; box-shadow: var(--shadow); display: grid; place-items: center; position: relative; }
.hero-mark::after { content: ""; position: absolute; inset: 18% 22%; background: radial-gradient(circle, rgba(240,180,41,.28), transparent 70%); pointer-events: none; }
.hero-mark img { width: min(360px, 100%); border-radius: 50%; position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 34px; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 14px; }
.stat b { display: block; font-family: var(--serif); font-size: 22px; }
.stat span { color: var(--mute); font-size: 13px; }
section { padding: 78px 0; }
.band-dark { background: var(--char); color: #f6f0e4; }
.band-dark .kicker { color: #c4b79a; }
.band-dark .lead, .band-dark p { color: #d7cdb8; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head p { color: var(--ink-2); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.card .shot { display: block; height: 248px; overflow: hidden; background: #111; }
.card .shot-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.card:hover .shot-img { transform: scale(1.03); }
.card-body { padding: 22px 22px 24px; }
.tag { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6a4300; background: #ffe7b5; border-radius: 999px; padding: 4px 10px; font-weight: 700; }
.tag.soon { background: #ece7dc; color: #5a554c; }
.card h3 { margin: 10px 0 8px; }
.card p { margin: 0 0 16px; color: var(--ink-2); font-size: 15.5px; }
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc, .price { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.num { color: var(--amber); font-weight: 700; letter-spacing: .14em; font-size: 12px; }
.svc ul, .price ul { margin: 12px 0 0; padding-left: 18px; color: var(--ink-2); }
.svc li, .price li { margin: 7px 0; }
.price .amt { font-family: var(--serif); font-size: 40px; margin: 10px 0 4px; }
.price .amt span { font-size: 16px; color: var(--mute); font-family: var(--sans); }
.price.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
.inds {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100%;
}
.ind {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 10px;
  min-height: 44px;
  box-shadow: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.ind:hover { border-color: var(--amber); background: #fff8ea; box-shadow: 0 0 0 1px var(--amber); }
.ind h3 {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 650;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}
.ind p { display: none; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step { background: var(--char-2); color: #f6f0e4; border-radius: 20px; padding: 22px; }
.step b { color: var(--amber-2); display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .12em; }
.step p { color: #d7cdb8; margin: 8px 0 0; font-size: 15px; }
.faq { display: grid; gap: 10px; }
details { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
details summary { cursor: pointer; font-weight: 650; }
details p { margin: 10px 0 0; color: var(--ink-2); }
.quote { background: var(--char); color: #f6f0e4; border-radius: 28px; padding: 44px; }
.quote p { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); line-height: 1.28; margin: 0 0 12px; }
.quote span { color: #cbbfa8; }
form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 13px; font-weight: 650; display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); font: inherit; background: #fff; color: var(--ink); }
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.check input { width: auto; margin-top: 4px; }
.form-note { color: var(--mute); font-size: 13px; }
.alert { padding: 12px 14px; border-radius: 12px; display: none; }
.alert.show { display: block; }
.alert.ok { background: #e7f4ea; color: var(--ok); }
.alert.bad { background: #f8e8e8; color: var(--danger); }
footer { border-top: 1px solid var(--line); padding: 40px 0 52px; color: var(--mute); font-size: 14.5px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.foot b { display: block; color: var(--ink); margin-bottom: 8px; }
.foot a { color: var(--ink-2); text-decoration: none; display: block; margin: 4px 0; }
.case article.card .shot { height: 340px; }

/* button spacing */
.btn { margin: 0; }
.hero-actions { gap: 14px; }
.btn + .btn { margin-left: 0; }
.card-body .btn,
.svc .btn,
.price .btn,
.section-head .btn,
.band-dark .btn {
  margin-top: 12px;
  margin-right: 12px;
  margin-bottom: 4px;
}
.card-body .btn:last-child,
.svc .btn:last-child,
.price .btn:last-child { margin-right: 0; }
a.btn + a.btn, button.btn + a.btn, a.btn + button.btn { margin-left: 12px; }
.btn-row, .cta-row, .price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.price { display: flex; flex-direction: column; }
.price ul { flex: 1; }
.price .price-actions { margin-top: auto; padding-top: 18px; }

@media (max-width: 900px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; position: absolute; top: 76px; left: 0; right: 0; background: var(--cream-2); border-bottom: 1px solid var(--line); padding: 16px 20px 22px; }
  nav.open .btn { margin: 0; width: auto; }
  .menu-btn { display: inline-flex; }
  .hero-grid, .work-grid, .services, .steps, .stats, .form-grid, .foot { grid-template-columns: 1fr; }
  .inds { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 6px !important; }
  .ind { padding: 10px 8px; min-height: 40px; border-radius: 999px; }
  .ind h3 { font-size: 12px; }
  .ind p { display: none; }
  .hero { padding-top: 42px; }
}

.tool-q { display:grid; gap:10px; }
.tool-q label.opt { display:flex; gap:10px; align-items:flex-start; background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px 14px; cursor:pointer; }
.tool-q label.opt:has(input:checked) { border-color:var(--amber); box-shadow:0 0 0 1px var(--amber); }
.score-hero { display:grid; grid-template-columns:180px 1fr; gap:24px; align-items:center; background:var(--char); color:#f6f0e4; border-radius:28px; padding:28px; }
.score-ring { width:160px; height:160px; border-radius:50%; display:grid; place-items:center; background:conic-gradient(var(--amber) calc(var(--p)*1%), #333029 0); }
.score-ring span { width:118px; height:118px; border-radius:50%; background:var(--char); display:grid; place-items:center; font-family:var(--serif); font-size:42px; }
.fix-list { display:grid; gap:8px; }
.fix-list div { background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px 14px; }
.fix-list .bad { border-left:4px solid #c45c12; }
.fix-list .ok { border-left:4px solid var(--ok); }
.preview-phone { max-width:380px; background:#111; color:#f6f0e4; border-radius:28px; padding:22px; min-height:420px; box-shadow:var(--shadow); }
.preview-phone .ph { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:#c4b79a; }
.preview-phone h3 { font-size:28px; margin:10px 0; }
.preview-phone .cta-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.preview-phone .cta-row span { background:var(--amber); color:#1a1406; border-radius:999px; padding:8px 12px; font-size:13px; font-weight:700; }

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.menu-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
a:focus-visible {
  outline-color: var(--ink);
}
button:focus-visible,
.btn:focus-visible,
.menu-btn:focus-visible {
  outline-color: var(--amber);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-color: var(--amber);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover .shot-img { transform: none; }
  .skip-link { transition: none; }
}

@media (max-width: 520px) {
  .inds { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .ind h3 { font-size: 11px; }
}
