:root {
  --navy: #17324d;
  --navy-deep: #0e2438;
  --navy-soft: #2d4c68;
  --coral: #e66f58;
  --coral-dark: #c9503f;
  --coral-pale: #f8ddd5;
  --ivory: #fbf8f2;
  --ivory-deep: #f2ebe1;
  --white: #ffffff;
  --ink: #1e2c38;
  --muted: #66717a;
  --line: #ddd7cf;
  --gold: #b68a4b;
  --green: #537363;
  --shadow-sm: 0 8px 24px rgba(23, 50, 77, 0.08);
  --shadow-md: 0 20px 55px rgba(23, 50, 77, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-dark);
}

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

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

h1,
h2,
h3 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.7vw, 5.5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.2em;
}

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

.shell--narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-160%);
}

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

.service-note {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.service-note__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.service-note__inner span:not(:last-child)::after {
  content: '•';
  margin-left: 34px;
  color: var(--coral);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 50, 77, 0.09);
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(23, 50, 77, 0.08);
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-deep);
}

.brand__mark {
  position: relative;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--coral);
}

.brand__mark::before {
  content: '';
  position: absolute;
  width: 23px;
  height: 23px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
}

.brand__mark span {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand__text small {
  margin-top: 6px;
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--navy-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  background: var(--coral-pale);
  color: var(--navy-deep);
}

.header-call {
  display: flex;
  min-width: 174px;
  padding: 9px 15px;
  flex-direction: column;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.header-call:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.header-call span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 3px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-deep);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 11px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--coral-pale);
}

.hero {
  position: relative;
  padding: clamp(46px, 7vw, 96px) 0 44px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -220px;
  left: -170px;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: rgba(230, 111, 88, 0.12);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.hero h1 {
  max-width: 750px;
}

.hero h1 em {
  position: relative;
  color: var(--coral-dark);
  font-style: normal;
  white-space: nowrap;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #42515d;
  font-size: clamp(1.07rem, 1.8vw, 1.27rem);
  line-height: 1.65;
}

.hero__actions {
  display: grid;
  max-width: 660px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.phone-choice {
  display: flex;
  min-height: 132px;
  padding: 19px 21px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  line-height: 1.28;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.phone-choice:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.phone-choice span {
  margin-bottom: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-choice strong {
  font-size: clamp(1.25rem, 2vw, 1.52rem);
  letter-spacing: 0.025em;
}

.phone-choice small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  line-height: 1.4;
}

.phone-choice--coral {
  background: var(--coral);
  color: var(--navy-deep);
}

.phone-choice--coral:hover {
  background: var(--coral-dark);
  color: var(--white);
}

.phone-choice--coral small {
  color: rgba(14, 36, 56, 0.78);
}

.phone-choice--coral:hover small {
  color: rgba(255, 255, 255, 0.82);
}

.hero__provider {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -30px;
  bottom: -30px;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  background: var(--coral);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg) var(--radius-lg) 100px var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  display: flex;
  width: 132px;
  height: 132px;
  padding: 16px;
  align-items: center;
  justify-content: center;
  border: 7px solid var(--ivory);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-6deg);
}

.trust-strip {
  padding: 0 0 54px;
}

.trust-strip__inner {
  display: grid;
  padding: 20px 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.trust-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.94rem;
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding: clamp(72px, 9vw, 122px) 0;
}

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

.section--navy {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
}

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

.section--coral-pale {
  background: var(--coral-pale);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 45px;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
}

.service-card::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border: 45px solid rgba(230, 111, 88, 0.16);
  border-radius: 50%;
}

.service-card--navy {
  border-color: var(--navy);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.service-card--navy h3 {
  color: var(--white);
}

.service-card__number {
  margin-bottom: 24px;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 1;
}

.service-card--navy .service-card__number {
  color: var(--coral-pale);
}

.service-card p {
  max-width: 520px;
}

.service-card__call {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 13px 19px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
}

.service-card__call:hover {
  background: var(--coral-dark);
  color: var(--white);
}

.service-card__price {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split__visual {
  position: relative;
}

.split__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.split__visual::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 78%;
  height: 72%;
  border-radius: var(--radius-lg);
  background: var(--coral-pale);
}

.split__copy > p {
  color: #4b5964;
  font-size: 1.05rem;
}

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

.text-link::after {
  content: '→';
  color: var(--coral-dark);
  font-size: 1.25rem;
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  padding: 30px;
  border-top: 3px solid var(--coral);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.step-card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--coral-pale);
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.guide-card > a:first-child {
  display: block;
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 300ms ease;
}

.guide-card:hover img {
  transform: scale(1.025);
}

.guide-card__body {
  padding: 24px;
}

.guide-card__meta {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.guide-card h3 a {
  color: var(--navy-deep);
  text-decoration: none;
}

.guide-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.6;
}

.faq-list {
  max-width: 860px;
}

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

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.22rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 20px;
  right: 5px;
  color: var(--coral-dark);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
}

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

.faq-list details > div {
  max-width: 720px;
  padding: 0 0 22px;
  color: #53616c;
}

