:root {
  --ink: #102b36;
  --ink-soft: #49616a;
  --deep: #123b4a;
  --deep-2: #0b2b36;
  --maple: #c84f3d;
  --maple-dark: #a93d2e;
  --sage: #dfe9e2;
  --cream: #f6f5f0;
  --paper: #ffffff;
  --line: #d9e2df;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(15, 43, 54, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 11px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

:focus-visible {
  outline: 3px solid #ed8b79;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 4.9rem);
  max-width: 760px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding: 104px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--deep-2);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 43, 54, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--maple);
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 8px 20px rgba(200, 79, 61, 0.2);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.brand-name span {
  color: var(--maple);
}

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

.site-nav > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #314e59;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.nav-phone):hover {
  color: var(--maple-dark);
}

.site-nav .nav-phone {
  padding: 0 17px;
  color: var(--paper);
  background: var(--deep);
  border-radius: 999px;
}

.site-nav .nav-phone:hover {
  background: var(--deep-2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 79, 61, 0.13), transparent 29%),
    linear-gradient(135deg, #f7f6f1 0%, #eef4ef 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(18, 59, 74, 0.08);
  border-radius: 50%;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -300px;
  right: -150px;
}

.hero::after {
  width: 380px;
  height: 380px;
  right: 7%;
  bottom: -280px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--maple-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--maple);
  box-shadow: 0 12px 24px rgba(200, 79, 61, 0.2);
}

.button-primary:hover {
  background: var(--maple-dark);
}

.button-secondary {
  border-color: #bbc9c5;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.58);
}

.button-secondary:hover {
  border-color: var(--deep);
  background: var(--paper);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #39535c;
  font-size: 0.86rem;
  font-weight: 650;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 17px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--maple);
  border-radius: 50%;
  transform: translateY(-50%);
}

.planning-card {
  position: relative;
  padding: 34px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.planning-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  content: "";
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.055) 50%);
  border-radius: 0 var(--radius-lg) 0 0;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d6e7dc;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  content: "";
  background: #83b99a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(131, 185, 154, 0.12);
}

.planning-card h2 {
  margin-bottom: 15px;
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.planning-card > p {
  margin-bottom: 30px;
  font-size: 0.96rem;
}

.mini-process {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-process li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
}

.mini-process li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #f5b6aa;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.mini-process strong,
.mini-process small {
  display: block;
}

.mini-process strong {
  color: var(--paper);
  font-size: 0.9rem;
}

.mini-process small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.78rem;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.split-heading .eyebrow {
  margin-bottom: 0;
}

.split-heading .eyebrow {
  margin-bottom: 18px;
}

.split-heading > p {
  padding-bottom: 7px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 32px;
  background: #f7f8f5;
  border: 1px solid #e1e7e3;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #c7d4cf;
  box-shadow: 0 18px 42px rgba(15, 43, 54, 0.08);
  transform: translateY(-4px);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--maple), transparent 55%);
}

.service-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  place-items: center;
  color: var(--maple-dark);
  background: #f2e4df;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 850;
}

.service-card h3 {
  font-size: 1.45rem;
}

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

.service-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #3d5963;
  font-size: 0.88rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 18px;
}

.service-card li::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #8aa99a;
  border-radius: 50%;
}

.service-note {
  margin: 24px 0 0;
  padding: 17px 20px;
  color: #455e67;
  background: #eef3ef;
  border-left: 3px solid #8aa99a;
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
}

.section-dark {
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep-2);
}

.light-heading h2,
.section-dark h3 {
  color: var(--paper);
}

.light-heading .eyebrow {
  color: #f5aa9d;
}

.light-heading > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.67);
}

.approach-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  counter-reset: steps;
}

.approach-grid li {
  min-height: 235px;
  padding: 28px 35px 12px 0;
  border-top: 1px solid var(--line-dark);
}

.approach-grid li + li {
  padding-left: 35px;
  border-left: 1px solid var(--line-dark);
}

.step-label {
  display: block;
  margin-bottom: 47px;
  color: #f5aa9d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-grid h3 {
  font-size: 1.45rem;
}

