:root {
  --navy: #12243d;
  --navy-2: #0b1a2e;
  --slate: #5f6c7f;
  --line: #d9dee7;
  --paper: #ffffff;
  --wash: #f5f7fa;
  --gold: #b88a2d;
  --gold-2: #d8b15b;
  --teal: #1a7f86;
  --shadow: 0 24px 70px rgba(11, 26, 46, 0.16);
  --radius: 8px;
  --max: 1180px;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

summary {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 40;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid var(--gold-2);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-anchor {
  scroll-margin-top: 94px;
}

.no-break {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 14px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  width: 174px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  color: var(--navy-2);
  font-size: 16px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  align-items: stretch;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(18, 36, 61, 0.04) 0 35%, transparent 35% 100%),
    var(--paper);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47.2%;
  width: 82px;
  content: "";
  background: var(--navy);
  clip-path: polygon(100% 0, 58% 0, 0 100%, 42% 100%);
  z-index: 2;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(47.2% + 85px);
  width: 2px;
  content: "";
  background: linear-gradient(var(--gold-2), transparent 78%);
  transform: skewX(-23deg);
  z-index: 3;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: clamp(64px, 9vw, 118px) 44px clamp(64px, 8vw, 100px) clamp(28px, 7vw, 92px);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.services-copy h2,
.contact-copy h2,
.buyer-fit-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 6.6vw, 86px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 70px);
}

.hero-title-lead {
  white-space: nowrap;
}

.hero p {
  max-width: 575px;
  margin: 26px 0 0;
  color: #29364b;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 24px;
  height: 24px;
  margin-left: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 36, 61, 0.16);
}

.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.service-item:focus-visible,
.faq-item summary:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: var(--paper);
  background: var(--navy);
}

.button-primary svg {
  color: var(--gold-2);
}

.button-secondary {
  color: var(--navy);
  background: var(--paper);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #eaf0f5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 88px);
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.service-arc {
  position: absolute;
  top: 70px;
  right: clamp(22px, 4vw, 68px);
  left: 118px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-arc::before {
  position: absolute;
  top: 12px;
  right: 42px;
  left: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--navy), transparent);
  transform: translateY(-50%) skewY(-11deg);
}

.service-arc span {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 36, 61, 0.24);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(calc(var(--i) * -9px));
  backdrop-filter: blur(10px);
}

.about,
.buyer-fit,
.pressure-points,
.engagements,
.faq,
.services,
.contact,
.service-guides,
.page-section,
.page-cta,
.subpage-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) clamp(22px, 4vw, 48px);
}

.section-rule {
  width: 80px;
  height: 4px;
  margin-bottom: 28px;
  background: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.section-copy h2,
.services-copy h2,
.contact-copy h2,
.buyer-fit-copy h2,
.pressure-copy h2,
.engagements-copy h2,
.faq-copy h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
}

.section-copy p,
.services-copy p,
.contact-copy p,
.buyer-fit-copy p,
.pressure-copy p,
.engagements-copy p,
.faq-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #344055;
  font-size: 20px;
}

.about-points {
  display: grid;
  gap: 28px;
  border-left: 1px solid var(--line);
}

.about-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 22px;
  padding: 4px 0 30px 30px;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-points h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-points p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--slate);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-rail div {
  position: relative;
  min-height: 144px;
  padding: 28px 26px;
}

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

.process-rail div::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.process-rail strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.process-rail span {
  color: var(--slate);
  font-size: 15px;
}

.buyer-fit {
  padding-top: 0;
}

.buyer-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.buyer-fit-grid article {
  position: relative;
  min-height: 100%;
  padding: 34px 28px 28px;
  background:
    linear-gradient(140deg, rgba(18, 36, 61, 0.05), transparent 52%),
    var(--wash);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(11, 26, 46, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.buyer-fit-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  content: "";
  background: var(--gold);
}

.buyer-fit-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(11, 26, 46, 0.12);
}

.buyer-fit-grid h3,
.services-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.buyer-fit-grid h3 {
  font-size: 28px;
  line-height: 1.1;
}

