:root {
  color-scheme: light;
  --ink: #172235;
  --muted: #536173;
  --paper: #fffdf8;
  --surface: #f4f6f8;
  --surface-strong: #e9edf2;
  --brand: #2d4061;
  --brand-dark: #20314e;
  --teal: #0f6d72;
  --accent: #eeaa3f;
  --accent-ink: #6b4300;
  --line: #cbd3dc;
  --success: #235d49;
  --danger: #8b2f2f;
  --focus: #9a4f00;
  --max: 74rem;
  --narrow: 50rem;
  --radius: .9rem;
  --shadow: 0 .7rem 2rem rgba(27, 42, 66, .10);
  --step--1: clamp(.86rem, .82rem + .18vw, .96rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.08rem + .5vw, 1.52rem);
  --step-2: clamp(1.55rem, 1.25rem + 1vw, 2.15rem);
  --step-3: clamp(2.15rem, 1.55rem + 2.3vw, 3.65rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--teal); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: .13em; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: .2rem solid var(--focus); outline-offset: .22rem; }
main:focus { outline: none; }
h1, h2, h3 {
  margin: 0 0 .75rem;
  color: inherit;
  line-height: 1.13;
  letter-spacing: -.025em;
}
h1 { font-size: var(--step-3); max-width: 20ch; }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
p { margin-block: 0 1rem; }
ul, ol { margin-top: 0; }
blockquote {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border-left: .35rem solid var(--accent);
  background: var(--paper);
}
blockquote p:last-child { margin-bottom: 0; }
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.narrow { max-width: var(--narrow); }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: 1rem;
  transform: translateY(-160%);
  padding: .65rem .9rem;
  border: 2px solid var(--focus);
  background: white;
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, .98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-row, .contact-bar-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.header-row {
  min-height: 4.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.logo-link, .footer-logo { display: inline-flex; }
.logo-link img { width: 16.94rem; max-width: 60vw; }
.desktop-nav ul,
.mobile-nav ul,
.footer-nav,
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.desktop-nav ul { display: flex; align-items: center; gap: .92rem; }
.desktop-nav a,
.mobile-nav a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.desktop-nav a:not(.nav-cta):hover,
.mobile-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: .14em;
}
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: .14em;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: .55rem .8rem;
  border: 2px solid var(--brand);
  border-radius: .55rem;
  background: var(--brand);
  color: white !important;
}
.nav-cta:hover { background: var(--brand-dark); }
.menu-button {
  display: none;
  align-items: center;
  gap: .55rem;
  min-height: 2.8rem;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: .55rem;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.35rem;
  height: .13rem;
  background: currentColor;
  content: "";
}
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -.42rem; }
.menu-icon::after { position: absolute; top: .42rem; }
.mobile-nav { display: none; }
.contact-bar {
  background: var(--brand);
  color: white;
  font-size: var(--step--1);
}
.contact-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem .9rem;
  padding-block: .48rem;
  text-align: center;
}
.contact-bar a { color: white; font-weight: 800; }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  grid-template-areas:
    "copy media"
    "actions media"
    "tags media"
    "notice notice";
  gap: 1rem clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(2.2rem, 6vw, 5.5rem);
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-media {
  grid-area: media;
  margin: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 0;
}
.hero-media img,
.content-media img {
  width: 100%;
  max-height: 38rem;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-media figcaption,
.content-media figcaption {
  margin-top: .55rem;
  color: var(--muted);
  font-size: var(--step--1);
  text-align: center;
}
.hero-media--icon {
  min-height: 16rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, var(--surface));
  box-shadow: var(--shadow);
}
.hero-media--icon img {
  width: min(11rem, 45vw);
  max-height: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.hero-actions { grid-area: actions; margin-top: .25rem; align-self: start; }
.tag-list {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-self: start;
}
.tag-list li {
  padding: .32rem .62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: var(--step--1);
  font-weight: 700;
}
.hero-notice {
  grid-area: notice;
  margin-top: 1rem;
}
.eyebrow {
  margin: 0 0 .55rem;
  color: var(--accent-ink);
  font-size: var(--step--1);
  font-weight: 900;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.lede {
  max-width: 46rem;
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.55;
}
.section { padding-block: clamp(3.1rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.4rem); }
.section--surface { background: var(--surface); }
.section-intro { max-width: 48rem; color: var(--muted); font-size: var(--step-1); }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .7rem 1rem;
  border: 2px solid var(--brand);
  border-radius: .58rem;
  background: var(--brand);
  color: white;
  font-weight: 850;
  text-decoration: none;
}
.button:hover { background: var(--brand-dark); }
.button--secondary { background: transparent; color: var(--brand); }
.button--secondary:hover { background: var(--surface-strong); }
.notice {
  padding: 1rem 1.15rem;
  border: 1px solid #d5ad66;
  border-left: .4rem solid var(--accent);
  border-radius: .6rem;
  background: #fff8e9;
}
.notice h2 { font-size: var(--step-1); }
.notice p:last-child { margin-bottom: 0; }
.notice--strong { border-color: var(--teal); background: #eef7f6; }
.fee-notice { margin-top: 1.2rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.trust-item {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: var(--step--1); }
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 .25rem .85rem rgba(27,42,66,.05);
}
.card--muted { background: var(--surface-strong); }
.card p:last-child { margin-bottom: 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 .25rem .85rem rgba(27,42,66,.05);
}
.service-card:nth-child(5) { grid-column: 1 / -1; }
.card-icon { width: 3.3rem; height: 3.3rem; margin-bottom: 1rem; }
.service-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}
.service-card h3 a { color: inherit; }
.price {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: var(--step-2);
  font-weight: 900;
  white-space: nowrap;
}
.availability {
  color: var(--success);
  font-size: var(--step--1);
}
.fee-note { color: var(--muted); font-size: var(--step--1); }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: auto;
  padding-top: .4rem;
}
.card-actions .button { min-height: 2.75rem; padding: .6rem .8rem; }
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process article {
  counter-increment: step;
  padding-top: 1rem;
  border-top: .32rem solid var(--accent);
}
.process article::before {
  display: block;
  margin-bottom: .45rem;
  color: var(--accent-ink);
  content: counter(step, decimal-leading-zero);
  font-weight: 900;
}
.process h2, .process h3 { font-size: var(--step-1); }
.process--detailed article { padding-right: .6rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.content-media { margin: 0; }
.check-list,
.resource-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}
.check-list li,
.resource-list li { margin-bottom: .58rem; }
.check-list li::marker { color: var(--success); }
.check-list--stop li::marker { color: var(--danger); }
.cta-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, var(--surface));
  box-shadow: var(--shadow);
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
caption {
  padding: 0 0 .75rem;
  font-size: var(--step-1);
  font-weight: 850;
  text-align: left;
}
th, td {
  padding: .8rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
thead th { background: var(--surface-strong); }
.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.service-summary div {
  padding: 1rem;
  border-right: 1px solid var(--line);
}
.service-summary div:last-child { border-right: 0; }
.service-summary span {
  display: block;
  color: var(--muted);
  font-size: var(--step--1);
}
.service-summary strong { display: block; margin-top: .15rem; }
.faq-list { margin-top: 1.4rem; }
details {
  padding-block: .95rem;
  border-top: 1px solid var(--line);
}
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; }
details p { margin: .75rem 0 0; color: var(--muted); }
.prose h2 { margin-top: 2.2rem; }
.meta-line { color: var(--muted); font-size: var(--step--1); }
.response-note { margin-top: 1rem; color: var(--muted); font-size: var(--step--1); }
.contact-card h2 { font-size: var(--step-1); overflow-wrap: anywhere; }
.site-footer { background: var(--brand-dark); color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .95fr;
  gap: 2rem;
  padding-block: 3rem;
}
.footer-grid p { color: rgba(255,255,255,.8); }
.footer-grid a { color: white; }
.footer-heading { font-size: var(--step-1); }
.footer-nav li { margin-bottom: .48rem; }
.footer-bottom {
  padding-block: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: var(--step--1);
}
.scroll-top {
  position: fixed;
  z-index: 45;
  right: 1rem;
  bottom: 1rem;
  display: none;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}
