@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-italic-latin-ext.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Serif";
  src: url("../fonts/ibm-plex-serif-semibold-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #0e1b2b;
  --navy-soft: #17273a;
  --ivory: #f6f1e8;
  --ivory-deep: #ebe3d6;
  --copper: #9a4f2c;
  --copper-dark: #7a3d23;
  --slate: #566171;
  --slate-light: #d9dee4;
  --white: #ffffff;
  --ink: #172231;
  --border: #d9d5cd;
  --font-sans: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --font-serif: "IBM Plex Serif", Georgia, serif;
  --container: 1220px;
  --header-height: 82px;
  --shadow: 0 24px 70px rgba(14, 27, 43, 0.12);
}

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

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

body {
  margin: 0;
  min-width: 280px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--copper);
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  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: 12px 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(14, 27, 43, 0.1);
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.brand__mark {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
}

.brand__copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand__tagline {
  margin-top: 4px;
  color: var(--slate);
  font-size: 0.665rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.45vw, 25px);
  min-width: 0;
}

.primary-navigation > a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation > a:not(.button):hover {
  color: var(--copper);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle__lines {
  display: grid;
  gap: 7px;
  width: 21px;
}

.menu-toggle__lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.button--copper {
  background: var(--copper);
  color: var(--white);
}

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

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

.button--ivory:hover {
  background: var(--white);
}

.button--full {
  width: 100%;
}

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

.text-link span,
.card-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translateX(5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.036em;
}

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

h3 {
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.hero {
  position: relative;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  min-height: min(720px, calc(100svh - var(--header-height)));
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.hero-copy,
.hero-visual,
.section-heading > *,
.audience-card,
.result-grid > *,
.about-grid > *,
.contact-grid > * {
  min-width: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5.4vw, 5.25rem);
}

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

.hero-b2b-promise {
  position: relative;
  display: grid;
  gap: 5px;
  max-width: 680px;
  margin: 0 0 24px;
  padding: 17px 58px 18px 20px;
  background: var(--ivory);
  border-left: 3px solid var(--copper);
  color: var(--navy);
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.hero-b2b-promise__label {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-b2b-promise strong {
  overflow-wrap: normal;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
  word-break: normal;
}

.hero-b2b-promise__detail {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-b2b-promise__arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--copper);
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.hero-b2b-promise:hover {
  box-shadow: 8px 8px 0 rgba(154, 79, 44, 0.12);
  transform: translateY(-2px);
}

.hero-b2b-promise:hover .hero-b2b-promise__arrow {
  transform: translate(4px, -50%);
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.06rem, 1.4vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  padding: 42px 0 36px 32px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 7%;
  right: 5%;
  bottom: 4%;
  left: 0;
  background: var(--ivory);
}

.estimate-sheet {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.estimate-sheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 24px;
  border-bottom: 2px solid var(--navy);
}

.estimate-sheet__head > div {
  display: grid;
  gap: 3px;
}

.estimate-sheet__head strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.micro-label,
.sheet-code {
  color: var(--slate);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sheet-code {
  padding-top: 4px;
  white-space: nowrap;
}

.estimate-line {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 74px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.84rem;
}

.estimate-line > :last-child {
  justify-self: end;
}

.estimate-line--header {
  min-height: 40px;
  background: var(--ivory);
  color: var(--slate);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-line--active {
  border-left: 3px solid var(--copper);
  background: #fbf5f0;
}

.check-mark,
.review-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--slate-light);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 700;
}

.review-mark {
  border-color: var(--copper);
  color: var(--copper);
}

.estimate-sheet__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 28px;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 600;
}

.precision-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--copper);
}

.precision-mark::before,
.precision-mark::after {
  content: "";
  position: absolute;
  background: var(--copper);
}

.precision-mark::before {
  top: 8px;
  left: -4px;
  width: 24px;
  height: 1px;
}

.precision-mark::after {
  top: -4px;
  left: 8px;
  width: 1px;
  height: 24px;
}

.measure-corner {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.measure-corner--top {
  top: 14px;
  left: 3px;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
}

.measure-corner--bottom {
  right: -8px;
  bottom: 4px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}

.visual-note {
  position: absolute;
  z-index: 4;
  right: -10px;
  bottom: 0;
  display: grid;
  min-width: 190px;
  padding: 15px 19px;
  background: var(--navy);
  color: var(--white);
  line-height: 1.25;
}

.visual-note strong {
  font-family: var(--font-serif);
  font-size: 1rem;
}

.visual-note span {
  margin-top: 4px;
  color: var(--ivory);
  font-size: 0.67rem;
}

.benefit-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -48px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(14, 27, 43, 0.15);
  list-style: none;
}

.benefit-strip li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 96px;
  padding: 22px 24px;
  color: var(--white);
}

