:root {
  --navy: #061f3f;
  --navy-2: #082a52;
  --navy-3: #0d355f;
  --red: #c91523;
  --red-2: #df2635;
  --ink: #102033;
  --muted: #607085;
  --line: #dce3ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --soft: #f3f6f8;
  --soft-2: #eef3f5;
  --gold: #c49a5f;
  --teal: #2f847f;
  --shadow: 0 24px 70px rgba(6, 31, 63, .16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url("../backgrounds/quadrant-paper-pattern.svg") 0 0 / 144px 144px;
  opacity: .56;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 100;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 21, 35, .34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(6, 31, 63, .08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.brand-mark span {
  display: block;
  background: var(--red);
  border-radius: 2px 14px 2px 2px;
}

.brand-mark span:nth-child(2) {
  background: var(--red-2);
  border-radius: 14px 2px 2px 2px;
}

.brand-mark span:nth-child(3) {
  background: #a90f1d;
  border-radius: 2px 2px 2px 14px;
}

.brand-mark span:nth-child(4) {
  background: #e03a45;
  border-radius: 2px 2px 14px 2px;
}

.brand-text {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: .92;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 31, 63, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.btn {
  --btn-bg: var(--white);
  --btn-color: var(--navy);
  --btn-border: rgba(6, 31, 63, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6, 31, 63, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(6, 31, 63, .13);
}

.btn.primary {
  --btn-bg: var(--red);
  --btn-color: var(--white);
  --btn-border: var(--red);
}

.btn.dark {
  --btn-bg: var(--navy);
  --btn-color: var(--white);
  --btn-border: var(--navy);
}

.btn.ghost {
  --btn-bg: rgba(255, 255, 255, .12);
  --btn-color: var(--white);
  --btn-border: rgba(255, 255, 255, .42);
  box-shadow: none;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero.compact {
  min-height: 610px;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  opacity: .98;
  transition: opacity .8s ease;
}

.hero.loaded .hero-media img {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 31, 63, .9) 0%, rgba(6, 31, 63, .76) 37%, rgba(6, 31, 63, .34) 68%, rgba(6, 31, 63, .15) 100%),
    linear-gradient(0deg, rgba(6, 31, 63, .72), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--red) 0 38%, var(--gold) 38% 52%, var(--teal) 52% 100%);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 82px;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff7d86;
}

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

h1,
.display {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 74px;
  line-height: .94;
  font-weight: 700;
  letter-spacing: 0;
}

h1 .red,
.display .red {
  color: #ff4a55;
}

h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero p,
.lead {
  max-width: 670px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.7;
}

.section p,
.panel p,
.service-card p,
.timeline p,
.footer-main p,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-facts svg {
  width: 16px;
  height: 16px;
  color: #ff7d86;
}

.section {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section.tight {
  padding: 68px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.section-head p {
  margin-bottom: 0;
  font-size: 17px;
}

.benefit-rail {
  margin-top: -54px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid rgba(6, 31, 63, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefit {
  min-height: 190px;
  padding: 26px 22px;
  border-right: 1px solid rgba(6, 31, 63, .09);
}

.benefit:last-child {
  border-right: 0;
}

.number {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.benefit strong,
.dark-feature strong,
.fee-pill strong,
.step strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.benefit span:last-child,
.dark-feature span,
.fee-pill span,
.step span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.navy-band {
  position: relative;
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.navy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../motion-elements/settlement-path.svg") center 64px / min(980px, 92vw) auto no-repeat,
    linear-gradient(135deg, rgba(196, 154, 95, .12), transparent 42%);
  opacity: .72;
}

.navy-band .container {
  position: relative;
}

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

.navy-band p,
.navy-band span {
  color: rgba(255, 255, 255, .72);
}

.navy-band .quote-block {
  color: var(--white);
  border-left-color: #ff7d86;
}

.navy-band .fee-pill strong,
.navy-band .fee-pill .price {
  color: var(--navy);
}

.navy-band .fee-pill span {
  color: var(--muted);
}

.navy-band .fee-pill .number {
  color: var(--red);
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
}

.dark-feature {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}

.dark-feature span {
  color: rgba(255, 255, 255, .7);
}

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

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(6, 31, 63, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 44px rgba(6, 31, 63, .08);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .24s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 21, 35, .22);
  box-shadow: 0 26px 60px rgba(6, 31, 63, .13);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card .icon-wrap,
.contact-method .icon-wrap,
.timeline-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: rgba(201, 21, 35, .09);
  color: var(--red);
}

.service-card .icon-wrap svg,
.contact-method svg,
.timeline-marker svg {
  width: 22px;
  height: 22px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.editorial-image {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 110px;
  height: 110px;
  border-right: 16px solid var(--red);
  border-bottom: 16px solid var(--red);
}

.panel {
  padding: 34px;
  border: 1px solid rgba(6, 31, 63, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(6, 31, 63, .08);
}

.panel.dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, .12);
  color: var(--white);
}

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

.panel.dark p,
.panel.dark span {
  color: rgba(255, 255, 255, .74);
}

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

.check-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(6, 31, 63, .1);
  border-radius: var(--radius);
  background: var(--white);
}

.check-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(201, 21, 35, .08);
}

.quote-block {
  margin: 26px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--red);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.35;
}

.fee-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .55fr);
  gap: 22px;
  align-items: stretch;
}

.fee-pill {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(6, 31, 63, .1);
}

.fee-pill .price {
  display: block;
  margin: 10px 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
}

.step {
  position: relative;
  min-height: 236px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(6, 31, 63, .1);
  box-shadow: 0 18px 42px rgba(6, 31, 63, .07);
}

.step .timeline-marker {
  position: relative;
  z-index: 1;
  background: var(--navy);
  color: var(--white);
}

.step strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 63, .93), rgba(6, 31, 63, .78)),
    url("../images/editorial-estate-records.webp") center / cover no-repeat;
  color: var(--white);
}

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

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