.scroll-top[data-visible="true"] { display: inline-grid; }
@media (max-width: 62rem) {
  .desktop-nav { display: none; }
  .mobile-nav {
    display: block;
    border-top: 1px solid var(--line);
  }
  .mobile-nav ul {
    width: min(calc(100% - 2rem), var(--max));
    margin-inline: auto;
    padding-block: .45rem .9rem;
  }
  .mobile-nav a {
    display: block;
    padding: .66rem .2rem;
  }
  .js .menu-button { display: inline-flex; }
  .js .mobile-nav[data-open="false"] { display: none; }
  .js .mobile-nav[data-open="true"] { display: block; }
  .page-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "media" "actions" "tags" "notice";
    gap: 1.2rem;
  }
  .hero-media { min-height: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 42rem) {
  .header-row { min-height: 4.25rem; }
  .logo-link img { width: 13.4rem; }
  .contact-bar-inner { gap: .25rem .5rem; }
  .contact-bar-inner span[aria-hidden="true"] { display: none; }
  .trust-strip,
  .grid--2,
  .grid--3,
  .service-grid,
  .process,
  .footer-grid,
  .service-summary,
  .split { grid-template-columns: 1fr; }
  .service-card:nth-child(5) { grid-column: auto; }
  .trust-item,
  .service-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child,
  .service-summary div:last-child { border-bottom: 0; }
  .service-card__top { display: block; }
  .price { white-space: normal; }
  .button { width: 100%; }
  .card-actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@media (forced-colors: active) {
  .button, .nav-cta { border: 2px solid ButtonText; }
  .notice { border: 2px solid CanvasText; }
}
