@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --page: #fbfbfa;
  --surface: #ffffff;
  --soft: #f2f4f3;
  --ink: #171817;
  --muted: #656966;
  --line: #e2e5e3;
  --accent: #466a72;
  --accent-hover: #38575e;
  --accent-soft: #e9f0f1;
  --success: #456d55;
  --max: 1120px;
  --text: 720px;
  --radius: 12px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "General Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(70, 106, 114, .28);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 72px;
  border-bottom: 1px solid rgba(226, 229, 227, .9);
  background: rgba(251, 251, 250, .92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-symbol {
  width: auto;
  height: 42px;
  flex: none;
  display: block;
}

.brand-wordmark {
  width: auto;
  height: 24px;
  margin-top: 2px; /* seats the text's visual mass against the symbol */
  flex: none;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }

.locale-tools {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.preference-menu { position: relative; }

.preference-trigger {
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #535854;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.preference-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preference-trigger:hover,
.preference-trigger[aria-expanded="true"] {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.preference-trigger:focus-visible,
.preference-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.preference-popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 60;
  width: 220px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 48px -22px rgba(25, 31, 28, .35);
}

.preference-heading {
  display: block;
  padding: 7px 9px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.preference-option {
  width: 100%;
  min-height: 40px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.preference-option:hover { background: var(--accent-soft); }

.preference-option[aria-current="page"],
.preference-option[aria-checked="true"] {
  background: #f1f5f4;
  color: var(--accent);
}

.preference-code {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.preference-option[aria-current="page"] .preference-code,
.preference-option[aria-checked="true"] .preference-code { color: var(--accent); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] { display: none !important; }

.main-nav > a {
  color: #3f423f;
  font-size: 14px;
  font-weight: 500;
}

.main-nav > a:hover { color: var(--ink); }

.nav-phone { font-variant-numeric: tabular-nums; }

.nav-action, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.main-nav > a.nav-action {
  color: #fff;
  font-size: 14px;
}

.main-nav > a.nav-action:hover, .button:hover {
  background: var(--accent-hover);
  color: #fff;
}

.button:active, .nav-action:active { transform: translateY(1px); }

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.secondary:hover { border-color: #c8cdca; background: #f8f9f8; }

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .16s ease, opacity .16s ease;
}

.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6.5px) rotate(-45deg); }

.home-main { min-height: calc(100svh - 72px); }

.home-entry {
  min-height: calc(100svh - 72px);
  padding: clamp(50px, 7vh, 78px) 24px 44px;
  display: flex;
  justify-content: center;
}

.entry-shell { width: min(1040px, 100%); }

.entry-head {
  margin: 0 auto 30px;
  max-width: 660px;
  text-align: center;
}

.entry-head h1,
.service-hero h1,
.page-title h1 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 500;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.entry-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -.01em;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.problem-row {
  min-height: 144px;
  padding: 22px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  animation: problem-card-in .42s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--card-index) * 65ms + 90ms);
}

.problem-row:hover {
  border-color: #cbd4d1;
  box-shadow: 0 10px 28px rgba(27, 35, 31, .06);
  transform: translateY(-2px);
}

.problem-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: #f6f8f7; color: var(--ink); }
.service-icon { width: 46px; height: 46px; display: block; overflow: visible; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.service-icon .accent { stroke: var(--accent); }
.service-icon path { stroke-dasharray: 160; stroke-dashoffset: 160; animation: service-icon-draw .9s cubic-bezier(.4, 0, .2, 1) forwards; animation-delay: calc(var(--icon-delay) + 150ms); }
.problem-row:hover .service-icon { transform: translateY(-1px); }

@keyframes service-icon-draw { to { stroke-dashoffset: 0; } }
@keyframes problem-card-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

.problem-copy {
  min-width: 0;
  align-self: center;
}

.problem-copy strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.problem-copy span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.problem-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--page);
  color: #525652;
  font-size: 18px;
  transition: transform .15s ease, background .15s ease;
}

.problem-row:hover .problem-arrow { transform: translateX(2px); border-color: transparent; background: var(--accent-soft); color: var(--accent); }

.price-banner {
  margin: 0 0 22px;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 14.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px 8px;
}

.price-banner strong { font-size: 19px; font-weight: 700; letter-spacing: -.02em; }

.problem-price {
  text-align: right;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}

.problem-price small {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 3px;
}

.entry-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.entry-meta ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  list-style: none;
}