.approach-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(55px, 10vw, 130px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-panel {
  padding: 36px;
  background: var(--paper);
  border: 1px solid #e3e3dd;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(15, 43, 54, 0.07);
}

.panel-kicker {
  display: block;
  margin-bottom: 25px;
  color: var(--maple-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-panel h3 {
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.about-panel address {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-style: normal;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--maple-dark);
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.disclosure {
  padding: 35px 0;
  border-block: 1px solid var(--line);
  background: #fbfcfa;
}

.disclosure-inner {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 18px;
  max-width: 970px;
}

.disclosure-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  background: var(--sage);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.disclosure h2 {
  margin: 1px 0 6px;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.disclosure p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 10vw, 125px);
}

.faq-heading {
  position: sticky;
  top: 128px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  content: "+";
  color: var(--maple-dark);
  background: #f2e7e3;
  border-radius: 50%;
  line-height: 27px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 52px 25px 0;
  color: var(--ink-soft);
}

.contact {
  padding-top: 25px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: clamp(36px, 6vw, 68px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 70px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--maple);
  border-radius: var(--radius-lg);
}

.contact-card::after {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -155px;
  bottom: -175px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  max-width: 680px;
  color: var(--paper);
}

.contact-card p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.light-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.button-light {
  color: var(--maple-dark);
  background: var(--paper);
}

.button-light:hover {
  background: #fff6f3;
}

.contact-details {
  display: flex;
  padding: 30px;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(112, 33, 23, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  font-style: normal;
}

.contact-details strong {
  margin: 5px 0 15px;
  color: var(--paper);
  font-size: 1.18rem;
}

.contact-details a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  color: var(--paper);
  font-weight: 800;
}

.site-footer {
  padding: 68px 0 25px;
  color: #94aab2;
  background: #081f28;
}

.footer-grid {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 45px;
}

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

.footer-grid > div:first-child > p {
  max-width: 360px;
  margin: 15px 0 0;
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
}

.footer-contact a,
.footer-nav a,
.footer-bottom a {
  color: #d0dde1;
}

.footer-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  min-height: 32px;
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
}

/* Legal and utility pages */
.subpage-header .header-inner {
  min-height: 76px;
}

.simple-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.simple-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #36545e;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.simple-nav a:last-child {
  padding: 0 16px;
  color: var(--paper);
  background: var(--deep);
  border-radius: 999px;
}

.legal-hero {
  padding: 75px 0 58px;
  background: linear-gradient(135deg, #f7f6f1, #edf3ef);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.legal-hero p {
  color: var(--ink-soft);
}

.legal-layout {
  display: grid;
  padding: 75px 0 105px;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: space-between;
  gap: 70px;
}

.legal-aside {
  align-self: start;
  padding: 22px;
  background: #f5f7f4;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-aside strong,
.legal-aside span,
.legal-aside a {
  display: block;
}

.legal-aside strong {
  margin-bottom: 8px;
}

.legal-aside span,
.legal-aside a {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.legal-aside a {
  min-height: 40px;
  padding-top: 9px;
  color: var(--maple-dark);
  font-weight: 750;
}

.legal-content h2 {
  margin: 48px 0 15px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #3f5a64;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  padding: 4px 0;
}

.legal-note {
  margin: 36px 0;
  padding: 20px 22px;
  color: #344f59;
  background: #eff4f0;
  border-left: 3px solid #89a897;
  border-radius: 0 10px 10px 0;
}

.utility-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f7f6f1, #eaf1ec);
}

.utility-card {
  width: min(100%, 620px);
  padding: clamp(35px, 7vw, 62px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.utility-card .brand {
  margin-bottom: 42px;
}

.utility-code {
  display: block;
  margin-bottom: 10px;
  color: var(--maple-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.utility-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
}

.utility-card p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a {
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 45px;
  }

  .planning-card {
    padding: 28px;
  }

  .service-card {
    min-height: 415px;
    padding: 27px;
  }

  .about-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding: 80px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 82px);
    padding: 22px 20px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 55px rgba(15, 43, 54, 0.12);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav > a {
    min-height: 50px;
    padding: 0 12px;
    font-size: 1rem;
  }

  .site-nav .nav-phone {
    justify-content: center;
    margin-top: 10px;
  }

  .hero {
    padding: 70px 0 74px;
  }

  .hero-grid,
  .split-heading,
  .about-grid,
  .faq-grid,
  .contact-card,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .planning-card {
    max-width: 600px;
  }

  .split-heading {
    gap: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .service-number {
    margin-bottom: 30px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid li,
  .approach-grid li + li {
    min-height: auto;
    padding: 30px 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .step-label {
    margin-bottom: 30px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-panel {
    max-width: 520px;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-heading {
    position: static;
  }

  .contact-card {
    gap: 40px;
  }

  .contact-details {
    max-width: 470px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 25px;
  }

  .legal-layout {
    padding-top: 55px;
    gap: 42px;
  }

  .legal-aside {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .brand-name {
    font-size: 1.04rem;
  }

  .hero {
    padding: 56px 0 62px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.55rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .planning-card,
  .about-panel,
  .contact-details {
    padding: 25px;
  }

  .service-card {
    padding: 25px;
  }

  .disclosure-inner {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding-right: 42px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .contact {
    padding: 8px 0 72px;
  }

  .contact-card {
    width: min(calc(100% - 18px), var(--container));
    border-radius: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    grid-column: auto;
    flex-direction: column;
  }

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

  .simple-nav a:first-child {
    display: none;
  }

  .legal-hero {
    padding: 56px 0 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Business-transparency additions */
.site-nav {
  gap: 22px;
}

.about-panel .text-link,
.contact-details a,
.footer-contact a,
.legal-aside a,
.business-facts a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.disclosure-link {
  min-height: 38px;
  margin-top: 2px;
  font-size: 0.88rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--paper);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.business-facts {
  margin: 4px 0 38px;
  border-top: 1px solid var(--line);
}

.business-facts > div {
  display: grid;
  padding: 14px 0;
  grid-template-columns: minmax(135px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.business-facts dt {
  color: var(--ink);
  font-weight: 760;
}

.business-facts dd {
  margin: 0;
  color: #3f5a64;
}

.legal-note strong {
  color: var(--ink);
}

@media (max-width: 560px) {
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}


/* Service-scope section */
.scope {
  background: #f7f8f5;
  border-bottom: 1px solid var(--line);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 110px);
}

.scope-heading {
  position: sticky;
  top: 128px;
  margin-bottom: 0;
}

.scope-heading > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.scope-cards {
  display: grid;
  gap: 14px;
}

.scope-cards article {
  position: relative;
  padding: 27px 28px 27px 82px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(15, 43, 54, 0.045);
}

.scope-cards article > span {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--maple-dark);
  background: #f2e4df;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 850;
}

.scope-cards h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.scope-cards p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .scope-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .scope-cards article {
    padding: 74px 24px 25px;
  }

  .scope-cards article > span {
    top: 24px;
    left: 24px;
  }
}