.contact-section p {
  color: rgba(255, 255, 255, .76);
}

.form-panel,
.contact-aside {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.form-panel {
  padding: 36px;
}

.contact-aside {
  padding: 32px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  min-height: 50px;
  padding: 13px 14px;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.form-note a,
.form-message a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  outline: none;
}

.form-message[data-status="success"] {
  color: #d9f7e9;
}

.form-message[data-status="error"] {
  color: #ffe3e6;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.btn:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.privacy-content {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-content .panel {
  padding: 34px;
}

.privacy-content h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  line-height: 1.75;
}

.privacy-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.privacy-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-method .icon-wrap {
  margin: 0;
  background: rgba(255, 255, 255, .12);
  color: #ff7d86;
}

.site-footer {
  background: #041832;
  color: var(--white);
}

.footer-main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, .55fr));
  gap: 42px;
}

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

.site-footer .brand-text small {
  color: rgba(255, 255, 255, .68);
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-main h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(2) {
  transition-delay: .08s;
}

.stagger.is-visible > *:nth-child(3) {
  transition-delay: .16s;
}

.stagger.is-visible > *:nth-child(4) {
  transition-delay: .24s;
}

.stagger.is-visible > *:nth-child(5) {
  transition-delay: .32s;
}

.stagger.is-visible > *:nth-child(6) {
  transition-delay: .4s;
}

.stagger.is-visible > *:nth-child(7) {
  transition-delay: .48s;
}

.stagger.is-visible > *:nth-child(8) {
  transition-delay: .56s;
}

.stagger.is-visible > *:nth-child(9) {
  transition-delay: .64s;
}

.stagger.is-visible > *:nth-child(10) {
  transition-delay: .72s;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(6, 31, 63, .1);
    box-shadow: 0 28px 50px rgba(6, 31, 63, .14);
    transform: translateY(-130%);
    transition: transform .28s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: space-between;
    min-height: 52px;
    padding: 0 6px;
  }

  .site-nav .btn {
    margin-top: 10px;
  }

  h1,
  .display {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

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

  .benefit,
  .dark-feature {
    min-height: 160px;
  }

  .benefit:nth-child(2n) {
    border-right: 0;
  }

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

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

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 880px) {
  .nav-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: 76px;
  }

  .brand-text {
    font-size: 23px;
  }

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

  .site-nav {
    top: 76px;
  }

  .container,
  .hero-content,
  .footer-main {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero,
  .hero.compact {
    min-height: 640px;
  }

  .hero-content {
    padding: 92px 0 64px;
  }

  h1,
  .display {
    font-size: 44px;
  }

  .hero p,
  .lead {
    font-size: 18px;
  }

  .section {
    padding: 74px 0;
  }

  .section-head,
  .split-feature,
  .contact-layout,
  .fee-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .editorial-image,
  .editorial-image img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .hero,
  .hero.compact {
    min-height: 620px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 31, 63, .93) 0%, rgba(6, 31, 63, .82) 62%, rgba(6, 31, 63, .5) 100%),
      linear-gradient(0deg, rgba(6, 31, 63, .72), transparent 42%);
  }

  h1,
  .display {
    font-size: 37px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .hero p,
  .lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .actions,
  .hero-facts {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .benefit-rail,
  .dark-grid,
  .service-grid,
  .service-grid.two,
  .checklist,
  .timeline,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 31, 63, .09);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .service-card,
  .check-item,
  .step {
    min-height: auto;
  }

  .form-panel,
  .contact-aside,
  .panel {
    padding: 24px;
  }

  .footer-bottom .container {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-content .panel {
    padding: 24px;
  }
}

@media (max-width: 360px) {
  .nav-shell {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

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

  .brand-text {
    font-size: 20px;
    white-space: nowrap;
  }

  .brand-text small {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: none;
  }
}