.entry-meta li + li::before { content: "·"; margin: 0 11px; color: #c3c9c6; }

.text-link { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(70, 106, 114, .3); }
.text-link:hover { text-decoration-color: currentColor; }

.project-proof {
  padding: 92px 24px 104px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.project-proof-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.project-proof-head {
  text-align: center;
}

.project-proof-head h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.16;
  letter-spacing: -.025em;
  font-weight: 500;
}

.project-proof-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: center;
}

.project-example { margin: 0; }

.project-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.project-example-photo .project-media { aspect-ratio: 4 / 5; }

.project-example-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.project-example-drawing .project-media {
  padding: clamp(14px, 3vw, 28px);
  background: #f7f8f7;
}

.project-example-drawing img {
  width: 100%;
  height: auto;
  display: block;
}

.project-example figcaption {
  padding: 13px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.project-example figcaption strong { font-weight: 500; }
.project-example figcaption span { color: var(--muted); text-align: right; }

.about-photo .project-media { aspect-ratio: 3 / 4; }

.home-process {
  border-top: 1px solid var(--line);
  padding: 84px 24px 96px;
}

.process-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: process-step;
}

.process-steps li {
  counter-increment: process-step;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  text-align: center;
}

.process-steps li::before {
  content: counter(process-step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.process-steps strong { display: block; font-size: 17px; font-weight: 500; letter-spacing: -.01em; }
.process-steps p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.home-process .section-kicker, .home-process h2 { text-align: center; }
.home-process h2 { margin: 0 auto; max-width: 640px; }

.home-seo {
  border-top: 1px solid var(--line);
  padding: 84px 24px 96px;
  background: var(--surface);
}

.seo-shell { width: min(var(--max), 100%); margin: 0 auto; }

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-seo h2, .content-section h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.16;
  letter-spacing: -.025em;
  font-weight: 500;
}

.home-seo .section-kicker, .home-seo h2 { text-align: center; }
.home-seo h2 { margin: 0 auto; max-width: 640px; }

.value-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.value-item { padding: 24px 22px 10px; border-right: 1px solid var(--line); text-align: center; }
.value-item + .value-item { padding-left: 22px; }
.value-item:last-child { border-right: 0; }
.value-item strong { display: block; font-size: 18px; font-weight: 500; }
.value-item p { margin: 8px 0 0; color: var(--muted); }

.service-main, .page-main { padding: 54px 24px 96px; }

.service-shell, .page-shell { width: min(var(--max), 100%); margin: 0 auto; }

.breadcrumb {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover { color: var(--ink); }

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(56px, 8vw, 112px);
}

.service-content { min-width: 0; }

.service-hero { padding-bottom: 58px; }

.service-hero h1 { max-width: 800px; }

.service-lede {
  max-width: 700px;
  margin: 20px 0 0;
  color: #4f5350;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  letter-spacing: -.015em;
}

.fit-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.fit-list li {
  color: #555a56;
  font-size: 13px;
}

.fit-list li + li::before {
  content: "·";
  margin: 0 10px;
  color: var(--line-strong);
}

.quote-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.quote-panel-mobile { display: none; }

.quote-panel .small { margin: 0; color: var(--muted); font-size: 13px; }
.quote-price { margin: 7px 0 2px; font-size: 30px; line-height: 1.1; letter-spacing: -.04em; font-weight: 500; }
.quote-note { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.quote-exact { margin: 0 0 14px; padding: 10px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.5; }
.quote-panel .button { width: 100%; }
.quote-panel .button + .button { margin-top: 9px; }
.quote-proof { margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.service-card-grid {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.content-section { padding: 48px 0; border-top: 1px solid var(--line); }
.content-section:first-of-type { border-top: 0; }

.content-section.boxed {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.content-section.boxed h2 { font-size: 24px; }
.content-section.boxed .clean-list { margin-top: 18px; }
.content-section.boxed .clean-list li { min-height: 0; padding: 12px 0; font-size: 14px; }

.service-handoff {
  margin: 14px 0 0;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #4f5d5a;
  font-size: 14px;
}

.service-handoff strong { color: var(--ink); font-weight: 500; }

.content-intro { max-width: 680px; margin: 12px 0 0; color: var(--muted); }

.clean-list {
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.clean-list li {
  min-height: 58px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before { content: "✓"; order: 2; flex: 0 0 auto; color: var(--success); font-weight: 600; }
.clean-list.muted li::before { content: "–"; order: 2; flex: 0 0 auto; color: #8b8f8c; }

/* Article context (guide, legal pages): tighter rows than the card lists */
.legal-copy .clean-list li { min-height: 0; padding: 13px 0; font-size: 15px; }

.steps-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  min-height: 168px;
  counter-increment: step;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.steps-list li::before { content: "0" counter(step); display: block; margin-bottom: 24px; color: var(--accent); font-size: 13px; }
.steps-list strong { display: block; font-weight: 500; }
.steps-list p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.faq-list { margin-top: 24px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 500; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--muted); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -4px 0 22px; color: var(--muted); }

.contact-section {
  margin-top: 52px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.contact-section > p { margin: 10px 0 0; color: var(--muted); }

.contact-form { margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d5d9d6;
  border-radius: 9px;
  padding: 11px 13px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(70, 106, 114, .12); }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-actions { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }
.form-status { margin: 12px 0 0; color: var(--success); font-size: 14px; }
.currency-disclaimer { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.page-title { max-width: 800px; padding-bottom: 56px; }
.page-title p { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.price-group { margin-top: 54px; }
.price-group h2 { margin: 0 0 18px; font-size: 24px; letter-spacing: -.025em; font-weight: 500; }
.price-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.price-table th, .price-table td { padding: 17px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table th { color: var(--muted); font-size: 13px; font-weight: 500; }
.price-table td:last-child, .price-table th:last-child { padding-left: 24px; text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table td small { display: block; margin-top: 3px; color: var(--muted); }
.price-notice { margin-top: 26px; padding: 18px 20px; border-radius: 10px; background: var(--accent-soft); color: #3e555a; }

.callout {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--ink);
}

.callout strong { display: block; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }

.callout p { margin: 8px 0 0; color: #3e555a; }

.callout-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.callout-actions .button { width: 100%; justify-content: center; }

.order-chip {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  font-size: 14px;
}

.order-chip strong { font-weight: 600; }
.order-chip span { color: var(--muted); }

.callout-order {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.proj-track {
  margin: 34px 0 0;
  padding: 0 0 6px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 0;
  position: relative;
  overflow-x: auto;
}

.proj-track::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}

.proj-track li { position: relative; text-align: center; padding: 0 8px; }

.proj-track .proj-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 9px;
  border-radius: 50%;
  background: var(--page);
  border: 2px solid var(--line);
}

.proj-track li.done .proj-dot { background: var(--accent); border-color: var(--accent); }
.proj-track li.current .proj-dot { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(70, 106, 114, .18); }

.proj-track strong {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}

.proj-track li.done strong, .proj-track li.current strong { color: var(--ink); }
.proj-track li.todo strong { font-weight: 400; }
.proj-date { display: block; margin-top: 3px; font-size: 11px; color: var(--muted); }

.proj-next { margin-top: 28px; padding: 15px 17px; border-radius: 12px; background: var(--accent-soft); }
.proj-next strong { font-size: 14px; font-weight: 600; }
.proj-next p { margin: 5px 0 0; color: #3e555a; font-size: 14px; line-height: 1.5; }

.proj-map { margin-top: 28px; }
.proj-map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}
.proj-map figcaption { padding: 9px 2px 0; color: var(--muted); font-size: 12.5px; }

.proj-contact { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.proj-contact strong { font-size: 14px; font-weight: 600; }
.proj-contact p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

/* Onboarding wizard */
.onboarding { position: fixed; inset: 0; z-index: 90; display: flex; align-items: flex-end; justify-content: center; }
.onboarding[hidden] { display: none; }
.onboarding-backdrop { position: absolute; inset: 0; background: rgba(24, 30, 32, .55); }
.onboarding-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100svh - 20px);
  overflow-y: auto;
  background: var(--page);
  border-radius: 18px 18px 0 0;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  animation: ob-up .22s ease;
  text-align: center;
}
@keyframes ob-up { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (min-width: 620px) {
  .onboarding { align-items: center; }
  .onboarding-card { border-radius: 18px; max-height: calc(100svh - 48px); }
}
.onboarding-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.onboarding-close:hover { background: var(--soft); }
.onboarding-head { text-align: center; }
.onboarding-head h2 { margin: 6px 0 0; font-size: 24px; letter-spacing: -.02em; font-weight: 500; }
.onboarding-sub { margin: 8px auto 0; max-width: 360px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.onboarding-card .section-kicker { margin: 0 auto; }
.ob-progress { display: flex; justify-content: center; gap: 6px; margin: 18px 0 0; }
.ob-dot { width: 22px; height: 4px; border-radius: 2px; background: var(--line); transition: background .15s; }
.ob-dot.on { background: var(--accent); }
.ob-dot.past { background: var(--accent); opacity: .45; }
.ob-step { padding-top: 16px; }
.ob-step .clean-list { margin: 2px 0 0; }
.ob-step .clean-list li { padding: 7px 0; }
.ob-promise {
  margin: 20px 0 0;
  padding: 0;
  background: none;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.ob-details {
  position: absolute;
  right: 20px;
  bottom: 10px;
}
.ob-link {
  font-size: 11.5px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.ob-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
.ob-label { display: block; margin: 16px 0 6px; font-size: 14px; font-weight: 500; }
.ob-req { color: var(--accent); }
.ob-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
}
.ob-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(70, 106, 114, .15); }
textarea.ob-input { resize: vertical; min-height: 96px; }
.ob-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ob-hint { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.ob-actions { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.ob-actions .button { flex: 0 1 auto; min-width: 140px; }
.ob-status { margin: 12px 0 0; color: #8a453f; font-size: 13px; min-height: 1em; }
.ob-status-inline { margin: 10px 0 0; color: #8a453f; font-size: 13px; min-height: 1em; }
.ob-done { padding: 8px 0 2px; text-align: center; }
.ob-done-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ob-done-title { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.ob-done .ob-hint { margin-top: 8px; }
.ob-done [data-ob-dashboard-link] { margin-top: 16px; }
.ob-done .ob-actions { margin-top: 22px; }
.ob-done .ob-account { margin-top: 18px; text-align: left; }
.ob-loading { display: flex; align-items: center; justify-content: center; min-height: 260px; }
.ob-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: ob-spin .7s linear infinite;
  will-change: transform; /* own compositor layer -> 60fps rotation */
  transform: translateZ(0);
}
@keyframes ob-spin { to { transform: rotate(360deg); } }
.ob-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.ob-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.ob-chip:hover { border-color: #c8cdca; }
.ob-chip.selected { border-color: var(--accent); background: var(--accent-soft); }
.ob-account { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.ob-account-title { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.ob-oauth { width: 100%; margin-top: 8px; }
.ob-code { margin-top: 14px; text-align: left; }
.ob-code-row { display: flex; gap: 8px; margin-top: 8px; }
.ob-code-row .ob-input { flex: 1; min-width: 0; }
.ob-code-row .button { flex: 0 0 auto; }

/* Dashboard + admin lists */
.dash-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.dash-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.dash-card strong { font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; }
.dash-meta { color: var(--muted); font-size: 13px; }
.dash-status { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 600; }
.admin-steps { display: flex; gap: 6px; margin-top: 6px; }
.admin-step {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--page);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.admin-step:hover { border-color: var(--accent); color: var(--accent); }
.admin-step.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.ob-summary {
  margin: 2px 0 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-line;
}
.ob-fallback { margin: 12px 0 0; color: var(--muted); font-size: 13px; white-space: pre-wrap; }
.ob-call { margin: 14px 0 0; font-size: 13.5px; color: var(--muted); }
body.ob-open { overflow: hidden; }

.legal-copy ul { margin: 14px 0 0; padding-left: 1.25em; color: var(--muted); }

.legal-copy li { margin: 8px 0; }

.legal-copy a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.legal-copy a:hover { color: var(--accent-hover); }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 110px); align-items: start; margin-top: 56px; }
.about-copy h2 { margin: 0; font-size: 26px; letter-spacing: -.025em; font-weight: 500; }
.about-copy p { color: var(--muted); }
.about-points { margin: 22px 0 0; padding: 0; list-style: none; }
.about-points li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.about-points li::after { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.about-photo { margin: 0; max-width: 100%; }
.legal-page { max-width: 900px; }
.legal-copy { max-width: 760px; }
.legal-copy h2 { margin: 36px 0 10px; font-size: 24px; font-weight: 500; letter-spacing: -.025em; }
.legal-copy p { color: var(--muted); }
.about-facts {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.about-facts li { background: var(--surface); padding: 16px 18px; display: flex; flex-direction: column; gap: 3px; }
.about-facts strong { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.about-facts span { font-size: 14.5px; }
.about-facts a { color: var(--accent); }

.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 40px;
  color: var(--muted);
  font-size: 13px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.footer-brand .brand-symbol { width: auto; height: 34px; }
.footer-brand .brand-wordmark { width: auto; height: 18px; margin-top: 1.5px; }
.footer-shell p { margin: 4px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a:hover { color: var(--ink); }

.mobile-contact { display: none; }

@media (max-width: 860px) {
  .nav-shell { width: min(100% - 32px, var(--max)); }
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
    padding: 22px 20px 40px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--page);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { min-height: 58px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 17px; }
  .main-nav .locale-tools { position: relative; margin: 18px 0 4px; justify-content: flex-start; }
  .main-nav .preference-trigger { width: 44px; height: 44px; border-color: var(--line); background: var(--surface); }
  .main-nav .preference-popover { right: auto; left: 0; width: min(280px, calc(100vw - 40px)); }
  .main-nav .nav-action { margin-top: 18px; border: 0; justify-content: center; color: #fff; }
  .nav-phone { order: -1; }

  .problem-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .service-layout { grid-template-columns: 1fr; gap: 0; }
  .quote-panel { position: static; }
  .quote-panel-desktop { display: none; }
  .quote-panel-mobile { display: block; margin-bottom: 44px; }
  .service-card-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; gap: 10px; }
  .steps-list li { min-height: 0; padding: 18px; display: grid; grid-template-columns: 42px 1fr; column-gap: 12px; }
  .steps-list li::before { margin: 1px 0 0; grid-row: 1 / span 2; }
  .steps-list p { grid-column: 2; }
  .value-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 12px; }
  .project-proof-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
  .value-item, .value-item + .value-item { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-person { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .footer-shell { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { height: 64px; }
  .main-nav { top: 64px; height: calc(100svh - 64px); min-height: calc(100svh - 64px); }
  .brand { gap: 9px; }
  .brand-symbol { height: 34px; }
  .brand-wordmark { height: 19px; margin-top: 1.5px; }
  .home-entry { min-height: calc(100svh - 64px); padding: 42px 16px 32px; }
  .entry-head { margin-bottom: 28px; }
  .entry-head h1, .service-hero h1, .page-title h1 { font-size: clamp(28px, 8.5vw, 36px); }
  .entry-head p { font-size: 16px; }
  .problem-list { grid-template-columns: 1fr; gap: 10px; }
  .problem-row { min-height: 112px; padding: 15px; grid-template-columns: 46px 1fr auto; gap: 11px; border-radius: 14px; }
  .problem-icon { width: 46px; height: 46px; border-radius: 11px; }
  .service-icon { width: 38px; height: 38px; }
  .problem-copy strong { font-size: 16px; }
  .problem-copy span { font-size: 13px; line-height: 1.35; }
  .problem-price { font-size: 17px; }
  .price-banner { margin-bottom: 16px; padding: 11px 14px; font-size: 13.5px; }
  .price-banner strong { font-size: 17px; }
  .problem-arrow { width: 30px; height: 30px; }
  .entry-meta { align-items: flex-start; flex-direction: column; }
  .entry-meta ul { flex-direction: column; gap: 6px; }
  .project-proof, .home-process, .home-seo, .service-main, .page-main { padding-left: 16px; padding-right: 16px; }
  .project-proof { padding-top: 64px; padding-bottom: 72px; }
  .project-proof-grid { margin-top: 28px; grid-template-columns: 1fr; gap: 28px; }
  .project-example-photo { width: min(82%, 420px); }
  .project-example-drawing .project-media { padding: 12px; }
  .home-seo { padding-top: 64px; padding-bottom: 72px; }
  .home-process { padding-top: 64px; padding-bottom: 72px; }
  .process-steps { grid-template-columns: 1fr; gap: 12px; }
  .process-steps li { padding: 18px; }
  .process-steps li::before { margin-bottom: 10px; }
  .service-main, .page-main { padding-top: 34px; padding-bottom: 86px; }
  .breadcrumb { margin-bottom: 28px; }
  .service-hero { padding-bottom: 42px; }
  .fit-list { margin-top: 22px; }
  .quote-panel { padding: 20px; }
  .content-section { padding: 38px 0; }
  .content-section.boxed { padding: 20px; }
  .contact-section {
    margin-top: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .price-table td:first-child { padding-right: 10px; }
  .price-table td:last-child, .price-table th:last-child { padding-left: 8px; }
  .footer-shell { width: calc(100% - 32px); padding-bottom: 88px; }
  .footer-links { gap: 4px 14px; }
  .footer-links a { min-height: 36px; display: inline-flex; align-items: center; }
  .mobile-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: rgba(251, 251, 250, .95);
    backdrop-filter: blur(14px);
  }
  .mobile-contact .button { min-height: 46px; padding: 10px; font-size: 14px; }
}

@media (max-width: 420px) {
  .onboarding-card { padding: 24px 18px 20px; }
  .ob-row { grid-template-columns: 1fr; gap: 0; }
  .ob-actions { gap: 8px; }
  .ob-actions .button { min-width: 0; padding-left: 12px; padding-right: 12px; }
  .ob-done .ob-actions { flex-direction: column; }
  .ob-done .ob-actions .button { width: 100%; }
}

.cert-line { margin: 14px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

.about-person {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.about-person .clean-list { margin-top: 14px; }
.about-person .clean-list li { padding: 8px 0; }
.cert-proof { margin: 0 auto; max-width: 640px; text-align: center; }
.cert-proof .section-kicker { margin: 0 auto 6px; }
.cert-doc {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 25, 27, .07);
  text-align: left;
}
.cert-doc-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.rise-logo { flex: none; }
.cert-doc-head strong { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.cert-doc-head span { display: block; margin-top: 1px; color: var(--muted); font-size: 12.5px; }
.cert-doc-tag { margin-left: auto; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; white-space: nowrap; }
.cert-doc-rows { margin: 0; padding: 4px 0 0; }
.cert-doc-rows > div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.cert-doc-rows > div:last-child { border-bottom: 0; }
.cert-doc-rows dt { color: var(--muted); font-size: 13.5px; }
.cert-doc-rows dd { margin: 0; font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.cert-mask { display: inline-block; width: 96px; height: 13px; border-radius: 4px; background: #d6d6d4; vertical-align: middle; }
.cert-mask-wide { width: 132px; }
.cert-doc-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; }
.cert-doc-foot p { margin: 3px 0 0; }
.cert-note { margin-top: 14px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .service-icon path { stroke-dashoffset: 0; }
}
