:root {
  --navy-950: #071c2f;
  --navy-900: #0b2b49;
  --navy-800: #123b5e;
  --navy-700: #1c4e73;
  --brick-700: #963c23;
  --brick-600: #aa4729;
  --brick-500: #bd5a38;
  --brick-100: #f3e2d9;
  --brick-50: #fbf4ef;
  --sand-100: #f5f0e8;
  --sand-50: #fbf9f5;
  --slate-800: #253746;
  --slate-700: #3f5160;
  --slate-600: #596b78;
  --slate-400: #8b99a4;
  --line: #d9e1e6;
  --line-strong: #c4d0d8;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 28, 47, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 28, 47, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --wrap: 1240px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--slate-800);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -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: 0.2em;
}

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

button,
summary,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.35vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

::selection {
  color: var(--white);
  background: var(--brick-600);
}

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

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(196, 208, 216, 0.72);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

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

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

.brand-mark rect {
  fill: var(--navy-900);
}

.brand-mark path {
  fill: #d76a42;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.site-nav a {
  position: relative;
  color: var(--slate-700);
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brick-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--navy-900);
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover {
  background: var(--brick-700);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--navy-950);
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--sand-50) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: -15%;
  width: 62%;
  height: 82%;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(11, 43, 73, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 43, 73, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, #000 20%, transparent 92%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 6.5vw, 92px);
}

.hero-copy {
  padding-bottom: 44px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brick-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #efab8d;
}

.hero h1 {
  max-width: 10.5ch;
}

.hero h1 span {
  color: var(--brick-600);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--slate-700);
  font-size: clamp(1.06rem, 1.4vw, 1.23rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button span {
  margin-left: 10px;
  font-size: 1.2em;
  transition: transform 0.18s ease;
}

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

.button:hover span {
  transform: translateX(3px);
}

.button--brick {
  color: var(--white);
  background: var(--brick-700);
  box-shadow: 0 12px 28px rgba(150, 60, 35, 0.2);
}

.button--brick:hover {
  background: #7e301c;
  box-shadow: 0 16px 34px rgba(150, 60, 35, 0.26);
}

.button--ghost {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 14px;
  align-items: center;
  width: fit-content;
  margin-top: 34px;
  padding-left: 16px;
  border-left: 3px solid var(--brick-500);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-contact span {
  grid-column: 1 / -1;
  color: var(--slate-600);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact strong {
  color: var(--navy-950);
}

.hero-contact a {
  color: var(--brick-700);
  font-weight: 750;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 28, 47, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 28, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  backdrop-filter: blur(14px);
  font-size: 0.89rem;
  line-height: 1.48;
}

.hero-media figcaption strong {
  display: block;
  color: var(--white);
  font-size: 0.97rem;
}

.caption-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f1b69e;
  border: 1px solid rgba(239, 171, 141, 0.6);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.trust-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow-sm);
}

.trust-rail > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 96px;
  padding: 20px 28px;
}

.trust-rail > div + div {
  border-left: 1px solid var(--line);
}

.trust-rail svg {
  width: 31px;
  color: var(--brick-600);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-rail span {
  color: var(--slate-600);
  font-size: 0.86rem;
  line-height: 1.42;
}

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

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section--warm {
  background: var(--sand-100);
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 66px);
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}

.section-head--split h2,
.section-head--center h2 {
  margin-bottom: 0;
}

.section-head--split > p {
  margin-bottom: 4px;
  color: var(--slate-600);
  font-size: 1.04rem;
}

.section-head--center {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center > p:last-child {
  max-width: 730px;
  margin: 24px auto 0;
  color: var(--slate-600);
  font-size: 1.05rem;
}

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

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

.path-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(30px, 4.2vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.path-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

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

.path-card--sell h3,
.path-card--sell .check-list strong {
  color: var(--white);
}

.path-card--buy {
  color: var(--slate-700);
  background: var(--brick-50);
  border-color: #ead4c8;
}

.path-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.path-number {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.path-card--sell .path-number {
  color: #ed9e7e;
}

.path-card--buy .path-number {
  color: var(--brick-700);
}

.path-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.path-card h3 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.path-card > p {
  max-width: 62ch;
  margin-bottom: 25px;
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.48em;
  left: 5px;
  width: 6px;
  height: 3px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--brick-700);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  margin-left: 10px;
  transition: transform 0.18s ease;
}

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

.path-card--sell .text-link {
  color: #f1b296;
}

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

.sector-card {
  min-height: 370px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(196, 208, 216, 0.9);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-card:hover {
  border-color: #c7a795;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.sector-card--primary {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.sector-card--primary h3 {
  color: var(--white);
}

.sector-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--brick-600);
  background: var(--brick-100);
  border-radius: 16px;
}

.sector-card--primary .sector-icon {
  color: #ef9d7b;
  background: rgba(255, 255, 255, 0.09);
}

.sector-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sector-icon svg path:first-child:only-child {
  fill: none;
}

.sector-card:first-child .sector-icon svg path {
  fill: currentColor;
  stroke: none;
}

.sector-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brick-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sector-card--primary .sector-kicker {
  color: #f0ae91;
}

.sector-card h3 {
  font-size: 1.48rem;
}

.sector-card p {
  margin-bottom: 0;
  color: inherit;
  font-size: 0.94rem;
}

.scope-note {
  max-width: 930px;
  margin: 28px auto 0;
  padding: 20px 24px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--brick-600);
  font-size: 0.96rem;
  text-align: center;
}

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

