@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #112c3f;
  --ink-strong: #0a2131;
  --ink-soft: #375467;
  --paper: #f7f4ed;
  --paper-deep: #eee9dd;
  --white: #ffffff;
  --line: #d7dfdf;
  --blue-pale: #e9f1f2;
  --section-mist: #e6ece6;
  --meta-warm: #efeee6;
  --teal: #3a7777;
  --teal-dark: #245f61;
  --gold: #bd8444;
  --gold-pale: #f6e9d7;
  --success: #245f4a;
  --shadow: 0 24px 60px rgba(10, 33, 49, 0.1);
  --shadow-soft: 0 14px 32px rgba(10, 33, 49, 0.07);
  --radius-lg: 12px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --content: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  background: rgba(10, 33, 49, 0.28);
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

img,
svg {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-strong);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid rgba(17, 44, 63, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 6px var(--blue-pale);
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 50% 50%;
}

.brand-mark::before {
  width: 4px;
  height: 18px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to bottom, var(--gold) 0 50%, var(--ink) 50% 100%);
  transform: translate(-50%, -50%) rotate(38deg);
}

.brand-mark::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--blue-pale);
}

.site-nav .nav-cta {
  margin-left: 5px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background: var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero::before,
.hero::after {
  display: none;
}

.hero::before {
  top: -220px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(58, 119, 119, 0.18);
  box-shadow: inset 0 0 0 75px rgba(233, 241, 242, 0.68), inset 0 0 0 76px rgba(58, 119, 119, 0.12);
}

.hero::after {
  right: 85px;
  top: 108px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  box-shadow: 0 0 0 11px var(--paper), 0 0 0 12px rgba(189, 132, 68, 0.32);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: 30px;
  align-items: center;
}

.hero-visual {
  width: min(760px, 51vw);
  margin: 0 -90px 0 -48px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1448 / 1086;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 70% 50%, #000 55%, rgba(0, 0, 0, 0.94) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 78% at 70% 50%, #000 55%, rgba(0, 0, 0, 0.94) 72%, transparent 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink-strong);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6.7vw, 6.15rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.8rem, 5.8vw, 5.25rem);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  letter-spacing: -0.015em;
}

.lead {
  max-width: 730px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 44, 63, 0.28);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--teal);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--ink);
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.arrow {
  font-size: 1.2em;
  line-height: 1;
  transition: transform 160ms ease;
}

.button:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.trust-strip {
  padding: 24px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-strip-inner span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-white {
  background: var(--paper);
}

.section-blue {
  background: var(--section-mist);
}

.section-dark {
  color: var(--white);
  background: var(--ink-strong);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: #bdd2d3;
}

.section-dark .lead {
  color: #c9d7dc;
}

.section-dark .check-list li {
  color: #edf3f4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-dark .section-heading p {
  color: #c5d4da;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

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

.problem-item {
  padding: 26px 10px 4px 0;
  border-top: 1px solid var(--line);
}

.problem-item .card-number {
  min-width: 0;
  height: auto;
  margin-bottom: 18px;
  padding: 0;
  color: var(--gold);
  background: transparent;
  border-radius: 0;
  font-size: 0.78rem;
}

.card p:last-child,
.service-card p:last-child {
  margin-bottom: 0;
}

.card-number,
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 22px;
  padding-inline: 9px;
  color: var(--teal-dark);
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card p,
.service-card p,
.content-block p {
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 28px 26px 22px 0;
  counter-increment: process;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  width: 45%;
  height: 1px;
  background: rgba(58, 119, 119, 0.38);
}

.process-step::before {
  content: "0" counter(process);
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

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

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 119, 119, 0.62);
}

.service-card-addon {
  background: var(--gold-pale);
  border-color: #e6c99f;
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.quote-panel {
  padding: 36px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-panel blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.28;
}

.quote-panel p {
  margin: 22px 0 0;
  color: #d4e5e4;
  font-size: 0.95rem;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 17px;
  height: 9px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: var(--ink-strong);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 44px;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-band p {
  max-width: 720px;
  margin: 0;
  color: #c8d6dc;
}

.page-hero {
  padding: 86px 0 68px;
  border-bottom: 1px solid rgba(17, 44, 63, 0.11);
}

.page-hero .lead {
  max-width: 810px;
}

.breadcrumb {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 700;
}

.breadcrumb a {
  color: inherit;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 64px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail h2 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.service-duration {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-duration strong {
  color: var(--ink-strong);
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.meta-box {
  padding: 20px;
  background: var(--meta-warm);
  border-radius: var(--radius-sm);
}

.meta-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
}

.meta-box p {
  margin: 0;
  font-size: 0.94rem;
}

.addon-callout {
  padding: 38px;
  background: var(--gold-pale);
  border: 1px solid #e7cba5;
  border-radius: var(--radius-lg);
}

.addon-callout .service-index {
  color: #724d22;
  background: rgba(255, 255, 255, 0.58);
}

.content-narrow {
  max-width: 850px;
}

.content-block + .content-block {
  margin-top: 44px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.fact {
  padding: 22px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 72px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.contact-card {
  padding: 24px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.direct-contact {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.direct-contact p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.direct-contact strong {
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.direct-contact a {
  width: fit-content;
  color: var(--ink-strong);
  font-weight: 800;
}

.response-time {
  margin: 18px 0 0;
  color: var(--ink-strong);
  font-weight: 800;
}

.contact-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--ink-strong);
  font-size: 0.91rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid #c8d3d4;
  border-radius: var(--radius-sm);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(58, 119, 119, 0.17);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal-dark);
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5em;
  color: var(--success);
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 50px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.14rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-note {
  margin: 28px 0;
  padding: 22px;
  background: var(--blue-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  padding: 58px 0 28px;
  color: #c8d7dd;
  background: #071b29;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.55fr));
  gap: 52px;
  padding-bottom: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-intro {
  max-width: 470px;
  margin: 18px 0 0;
  color: #aebfc7;
}

.footer-heading {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c8d7dd;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #91a5ae;
  font-size: 0.83rem;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found-code {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
}

@media (max-width: 980px) {
  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    z-index: 300;
    inset: 0 0 auto;
    width: 100%;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    width: min(86vw, 390px);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: -20px 40px 50px rgba(10, 33, 49, 0.14);
    visibility: visible;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 1.02rem;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero,
  .page-hero {
    padding: 60px 0 52px;
  }

  .hero::before {
    top: -250px;
    right: -310px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.15rem);
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quote-panel,
  .contact-form,
  .addon-callout {
    padding: 25px;
    border-radius: var(--radius-lg);
  }

  .section {
    padding: 70px 0;
  }

  .section-compact {
    padding: 54px 0;
  }

  .card-grid,
  .problem-list,
  .service-grid,
  .process-grid,
  .fact-grid,
  .service-meta,
  .form-grid,
  .footer-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .card,
  .service-card {
    padding: 24px;
  }

  .service-card {
    min-height: 0;
  }

  .process-step {
    padding-right: 0;
  }

  .cta-band {
    padding: 58px 0;
  }

  .cta-band-inner {
    gap: 28px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