.benefit-strip li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-strip span {
  color: var(--ivory);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.benefit-strip strong {
  font-size: 0.88rem;
  line-height: 1.4;
}

.section {
  padding-block: clamp(84px, 10vw, 150px);
}

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

.section--navy {
  background: var(--navy);
  color: var(--ivory);
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}

.section-heading--split h2,
.section-heading--split p,
.section-heading--center h2,
.section-heading--center p,
.section-heading--light h2 {
  margin-bottom: 0;
}

.section-heading--split > p,
.section-heading--center > p {
  color: var(--slate);
  font-size: 1.03rem;
}

.section-heading--center {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

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

.section-heading--center > p {
  max-width: 700px;
  margin: 22px auto 0;
}

.section-heading--light h2 {
  max-width: 680px;
  color: var(--white);
}

.section-heading--light .eyebrow,
.section--navy .eyebrow {
  color: var(--ivory);
}

.audience-section {
  padding-top: calc(clamp(84px, 10vw, 150px) + 44px);
}

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

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--border);
}

.audience-card--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
}

.audience-card--white {
  background: var(--white);
}

.card-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card--navy .card-index {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.28);
}

.audience-card h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 600;
}

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

.audience-card p {
  margin: 0;
  color: var(--slate);
}

.audience-card--navy p {
  color: var(--ivory);
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--copper);
}

.audience-card--navy .compact-list li::before {
  background: var(--white);
}

.audience-card .card-link {
  margin-top: auto;
}

.audience-card--navy .card-link {
  color: var(--white);
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.check-card {
  min-width: 0;
  min-height: 265px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.check-card__number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.check-card h3 {
  margin-bottom: 13px;
  font-size: 1.08rem;
}

.check-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.process-step {
  min-width: 0;
  padding: 34px clamp(18px, 2.5vw, 34px) 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.process-step p {
  margin: 0;
  color: var(--ivory);
  font-size: 0.92rem;
}

.section-action {
  margin-top: 52px;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.result-intro > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.04rem;
}

.scope-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  margin-top: 35px;
  padding: 20px;
  background: var(--ivory);
  border-left: 3px solid var(--copper);
}

.scope-note > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 600;
}

.scope-note p {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
}

.deliverables {
  border-top: 2px solid var(--navy);
}

.deliverables article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.deliverables article > span {
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.deliverables h3 {
  margin-bottom: 10px;
}

.deliverables p {
  margin: 0;
  color: var(--slate);
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: min(34vw, 430px);
  height: 1px;
  background: var(--copper);
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.6fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: center;
}

.pricing-copy .eyebrow {
  color: var(--ivory);
}

.pricing-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
}

.pricing-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 1.04rem;
}