.anatomy-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
}

.inspection-media {
  position: relative;
  margin: 0;
}

.inspection-media::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: 24px;
  bottom: 34px;
  left: -24px;
  background: var(--sand-100);
  border-radius: var(--radius-md);
  content: "";
}

.inspection-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 58% center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.inspection-media figcaption {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 330px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy-900);
  border-left: 4px solid #db7049;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section-intro {
  margin-bottom: 30px;
  color: var(--slate-600);
  font-size: 1.03rem;
}

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

.anatomy-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.anatomy-list article > span {
  color: var(--brick-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.anatomy-list h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}

.anatomy-list p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.91rem;
}

.process-section {
  background: var(--brick-50);
  border-top: 1px solid #efded4;
  border-bottom: 1px solid #efded4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 300px;
  padding: 26px 28px 10px;
  border-left: 1px solid #dfc8bc;
}

.process-grid li:last-child {
  border-right: 1px solid #dfc8bc;
}

.process-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: -12px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--brick-700);
  background: var(--brick-50);
  border: 1px solid #dfc8bc;
  border-radius: 50%;
  content: "→";
  font-size: 0.8rem;
}

.process-number {
  display: block;
  margin-bottom: 60px;
  color: var(--brick-700);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.process-grid h3 {
  font-size: 1.3rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.91rem;
}

.confidential-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.confidential-pattern {
  position: absolute;
  inset: 0 0 0 55%;
  opacity: 0.09;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000);
}

.confidential-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: clamp(60px, 10vw, 140px);
}

.confidential-grid h2 {
  max-width: 13ch;
  color: var(--white);
}

.confidential-copy > p:first-child {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.confidential-copy ul {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.confidential-copy li {
  position: relative;
  padding-left: 28px;
}

.confidential-copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  background: #d96b44;
  border-radius: 2px;
  content: "";
}

.confidential-copy strong {
  color: var(--white);
}

.fine-note {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-intro h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.5rem);
}

.faq-intro p {
  margin-bottom: 28px;
  color: var(--slate-600);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 18px;
  padding: 25px 2px;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--brick-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--brick-700);
}

.faq-answer {
  max-width: 780px;
  padding: 0 48px 26px 2px;
  color: var(--slate-600);
}

.contact-section {
  padding: clamp(76px, 9vw, 120px) 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: clamp(48px, 7vw, 94px);
}

.contact-person h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.contact-person > p:not(.eyebrow) {
  max-width: 590px;
}

.person-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.person-card img {
  width: 92px;
  height: auto;
  border-radius: 10px;
}

.person-card div {
  display: grid;
}

.person-card strong {
  color: var(--white);
  font-size: 1.08rem;
}

.person-card span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.83rem;
}

.person-card a {
  width: fit-content;
  color: #f2b69d;
  font-size: 0.91rem;
  font-weight: 720;
}

.contact-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-principles span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--slate-800);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 28px;
}

.form-step {
  display: block;
  margin-bottom: 9px;
  color: var(--brick-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
}

.intent-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.intent-switch legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 0.83rem;
  font-weight: 760;
}

.intent-switch label {
  position: relative;
}

.intent-switch input {
  position: absolute;
  opacity: 0;
}

.intent-switch label > span {
  display: grid;
  min-height: 74px;
  align-content: center;
  padding: 12px 15px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.intent-switch label > span strong {
  color: var(--navy-950);
  font-size: 0.93rem;
}

.intent-switch label > span small {
  color: var(--slate-600);
  font-size: 0.75rem;
}

.intent-switch input:checked + span {
  background: var(--brick-50);
  border-color: var(--brick-600);
  box-shadow: inset 0 0 0 1px var(--brick-600);
}

.intent-switch input:focus-visible + span {
  outline: 3px solid #d56b45;
  outline-offset: 3px;
}

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 0.83rem;
  font-weight: 750;
}

.field label span {
  color: var(--slate-600);
  font-size: 0.7rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--slate-800);
  background: var(--sand-50);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  outline: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 13px;
}

.field textarea {
  min-height: 130px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--brick-600);
  box-shadow: 0 0 0 3px rgba(170, 71, 41, 0.12);
}

.field input[aria-invalid="true"],
.privacy-check input[aria-invalid="true"] {
  border-color: #a62e2e;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #8f2525;
  font-size: 0.77rem;
  font-weight: 650;
}

.field-error:empty {
  display: none;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--slate-600);
  font-size: 0.79rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brick-700);
}

.privacy-check a {
  color: var(--brick-700);
  font-weight: 750;
}

.form-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
}

.form-status {
  margin: 14px 0 0;
  padding: 0;
  color: var(--slate-600);
  font-size: 0.83rem;
}