.buyer-fit-grid p {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.65;
}

.pressure-points {
  display: grid;
  gap: 40px;
  padding-top: 0;
}

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

.pressure-grid article {
  padding: 26px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(11, 26, 46, 0.06);
}

.pressure-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pressure-grid p {
  margin: 14px 0 0;
  color: var(--slate);
  line-height: 1.65;
}

.engagements {
  display: grid;
  gap: 40px;
}

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

.engagement-card {
  padding: 34px 30px;
  background:
    linear-gradient(140deg, rgba(18, 36, 61, 0.05), transparent 52%),
    var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(11, 26, 46, 0.08);
}

.engagement-card-dark {
  color: var(--paper);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 40%),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.06);
}

.engagement-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engagement-card-dark .engagement-label {
  color: var(--gold-2);
}

.engagement-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.engagement-card p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

.engagement-card-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.engagement-card ul,
.contact-outcomes ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.engagement-card li,
.contact-outcomes li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.engagement-card-dark li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.engagement-card li::before,
.contact-outcomes li::before {
  position: absolute;
  top: 15px;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.engagement-card-dark li::before {
  color: var(--gold-2);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(11, 26, 46, 0.06);
}

.faq-item summary {
  position: relative;
  padding: 24px 62px 24px 24px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--gold);
  content: "+";
  font-size: 28px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--slate);
  line-height: 1.7;
}

.services {
  max-width: none;
  padding-right: 0;
  padding-left: clamp(22px, 5vw, 76px);
  background: linear-gradient(90deg, var(--paper) 0 69%, var(--navy-2) 69% 100%);
}

.services-copy {
  max-width: var(--max);
  margin: 0 auto 42px;
  padding-right: clamp(22px, 5vw, 76px);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
  gap: clamp(36px, 5vw, 70px);
  max-width: 1280px;
  margin: 0 auto;
}

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

.service-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  min-height: 138px;
  padding: 26px 0;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.service-item svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.service-item span {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(184, 138, 45, 0.8);
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.service-item small {
  display: block;
  color: #405069;
  font-size: 15px;
  line-height: 1.42;
}

.service-item.is-selected,
.service-item:hover {
  color: var(--teal);
}

.services-panel {
  position: relative;
  min-height: 700px;
  padding: 250px 46px 54px;
  color: var(--paper);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--navy-2);
  overflow: hidden;
}

.panel-arrow {
  position: absolute;
  top: 62px;
  right: 44px;
  width: 190px;
  height: 190px;
  border-top: 42px solid var(--gold-2);
  border-right: 42px solid var(--gold-2);
}

.panel-arrow::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 86px;
  height: 86px;
  content: "";
  background: var(--gold-2);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.services-panel h3 {
  max-width: 310px;
  margin: 0 0 28px;
  font-size: 26px;
  line-height: 1.22;
}

.services-panel-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-panel-copy {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.services-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-panel li {
  position: relative;
  padding: 17px 0 17px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 18px;
}

.services-panel li::before {
  position: absolute;
  left: 0;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "\2713";
  font-size: 14px;
  font-weight: 900;
}

.services-panel-note {
  margin: 32px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
}

.button-panel {
  width: 100%;
  margin-top: 28px;
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-panel svg {
  color: var(--gold-2);
}

.service-guides {
  background:
    linear-gradient(140deg, rgba(18, 36, 61, 0.04), transparent 42%),
    var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-guides-copy h2,
.page-copy h2,
.page-cta-box h2,
.subpage-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-guides-copy h2,
.page-copy h2,
.page-cta-box h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.service-guides-copy p,
.page-copy p,
.page-cta-box p,
.subpage-hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #344055;
  font-size: 20px;
}

.guide-grid,
.page-grid,
.page-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

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

.guide-card,
.page-card,
.page-link-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card:hover,
.page-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 138, 45, 0.7);
  box-shadow: 0 18px 34px rgba(18, 36, 61, 0.12);
}