.pricing-points {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.pricing-points li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.pricing-points li > span {
  padding-top: 4px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pricing-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.pricing-points p {
  margin: 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.88rem;
}

.pricing-card {
  position: relative;
  padding: clamp(36px, 5vw, 58px);
  background: var(--ivory);
  color: var(--navy);
  border-top: 4px solid var(--copper);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.24);
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(154, 79, 44, 0.62);
  border-bottom: 1px solid rgba(154, 79, 44, 0.62);
  pointer-events: none;
}

.pricing-card__label {
  margin: 0 0 30px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card__price {
  display: grid;
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-card__price > span {
  margin-bottom: 7px;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-card__price strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 5vw, 4.65rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.pricing-card__price small {
  margin-top: 10px;
  color: var(--copper-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card__note {
  margin: 0 0 30px;
  color: var(--slate);
  font-size: 0.9rem;
}

.pricing-card__note sup {
  color: var(--copper);
  font-weight: 700;
}

.pricing-card__assurance {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  padding: 0 0 34px 34px;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  bottom: 0;
  left: 0;
  border: 1px solid var(--copper);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 36px 72px rgba(14, 27, 43, 0.18),
    0 14px 28px rgba(14, 27, 43, 0.12),
    0 3px 9px rgba(14, 27, 43, 0.08);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 -38px 64px rgba(14, 27, 43, 0.055);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.portrait-wrap figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 6px;
  display: grid;
  min-width: min(310px, 74%);
  padding: 18px 22px;
  background: var(--navy);
  color: var(--white);
  line-height: 1.25;
  box-shadow: 0 18px 38px rgba(14, 27, 43, 0.2);
}

.portrait-wrap figcaption strong {
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.portrait-wrap figcaption span {
  margin-top: 4px;
  color: var(--ivory);
  font-size: 0.72rem;
}

.about-copy .lead-serif {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.lead-serif) {
  color: var(--slate);
}

.owner-quote {
  position: relative;
  margin: 30px 0 22px;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--copper);
}

.owner-quote p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.5;
}

.owner-quote footer {
  margin-top: 12px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy .text-link {
  margin-top: 12px;
}

.b2b-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(60px, 9vw, 130px);
  padding: clamp(42px, 7vw, 88px);
  background: var(--navy);
  color: var(--ivory);
}

.b2b-heading h2 {
  color: var(--white);
}

.b2b-heading h2 span {
  display: block;
  color: var(--ivory);
}

.b2b-heading > p:not(.eyebrow) {
  color: var(--ivory);
}

.b2b-heading .button {
  margin-top: 24px;
}

.b2b-values {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.b2b-values article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.b2b-values article > span {
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 700;
}

.b2b-values h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1rem;
}

.b2b-values p {
  margin: 0;
  color: var(--ivory);
  font-size: 0.88rem;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card:hover {
  border-color: var(--copper);
  box-shadow: 0 18px 42px rgba(14, 27, 43, 0.08);
  transform: translateY(-3px);
}

.article-card__visual {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: var(--navy);
}

.article-card__visual::before,
.article-card__visual::after {
  content: "";
  position: absolute;
}

.article-card__visual::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.article-card__visual::after {
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  border-right: 3px solid var(--ivory);
  border-bottom: 3px solid var(--ivory);
}

.article-card__visual--water::after {
  border-right: 0;
  border-bottom: 2px solid var(--ivory);
  border-radius: 50%;
}

.article-card__visual--fire::after {
  right: 42px;
  width: 54px;
  height: 82px;
  border: 2px solid var(--ivory);
  border-radius: 52% 48% 45% 55%;
  transform: rotate(12deg);
}

.article-card__visual--roof::after {
  right: 38px;
  bottom: 35px;
  width: 90px;
  height: 58px;
  border: 0;
  border-top: 3px solid var(--ivory);
  border-left: 3px solid var(--ivory);
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.article-card__visual span {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 42px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.article-meta {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.article-card__body > p:not(.article-meta) {
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 0.9rem;
}

.article-card__link {
  display: block;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-status {
  display: block;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

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

.faq-intro p:last-child {
  color: var(--slate);
}

.faq-list {
  border-top: 2px solid var(--navy);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 22px 0;
  color: var(--navy);
  font-size: 1.03rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

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

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 12px;
  height: 1px;
  background: var(--navy);
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

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

.faq-list details > div {
  padding: 0 56px 28px 0;
}

.faq-list details p {
  margin: 0;
  color: var(--slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  gap: clamp(56px, 9vw, 125px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--ivory);
  font-size: 1.04rem;
}

.privacy-note {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.privacy-note strong {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-note span {
  color: var(--ivory);
  font-size: 0.86rem;
}

.direct-contact {
  display: grid;
  gap: 5px;
  margin-top: 34px;
  color: var(--ivory);
}

.direct-contact span {
  font-size: 0.77rem;
}

.direct-contact a {
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.form-shell {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.contact-form {
  padding: clamp(30px, 5vw, 56px);
}

.form-intro-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.8rem;
}

.form-intro-note span {
  padding: 4px 7px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.contact-form fieldset {
  margin: 0 0 25px;
  padding: 0;
  border: 0;
}

.contact-form legend,
.field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

.field label span,
.field-label span {
  color: var(--slate);
  font-weight: 400;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.segmented-control label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.segmented-control label + label {
  border-left: 1px solid var(--border);
}

.segmented-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.segmented-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 14px;
  color: var(--slate);
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
}

.segmented-control input:checked + span {
  background: var(--navy);
  color: var(--white);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid var(--white);
  outline-offset: -4px;
  box-shadow: inset 0 0 0 6px var(--copper);
}

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

.field {
  margin-bottom: 21px;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid #a9b0b9;
  border-radius: 0;
  color: var(--navy);
  font-size: 1rem;
}

.field textarea {
  display: block;
  min-height: 118px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6a7482;
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--navy);
}

.upload-control {
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  background: var(--ivory);
  border: 1px dashed #8b929b;
  color: var(--slate);
}

.upload-control:hover {
  border-color: var(--navy);
}

.upload-control:focus-within {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--copper);
}

.upload-control input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-control__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--slate);
  border-radius: 50%;
  font-size: 1.25rem;
}

.upload-control__copy {
  display: grid;
  gap: 3px;
}

.upload-control strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.upload-control span:not(.upload-control__icon) {
  font-size: 0.72rem;
}

.file-status {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 0.72rem;
}

.file-status.is-error {
  color: #8f2f24;
  font-weight: 650;
}

.form-legal-note {
  margin: 6px 0 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--copper);
  background: var(--ivory);
  color: var(--slate);
  font-size: 0.74rem;
}

.form-legal-note a {
  color: var(--navy);
  font-weight: 700;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 4px 0 25px;
  color: var(--slate);
  font-size: 0.76rem;
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.consent a {
  color: var(--navy);
  font-weight: 650;
}

.consent + .consent {
  margin-top: -14px;
}

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

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 650;
}

.form-status:not(:empty) {
  margin-top: 16px;
  padding: 14px;
  background: var(--ivory);
  border-left: 3px solid var(--copper);
}

.form-status--error:not(:empty) {
  border-left-color: #8f2f24;
}

.form-status--success:not(:empty) {
  border-left-color: #2f6b4f;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.deadline-note {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 0.7rem;
}

.privacy-details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.75rem;
}

.privacy-details summary {
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.privacy-details div {
  padding-top: 12px;
}

.privacy-details p {
  margin: 0 0 10px;
}

.privacy-details a {
  color: var(--navy);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.site-footer {
  padding-top: 72px;
  background: #09131f;
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(34px, 5vw, 72px);
  padding-bottom: 62px;
}

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

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

.footer-brand > p {
  max-width: 400px;
  margin: 24px 0 0;
  color: var(--ivory);
  font-size: 0.85rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  color: var(--ivory);
  font-size: 0.78rem;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 28px;
  color: var(--white);
  overflow-wrap: anywhere;
}

.footer-status {
  margin-top: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ivory);
  font-size: 0.65rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ivory);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

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

.legal-page {
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(56px, 8vw, 104px);
}

.legal-content {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: clamp(30px, 6vw, 72px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-content > h1 {
  max-width: 820px;
  margin: 0 0 34px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.legal-content__body {
  max-width: 760px;
  color: var(--slate);
}

.legal-content__body h2 {
  margin: 42px 0 14px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-content__body h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.legal-content__body p {
  margin: 0 0 18px;
}

.legal-content__body ul,
.legal-content__body ol {
  margin: 0 0 22px;
  padding-left: 1.35rem;
}

.legal-content__body li {
  margin-bottom: 8px;
}

.legal-content__body strong {
  color: var(--navy);
}

.legal-content__body a {
  color: var(--copper-dark);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.legal-meta {
  margin: -18px 0 30px !important;
  color: var(--slate);
  font-size: 0.78rem;
}

.legal-summary,
.legal-note {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--copper);
  background: var(--ivory);
}

.legal-summary p:last-child,
.legal-note p:last-child {
  margin-bottom: 0;
}

.legal-toc {
  margin: 30px 0 42px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
  margin: 0;
  padding-left: 1.1rem;
}

.legal-content__back {
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-footer {
  padding-top: 0;
}

/* Long-form service, knowledge and hub pages. */

.breadcrumbs {
  margin-bottom: clamp(34px, 6vw, 68px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.seo-hero,
.hub-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px) 0 clamp(74px, 9vw, 126px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--navy);
  color: var(--white);
}

.seo-hero::after,
.hub-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.seo-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
}

.seo-hero__copy {
  max-width: 820px;
}

.seo-hero h1,
.hub-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 6.1vw, 5.45rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.seo-hero__lead,
.hub-hero__copy > p:last-child {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.seo-hero__promise {
  max-width: 780px;
  margin: 26px 0 0;
  padding: 20px 24px 21px;
  border-left: 4px solid var(--copper);
  background: rgba(255, 255, 255, 0.08);
}

.seo-hero__promise strong,
.seo-hero__promise span {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.seo-hero__promise strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.72rem, 2.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.seo-hero__promise span {
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.4;
}

.seo-hero__promise p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
}

.seo-hero--law-firm h1 {
  overflow-wrap: normal;
  word-break: normal;
}

@media (min-width: 1081px) {
  .seo-hero--law-firm h1 {
    font-size: clamp(2.65rem, 5.8vw, 5.3rem);
  }
}

.seo-hero__actions .text-link {
  color: var(--white);
}

.seo-hero__panel {
  position: relative;
  padding: 34px;
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--navy);
  box-shadow: 16px 16px 0 rgba(154, 79, 44, 0.86);
}

.seo-hero__panel::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-top: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
}

.seo-hero__panel > strong {
  display: block;
  max-width: 300px;
  margin-top: 13px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.22;
}

.seo-hero__panel ul {
  margin: 27px 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.seo-hero__panel li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.seo-hero__panel li span {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 700;
}

.seo-hero__panel > p {
  margin: 0;
  color: var(--slate);
  font-size: 0.72rem;
}

.seo-content-section {
  padding: clamp(70px, 10vw, 138px) 0;
  background: var(--ivory);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.seo-article {
  min-width: 0;
}

.seo-article__body {
  color: var(--slate);
  font-size: 1rem;
}

.seo-article__body > :first-child {
  margin-top: 0;
}

.seo-article__body h2,
.seo-faq > h2,
.related-pages > h2 {
  margin: clamp(56px, 8vw, 88px) 0 22px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.seo-article__body h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
  line-height: 1.2;
}

.seo-article__body p {
  margin: 0 0 21px;
}

.seo-article__body ul,
.seo-article__body ol {
  margin: 0 0 28px;
  padding-left: 1.25rem;
}

.seo-article__body li {
  margin-bottom: 9px;
  padding-left: 6px;
}

.seo-article__body strong {
  color: var(--navy);
}

.seo-article__body a,
.source-list a {
  color: var(--copper-dark);
  font-weight: 650;
}

.quick-answer {
  margin-bottom: 46px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--white);
  border-top: 4px solid var(--copper);
  box-shadow: 0 18px 55px rgba(14, 27, 43, 0.08);
}

.quick-answer h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.quick-answer p:last-child {
  margin-bottom: 0;
}

.key-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 48px !important;
  padding: 1px !important;
  background: var(--border);
  list-style: none;
}

.key-points li {
  position: relative;
  margin: 0 !important;
  padding: 24px 24px 24px 50px !important;
  background: var(--white);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 650;
}

.key-points li::before {
  content: "✓";
  position: absolute;
  top: 24px;
  left: 23px;
  color: var(--copper);
}

.key-points li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.article-toc {
  margin: 0 0 62px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  background: transparent;
}

.article-toc h2 {
  margin: 0 0 15px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 30px;
  margin: 0;
  padding-left: 1.2rem;
}

.article-toc a {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--copper-dark);
  text-decoration: underline;
}

.content-callout {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  margin: 34px 0;
  padding: 25px 27px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.content-callout > span {
  grid-column: 1;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
}

.content-callout > div {
  grid-column: 2;
}

.content-callout > p:empty,
.content-callout > div > p:empty {
  display: none;
}

.content-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.content-callout p {
  margin: 0;
  font-size: 0.88rem;
}

.comparison-table {
  width: 100%;
  margin: 30px 0 42px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.86rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.source-list {
  margin-top: 62px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.78rem;
}

.source-list h2 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-list ul {
  margin: 0;
  padding-left: 1.1rem;
}

.seo-faq,
.related-pages {
  margin-top: clamp(72px, 10vw, 112px);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.seo-faq > h2,
.related-pages > h2 {
  margin-top: 12px;
}

.seo-faq .faq-list {
  margin-top: 34px;
}

.related-pages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.related-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.related-card:hover {
  border-color: var(--copper);
  box-shadow: 0 18px 40px rgba(14, 27, 43, 0.08);
  transform: translateY(-3px);
}

.related-card > span:first-child {
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card strong {
  margin: 16px 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.25;
}

.related-card > span:last-child {
  margin-top: auto;
  font-size: 1.2rem;
}

.seo-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  display: grid;
  gap: 18px;
}

.seo-sidebar__card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(14, 27, 43, 0.09);
}

.seo-sidebar__card h2 {
  margin: 12px 0 16px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.2;
}

.seo-sidebar__card p {
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 0.84rem;
}

.seo-sidebar__note {
  padding: 23px 25px;
  border-left: 3px solid var(--copper);
  background: var(--ivory-deep);
}

.seo-sidebar__note strong {
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-sidebar__note p {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 0.75rem;
}

.seo-final-cta {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--copper-dark);
  color: var(--white);
}

.seo-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.seo-final-cta h2 {
  max-width: 800px;
  margin: 8px 0 13px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.seo-final-cta p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hub-hero {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.hub-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hub-content {
  padding-block: clamp(70px, 9vw, 124px);
}

.hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.6fr);
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(48px, 7vw, 78px);
  border-bottom: 1px solid var(--border);
  color: var(--slate);
}

.hub-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hub-intro p {
  margin: 0 0 16px;
}

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

.hub-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hub-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(14, 27, 43, 0.12);
  border-radius: 50%;
}

.hub-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
}

.hub-card:hover h2 {
  color: var(--white);
}

.hub-card__index {
  margin-bottom: 58px;
  color: var(--copper);
  font-family: var(--font-serif);
  font-size: 1.7rem;
}

.hub-card h2 {
  margin: 0 0 17px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.18;
}

.hub-card p {
  margin: 0 0 30px;
  color: var(--slate);
  font-size: 0.86rem;
}

.hub-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.hub-card__link {
  margin-top: auto;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 74px;
  }

  .js .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .primary-navigation {
    width: 100%;
    padding: 12px 0 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .js .primary-navigation {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    width: auto;
    padding: 24px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--border);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  body.admin-bar .primary-navigation {
    top: calc(var(--header-height) + 32px);
  }

  .js .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .js .primary-navigation > a:not(.button) {
    min-height: 52px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .js .primary-navigation .button {
    margin-top: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.8vw, 4.7rem);
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .b2b-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 84px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .benefit-strip li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-strip li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-heading--split,
  .result-grid,
  .about-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 14px;
  }

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

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

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

  .result-grid,
  .about-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }

  .portrait-wrap {
    width: min(100%, 680px);
  }

  .faq-intro {
    position: static;
  }

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

  .article-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  }

  .article-card__visual {
    min-height: 100%;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .primary-navigation {
    top: calc(var(--header-height) + 46px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .legal-home-link {
    display: none;
  }

  .legal-content {
    padding: 30px 22px;
  }

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

  .site-header,
  .header-inner {
    min-height: var(--header-height);
  }

  .brand__mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .brand__tagline {
    display: none;
  }

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

  .js .primary-navigation {
    top: var(--header-height);
    padding: 18px 16px 28px;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.32rem, 12vw, 3.1rem);
  }

  .hero-b2b-promise {
    margin-bottom: 20px;
    padding: 14px 44px 15px 16px;
  }

  .hero-b2b-promise strong {
    font-size: 1.32rem;
  }

  .hero-b2b-promise__detail {
    font-size: 0.84rem;
  }

  .hero-b2b-promise__arrow {
    right: 16px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    padding: 28px 0 30px 14px;
  }

  .estimate-sheet__head {
    padding: 20px 18px;
  }

  .estimate-sheet__head strong {
    font-size: 1.08rem;
  }

  .sheet-code {
    font-size: 0.55rem;
  }

  .estimate-line {
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    gap: 8px;
    min-height: 52px;
    padding: 9px 16px;
    font-size: 0.71rem;
  }

  .estimate-line--header {
    min-height: 36px;
    font-size: 0.5rem;
  }

  .estimate-sheet__foot {
    padding: 10px 16px;
    font-size: 0.62rem;
  }

  .visual-note {
    right: -2px;
    min-width: 170px;
    padding: 12px 15px;
  }

  .benefit-wrap {
    margin-bottom: -30px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip li {
    min-height: 68px;
    padding: 15px 18px;
  }

  .benefit-strip li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .audience-section {
    padding-top: calc(clamp(84px, 10vw, 150px) + 24px);
  }

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .audience-card {
    padding: 28px 23px;
  }

  .card-index {
    margin-bottom: 34px;
  }

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

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

  .check-card__number {
    margin-bottom: 30px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3),
  .process-step:last-child {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

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

  .scope-note {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .deliverables article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .portrait-wrap {
    padding: 0 0 28px 18px;
  }

  .portrait-wrap::before {
    top: 18px;
    right: 18px;
  }

  .portrait-wrap figcaption {
    min-width: min(286px, 88%);
    padding: 14px 17px;
  }

  .portrait-frame {
    box-shadow:
      0 24px 46px rgba(14, 27, 43, 0.16),
      0 9px 20px rgba(14, 27, 43, 0.1);
  }

  .b2b-panel {
    gap: 48px;
    margin-inline: -16px;
    padding: 52px 24px;
  }

  .b2b-values article {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .article-card {
    display: flex;
  }

  .article-card__visual {
    min-height: 155px;
  }

  .article-card__body {
    padding: 24px;
  }

  .faq-grid,
  .contact-grid,
  .result-grid,
  .about-grid,
  .pricing-grid {
    gap: 48px;
  }

  .pricing-card {
    width: min(100%, 580px);
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.95rem;
  }

  .faq-list details > div {
    padding-right: 0;
  }

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

  .form-row,
  .segmented-control {
    grid-template-columns: 1fr;
  }

  .segmented-control label + label {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .form-intro-note {
    align-items: flex-start;
  }

  .upload-control {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 15px;
  }

  .upload-control__icon {
    width: 30px;
    height: 30px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-bottom p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 1080px) {
  .seo-hero__grid {
    grid-template-columns: 1fr;
  }

  .seo-hero__panel {
    width: min(100%, 620px);
  }

  .seo-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .seo-hero,
  .hub-hero {
    padding-top: 28px;
  }

  .seo-hero h1,
  .hub-hero h1 {
    overflow-wrap: normal;
    font-size: clamp(2.2rem, 9.8vw, 3.4rem);
    word-break: normal;
  }

  .seo-hero__panel {
    padding: 28px 24px;
    box-shadow: 10px 10px 0 rgba(154, 79, 44, 0.86);
  }

  .key-points,
  .article-toc ol,
  .related-pages__grid,
  .seo-sidebar,
  .hub-intro,
  .hub-grid,
  .seo-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .article-toc {
    padding: 24px;
  }

  .seo-final-cta__inner {
    align-items: start;
  }

  .seo-final-cta__inner .button {
    width: fit-content;
  }

  .hub-intro {
    gap: 24px;
  }

  .hub-card {
    min-height: 300px;
  }

  .related-card {
    min-height: 155px;
  }
}

@media (max-width: 640px) {
	.legal-toc ul {
		grid-template-columns: 1fr;
	}

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .breadcrumbs li[aria-current="page"] {
    width: 100%;
  }

  .breadcrumbs li:nth-last-child(2)::after {
    display: none;
  }

  .seo-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-answer,
  .hub-card,
  .seo-sidebar__card {
    padding: 24px 21px;
  }

  .content-callout {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 22px 20px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    scrollbar-color: var(--copper) var(--border);
    scrollbar-width: thin;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 9px;
  }

  .comparison-table td {
    font-size: 0.78rem;
  }
}

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

  .brand__name {
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 2.14rem;
  }

  .hero-visual {
    padding-left: 8px;
  }

  .estimate-line {
    padding-inline: 12px;
  }

  .b2b-panel {
    margin-inline: -12px;
    padding-inline: 20px;
  }
}

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

@media print {
  .site-header,
  .contact-section,
  .site-footer,
  .hero-actions,
  .section-action {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .hero-grid {
    min-height: 0;
    padding-block: 28px;
  }
}