.form-status.is-error,
.form-status.is-success {
  padding: 12px 14px;
  border-radius: 8px;
}

.form-status.is-error {
  color: #781f1f;
  background: #fff1f1;
  border: 1px solid #efcaca;
}

.form-status.is-success {
  color: #174d38;
  background: #edf8f2;
  border: 1px solid #c5e5d5;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
  padding-top: 48px;
  padding-bottom: 42px;
}

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

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-main > p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 0.91rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-main nav a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 650;
}

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

.footer-legal p {
  margin-bottom: 0;
}

.footer-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Rechtliche Seiten */
.legal-page {
  background: var(--sand-50);
}

.legal-page .site-header {
  background: rgba(255, 255, 255, 0.98);
}

.legal-hero {
  padding: 84px 0 58px;
  background: linear-gradient(135deg, var(--sand-50), var(--brick-50));
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.legal-content {
  padding: 68px 0 96px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  gap: 56px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-nav strong {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--slate-600);
  font-size: 0.87rem;
  font-weight: 650;
}

.legal-panel {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-panel section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.legal-panel h3 {
  margin: 26px 0 10px;
  font-size: 1.17rem;
}

.legal-panel p,
.legal-panel li {
  color: var(--slate-600);
}

.legal-panel a {
  color: var(--brick-700);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-card {
    min-height: 340px;
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  }
}

@media (max-width: 979px) {
  :root {
    --header-height: 72px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    visibility: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(7, 28, 47, 0.12);
    opacity: 0;
    transition: max-height 0.22s ease, opacity 0.18s ease, visibility 0.18s ease, padding 0.22s ease;
  }

  .site-nav.is-open {
    z-index: 101;
    max-height: calc(100vh - var(--header-height));
    padding-top: 12px;
    padding-bottom: 20px;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 790px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-media,
  .hero-media > img {
    min-height: 520px;
  }

  .hero-media {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .trust-rail > div {
    padding: 18px;
  }

  .section-head--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .path-card {
    min-height: 500px;
  }

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

  .inspection-media {
    max-width: 720px;
  }

  .inspection-media img {
    aspect-ratio: 16 / 10;
  }

  .inspection-media figcaption {
    right: 18px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 1px solid #dfc8bc;
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 1px solid #dfc8bc;
  }

  .process-grid li:nth-child(2)::after {
    display: none;
  }

  .confidential-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .confidential-grid {
    gap: 34px;
  }

  .confidential-grid h2 {
    max-width: 16ch;
  }

  .faq-intro {
    position: static;
    max-width: 720px;
  }

  .contact-person {
    max-width: 720px;
  }

  .contact-form {
    max-width: 780px;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

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

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-media,
  .hero-media > img {
    min-height: 390px;
  }

  .hero-media > img {
    object-position: 61% center;
  }

  .hero-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: 36px 1fr;
    padding: 13px;
    font-size: 0.78rem;
  }

  .caption-index {
    width: 34px;
    height: 34px;
  }

  .trust-rail {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .trust-rail > div {
    min-height: 78px;
  }

  .trust-rail > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .path-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .path-card__top {
    margin-bottom: 42px;
  }

  .path-card h3 {
    font-size: 2.2rem;
  }

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

  .sector-icon {
    margin-bottom: 30px;
  }

  .scope-note {
    text-align: left;
  }

  .inspection-media::before {
    top: -14px;
    right: 12px;
    bottom: 26px;
    left: -12px;
  }

  .inspection-media img {
    aspect-ratio: 4 / 5;
    object-position: 55% center;
  }

  .inspection-media figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: none;
    margin: -42px 12px 0;
  }

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

  .process-grid li {
    min-height: 0;
    padding: 26px 22px 32px;
    border-right: 1px solid #dfc8bc;
    border-bottom: 1px solid #dfc8bc;
  }

  .process-grid li + li {
    border-top: 0;
  }

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

  .process-number {
    margin-bottom: 28px;
  }

  .confidential-section {
    padding: 76px 0;
  }

  .faq-list summary {
    padding: 21px 0;
    font-size: 1rem;
  }

  .faq-answer {
    padding-right: 18px;
  }

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

  .contact-form {
    padding: 26px 20px;
  }

  .intent-switch,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .person-card {
    grid-template-columns: 76px 1fr;
  }

  .person-card img {
    width: 76px;
  }

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

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

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

  .legal-hero {
    padding: 62px 0 46px;
  }

  .legal-content {
    padding: 46px 0 72px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 24px), var(--wrap));
  }

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

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    letter-spacing: 0.04em;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 2.7rem);
  }

  .hero h1 {
    max-width: 100%;
  }

  .legal-hero h1 {
    font-size: clamp(2.15rem, 11vw, 2.5rem);
  }

  .hero-media,
  .hero-media > img {
    min-height: 340px;
  }

  .hero-media figcaption {
    grid-template-columns: 1fr;
  }

  .caption-index {
    display: none;
  }

  .path-card__top {
    align-items: flex-start;
  }

  .path-label {
    max-width: 180px;
  }

  .person-card {
    grid-template-columns: 1fr;
  }
}

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