@font-face {
  font-family: 'InterVar';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: 'InterVar';
  src: url('/assets/fonts/inter-var-italic.woff2') format('woff2');
  font-display: swap;
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: 'PlusJakartaVar';
  src: url('/assets/fonts/plus-jakarta-var.woff2') format('woff2');
  font-display: swap;
  font-weight: 200 800;
  font-style: normal;
}
@font-face {
  font-family: 'PlusJakartaVar';
  src: url('/assets/fonts/plus-jakarta-var-italic.woff2') format('woff2');
  font-display: swap;
  font-weight: 200 800;
  font-style: italic;
}
:root {
  --font-display: 'PlusJakartaVar', 'InterVar', system-ui, sans-serif;
  --font-body: 'InterVar', 'PlusJakartaVar', system-ui, sans-serif;
  --bg: #f6f5f1;
  --surface: #ffffff;
  --surface-soft: #f0efe9;
  --surface-blue: #eef4f9;
  --ink: #121b24;
  --muted: #5d6873;
  --line: #d9d8d2;
  --line-strong: #c7c7c0;
  --navy: #0d2f4c;
  --navy-strong: #0b2337;
  --navy-soft: #dce8f2;
  --accent: #b9995b;
  --accent-soft: #efe6d6;
  --success: #1d5f43;
  --error: #8a2d2d;
  --shadow-soft: 0 14px 36px rgba(18, 27, 36, 0.07);
  --shadow-panel: 0 24px 60px rgba(13, 47, 76, 0.10);
  --radius-sm: 12px;
  --radius: 20px;
  --frame-max: 1320px;
  --gutter-desktop: 32px;
  --gutter-tablet: 24px;
  --gutter-mobile: 20px;
  --rail-hit-min: 44px;
  --rail-gap-desktop: 18px;
  --rail-gap-mobile: 12px;
}
html {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  min-width: 0;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--bg);
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }
p, li, label, input, textarea, select, summary, td, th {
  font-size: 1rem;
}
p, ul, ol { margin: 0; }
ul, ol { padding-left: 1.2rem; }
li + li { margin-top: .5rem; }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.7rem, 5vw, 4.75rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
small { font-size: .95rem; color: var(--muted); }
.frame {
  width: 100%;
  max-width: var(--frame-max);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop);
}
.skip-link {
  position: absolute;
  left: 20px;
  top: 12px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  background: var(--navy-strong);
  color: #fff;
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.utility-bar {
  background: var(--navy-strong);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.utility-copy {
  font-size: .92rem;
  color: rgba(255,255,255,.86);
}
.utility-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-links a {
  text-decoration: none;
  color: #fff;
}
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246,245,241,.9);
  border-bottom: 1px solid rgba(18,27,36,.08);
}
.nav-shell__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-lockup img { width: 52px; height: 52px; border-radius: 14px; box-shadow: 0 10px 22px rgba(13,47,76,.14); }
.brand-lockup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.brand-lockup small {
  display: block;
  margin-top: 2px;
  line-height: 1.35;
}
.site-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rail-gap-desktop);
  justify-self: center;
}
.rail-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--rail-hit-min);
  padding-inline: 10px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.rail-link::after,