.guide-kicker,
.page-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card h3,
.page-card h3,
.page-link-card h3,
.subpage-meta h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.guide-card p,
.page-card p,
.page-link-card p,
.subpage-meta p,
.page-card li,
.page-link-card li {
  margin: 0;
  color: #344055;
  line-height: 1.7;
}

.guide-card strong,
.page-link-card strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.subpage-hero-copy h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.subpage-meta {
  display: grid;
  gap: 18px;
}

.subpage-meta article {
  padding: 26px;
  background:
    linear-gradient(140deg, rgba(18, 36, 61, 0.05), transparent 52%),
    var(--wash);
  border: 1px solid var(--line);
}

.subpage-meta h3 {
  margin-bottom: 10px;
}

.page-section-alt {
  background: var(--wash);
}

.page-grid ul,
.page-link-card ul {
  margin: 0;
  padding-left: 20px;
}

.page-cta {
  padding-top: 0;
}

.page-cta-box {
  padding: clamp(28px, 5vw, 44px);
  color: var(--paper);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 36%),
    var(--navy-2);
}

.page-cta-box h2,
.page-cta-box p,
.page-cta-box a {
  color: inherit;
}

.page-cta-box p {
  color: rgba(255, 255, 255, 0.84);
}

.page-cta-box .button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 86px);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-weight: 700;
}

.contact-details a {
  color: var(--navy);
}

.contact-outcomes {
  margin-top: 30px;
  padding: 26px 26px 24px;
  background:
    linear-gradient(140deg, rgba(18, 36, 61, 0.05), transparent 52%),
    var(--wash);
  border: 1px solid var(--line);
}

.contact-outcomes strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(18, 36, 61, 0.04), transparent 42%),
    var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.contact-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy);
  background: #fbfcfd;
  border: 1px solid #cbd3de;
  border-radius: 2px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 45, 0.16);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.form-status.is-error {
  color: #9c2c2c;
}

.contact-hint {
  margin: -2px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
}

.contact-hint a {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-2);
}

.site-footer img {
  width: 138px;
  filter: brightness(0) invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-copy {
    max-width: none;
    padding-right: clamp(22px, 7vw, 70px);
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-media img {
    min-height: 460px;
  }

  .service-arc {
    left: clamp(18px, 5vw, 50px);
  }

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

  .pressure-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

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

  .pressure-grid article {
    min-height: 100%;
  }

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

  .buyer-fit-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .process-rail div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-rail div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .services {
    padding-right: clamp(22px, 5vw, 76px);
    background: var(--paper);
  }

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

  .services-panel {
    min-height: 520px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 10px 18px;
  }

  .brand {
    width: 138px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    padding: 15px 0;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .hero-title-lead {
    white-space: normal;
  }

  .hero-copy {
    padding: 42px 22px 56px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    letter-spacing: 0.12em;
  }

  .section-copy h2,
  .services-copy h2,
  .contact-copy h2,
  .buyer-fit-copy h2,
  .pressure-copy h2,
  .engagements-copy h2,
  .faq-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.06;
  }

  .hero p,
  .section-copy p,
  .services-copy p,
  .contact-copy p,
  .buyer-fit-copy p,
  .pressure-copy p,
  .engagements-copy p,
  .faq-copy p {
    font-size: 18px;
  }

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

  .service-arc {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .about-points {
    border-left: 0;
  }

  .about-points article {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .about-points p {
    grid-column: auto;
  }

  .process-rail,
  .buyer-fit-grid,
  .pressure-grid,
  .engagement-grid,
  .guide-grid,
  .service-matrix,
  .contact-form,
  .page-grid,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .buyer-fit-grid article:last-child {
    grid-column: auto;
  }

  .process-rail div + div,
  .process-rail div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-item {
    grid-template-columns: 52px 1fr;
    min-height: auto;
  }

  .services-panel {
    padding: 210px 28px 38px;
  }

  .panel-arrow {
    right: 30px;
  }

  .contact-form {
    padding: 24px;
  }

  .faq-item summary {
    padding: 20px 56px 20px 20px;
    font-size: 17px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .pressure-grid h3,
  .engagement-card h3 {
    font-size: 24px;
  }
}

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

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