.page-hero {
  padding: clamp(62px, 8vw, 110px) 0 clamp(48px, 7vw, 82px);
  background:
    radial-gradient(circle at 82% 18%, rgba(230, 111, 88, 0.17), transparent 27%),
    var(--ivory);
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.page-hero__intro {
  max-width: 760px;
  margin-bottom: 0;
  color: #44535f;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb span:last-child {
  color: var(--coral-dark);
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(50px, 7vw, 92px);
}

.prose {
  max-width: 780px;
}

.prose > p:first-child {
  color: var(--navy-soft);
  font-size: 1.16rem;
}

.prose h2 {
  margin-top: 2.05em;
  font-size: clamp(1.8rem, 3.3vw, 2.9rem);
}

.prose h3 {
  margin-top: 1.75em;
}

.prose p {
  color: #3f4e59;
}

.prose a {
  color: var(--coral-dark);
  font-weight: 700;
}

.prose blockquote {
  margin: 38px 0;
  padding: 6px 0 6px 28px;
  border-left: 4px solid var(--coral);
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.prose-note {
  margin: 32px 0;
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  background: var(--coral-pale);
  color: var(--navy-deep);
}

.prose-note strong {
  display: block;
  margin-bottom: 5px;
}

.inline-call {
  display: grid;
  margin: 38px 0;
  padding: 28px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.inline-call h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.45rem;
}

.inline-call p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.inline-call a {
  display: inline-flex;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.content-sidebar {
  align-self: start;
}

.sidebar-card {
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h2,
.sidebar-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.sidebar-call {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.sidebar-call:hover {
  background: var(--coral-dark);
  color: var(--white);
}

.sidebar-call strong,
.sidebar-call small {
  display: block;
}

.sidebar-call small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
}

.article-hero {
  padding: clamp(52px, 7vw, 90px) 0 0;
}

.article-hero__copy {
  max-width: 930px;
  margin-bottom: 42px;
}

.article-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.9rem);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.79rem;
}

.article-meta span:not(:last-child)::after {
  content: '•';
  margin-left: 14px;
  color: var(--coral);
}

.article-hero__image {
  width: 100%;
  max-height: 610px;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.article-body {
  padding: clamp(58px, 8vw, 96px) 0;
}

.article-body .prose {
  margin-inline: auto;
}

.related-guides {
  padding: 76px 0 100px;
  background: var(--white);
}

.guides-intro {
  max-width: 760px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.guides-grid .guide-card__body {
  padding: 28px;
}

.guides-grid .guide-card h3 {
  font-size: 1.7rem;
}

.call-band {
  padding: 70px 0;
  background: var(--coral);
}

.call-band__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 54px;
}

.call-band__copy h2 {
  margin-bottom: 14px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.call-band__copy p {
  margin-bottom: 0;
  color: rgba(14, 36, 56, 0.76);
}

.call-band__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.phone-choice--light {
  background: var(--ivory);
  color: var(--navy-deep);
}

.phone-choice--light:hover {
  background: var(--white);
  color: var(--navy-deep);
}

.phone-choice--light small {
  color: var(--muted);
}

.phone-choice--outline {
  border-color: rgba(14, 36, 56, 0.42);
  background: transparent;
  color: var(--navy-deep);
  box-shadow: none;
}

.phone-choice--outline:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.phone-choice--outline small {
  color: rgba(14, 36, 56, 0.72);
}

.phone-choice--outline:hover small {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 72px 0 25px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.67);
}

.site-footer__grid {
  display: grid;
  padding-bottom: 56px;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 46px;
}

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

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

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  font-size: 0.86rem;
}

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

.footer-nav strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--coral-pale);
}

.site-footer__bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.73rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:last-child {
  max-width: 570px;
  text-align: right;
}

.not-found {
  min-height: 58vh;
  padding: 100px 0;
  text-align: center;
}

.not-found__code {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.8;
}

.button {
  display: inline-flex;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--coral-dark);
  color: var(--white);
}

@media (max-width: 1060px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .main-nav {
    position: fixed;
    top: 116px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    box-shadow: var(--shadow-md);
  }

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

  .main-nav a {
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .hero__grid,
  .split,
  .split--reverse,
  .call-band__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero__visual {
    max-width: 780px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

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

  .service-note__inner {
    min-height: 31px;
  }

  .service-note__inner span:not(:first-child) {
    display: none;
  }

  .service-note__inner span::after {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .main-nav {
    top: 98px;
    right: 14px;
    left: 14px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__text strong {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__grid {
    gap: 54px;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero__actions,
  .service-grid,
  .step-grid,
  .guide-grid,
  .guides-grid,
  .call-band__actions,
  .content-sidebar,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual::before {
    right: -12px;
    bottom: -12px;
  }

  .hero__badge {
    bottom: -18px;
    left: 15px;
    width: 108px;
    height: 108px;
    border-width: 5px;
    font-size: 1rem;
  }

  .trust-strip {
    padding-top: 20px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-item:not(:last-child) {
    padding-bottom: 17px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .service-card {
    min-height: 380px;
  }

  .split--reverse .split__visual {
    order: 2;
  }

  .inline-call {
    grid-template-columns: 1fr;
  }

  .inline-call a {
    justify-self: start;
  }

  .article-hero__image {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .article-meta span::after {
    display: none;
  }

  .call-band {
    padding: 64px 0;
  }

  .site-footer__grid {
    gap: 30px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }
}

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