.action-link::after,
.section-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: .72;
  transition: transform 160ms ease, opacity 160ms ease;
}
.rail-link:hover::after,
.rail-link:focus-visible::after,
.rail-link[aria-current='page']::after,
.action-link:hover::after,
.action-link:focus-visible::after,
.section-link:hover::after,
.section-link:focus-visible::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.action-link,
.section-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}
.action-link--hero { font-size: 1rem; }
.button {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  border-radius: 10px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); border-color: rgba(13,47,76,.28); }
.button--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 14px 28px rgba(13,47,76,.16);
}
.button--quiet { background: #fff; }
.rail-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}
.rail-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.drawer {
  border-top: 1px solid var(--line);
  background: rgba(246,245,241,.98);
}
.drawer__inner {
  padding-top: 10px;
  padding-bottom: 18px;
}
.rail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rail-row {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(18,27,36,.08);
}
.drawer__contact {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.drawer__contact a { text-decoration: none; color: var(--navy); font-weight: 600; }
.hero {
  padding: 72px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 36px;
  align-items: start;
}
.hero-copy {
  display: grid;
  gap: 20px;
  padding: 10px 0;
}
.eyebrow {
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}
.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions,
.hero-actions--tight {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-actions--tight { margin-top: 8px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.trust-chip,
.stat-card {
  padding: 16px 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.trust-chip strong,
.stat-card strong { display: block; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.trust-chip span,
.stat-card span { display: block; margin-top: 4px; color: var(--muted); }
.hero-panel {
  display: grid;
  gap: 18px;
}
.hero-panel--single { align-self: stretch; }
.hero-grid--refined { align-items: center; }
.hero-panel__art {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  background: #fff;
}
.hero-panel__card {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,248,244,.94));
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.hero-panel__eyebrow {
  margin: 0 0 10px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  font-weight: 700;
}
.hero-panel__list {
  padding-left: 1rem;
}
.page-hero {
  padding: 62px 0 10px;
}
.page-hero--short { padding-bottom: 80px; }
.page-hero__inner {
  display: grid;
  gap: 18px;
  padding-bottom: 18px;
}
.page-hero__inner p:last-child { max-width: 72ch; color: var(--muted); }
.section {
  padding: 26px 0 32px;
}
.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,0));
}
.section--lined {
  border-top: 1px solid rgba(18,27,36,.08);
  border-bottom: 1px solid rgba(18,27,36,.08);
  padding: 34px 0;
}
.section-stack {
  display: grid;
  gap: 22px;
}
.section-heading {
  display: grid;
  gap: 10px;
  max-width: 70ch;
}
.section-heading p:last-child { color: var(--muted); }
.section-heading--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.grid--three > * { grid-column: span 4; }
.grid--two > * { grid-column: span 6; }
.info-card,
.rate-card,
.form-panel,
.faq-panel,
.note-band {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-card,
.rate-card { padding: 24px; display: grid; gap: 12px; }
.info-card--large { min-height: 100%; }
.info-card p,
.rate-card p { color: var(--muted); }
.rate-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  color: var(--navy);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-tag {
  padding: 12px 18px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  line-height: 1;
  color: var(--ink);
}
.tag-cloud--full .city-tag { border-radius: 999px; }
.tag-cloud--board { justify-content: center; }
.coverage-board { padding: 6px 0; }
.note-band {
  padding: 18px 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}
.process-list,
.bullet-stack {
  display: grid;
  gap: 14px;
  padding-left: 1.2rem;
}
.process-list li,
.bullet-stack li {
  padding-left: 4px;
}
.process-list strong { display: block; margin-bottom: 3px; }
.process-list span { color: var(--muted); }
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.rate-table th,
.rate-table td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(18,27,36,.08);
  vertical-align: top;
}
.rate-table th {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .98rem;
  background: rgba(13,47,76,.04);
}
.rate-table tr:last-child td { border-bottom: 0; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  display: grid;
  grid-template-columns: minmax(100px, 120px) 1fr;
  gap: 12px;
  margin-top: 0;
}
.contact-list strong { color: var(--navy); font-family: var(--font-display); }
.form-panel {
  padding: 24px;
}
.quote-form {
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid__full { grid-column: 1 / -1; }
.quote-form label {
  display: grid;
  gap: 8px;
}
.quote-form label > span {
  font-size: .94rem;
  font-weight: 700;
  color: var(--ink);
}
input, textarea, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-family: var(--font-body);
  color: var(--ink);
}
textarea { resize: vertical; }
.quote-preview {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .94rem;
  line-height: 1.55;
  background: #fbfaf7;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-note {
  color: var(--muted);
  min-height: 1.5em;
}
.form-note.is-error { color: var(--error); }
.form-note.is-success { color: var(--success); }
.faq-panel {
  padding: 24px;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  padding: 16px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 10px; color: var(--muted); }
.site-footer {
  padding: 40px 0 100px;
  border-top: 1px solid rgba(18,27,36,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.brand-lockup--footer small { max-width: 34ch; }
.footer-heading {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.footer-links li { margin: 0; }
.footer-links a { text-decoration: none; color: var(--navy); }
.footer-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(18,27,36,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(18,27,36,.12);
  background: rgba(248,247,243,.94);
  backdrop-filter: blur(10px);
}
.mobile-actions__item {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid rgba(18,27,36,.08);
}
.mobile-actions__item:last-child { border-right: 0; }
.mobile-actions__item--primary {
  background: var(--navy);
  color: #fff;
}
.rail-link:focus-visible,
.action-link:focus-visible,
.button:focus-visible,
.rail-toggle:focus-visible,
.rail-row:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(13,47,76,.3);
  outline-offset: 4px;
}
@media (max-width: 1080px) {
  .site-rail, .nav-actions .action-link, .nav-actions .button { display: none; }
  .rail-toggle { display: inline-flex; }
  .hero-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid--three > *, .grid--two > * { grid-column: span 12; }
}
@media (max-width: 820px) {
  .frame { padding-inline: var(--gutter-tablet); }
  .trust-strip { grid-template-columns: 1fr; }
  .section-heading--split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; }
  .mobile-actions { display: grid; }
}
@media (max-width: 640px) {
  .frame { padding-inline: var(--gutter-mobile); }
  .utility-bar__inner { min-height: 54px; align-items: start; justify-content: start; padding-block: 10px; flex-direction: column; }
  .nav-shell__inner { min-height: 72px; }
  .brand-lockup img { width: 46px; height: 46px; }
  .brand-lockup strong { font-size: 1rem; }
  .brand-lockup small { font-size: .88rem; }
  .hero { padding-top: 46px; }
  .page-hero { padding-top: 42px; }
  .hero-actions,
  .form-actions { align-items: stretch; }
  .hero-actions .button,
  .form-actions .button { width: 100%; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .city-tag { border-radius: 14px; }
  .site-footer { padding-bottom: 118px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


.grid--four > * { grid-column: span 3; }
.feature-grid .info-card { min-height: 100%; }
.trust-strip--compact { margin-top: 2px; }
.review-grid { align-items: stretch; }
.review-card {
  grid-column: span 4;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.star-row {
  color: #1b63c7;
  letter-spacing: .18em;
  font-size: 1rem;
  line-height: 1;
}
.review-source {
  font-size: .84rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  font-weight: 700;
}
.review-body {
  color: var(--ink);
  font-size: 1rem;
}
.review-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-band__item {
  padding: 18px 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.review-band__item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
}
.review-band__item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
@media (max-width: 1080px) {
  .grid--four > *, .review-card { grid-column: span 12; }
}
@media (max-width: 820px) {
  .review-band { grid-template-columns: 1fr; }
}
