:root {
  color-scheme: light;
  --canvas: #fbfaf6;
  --surface: #ffffff;
  --surface-warm: #f6efe4;
  --surface-sky: #eaf4fb;
  --surface-sage: #e8f2eb;
  --blue-soft: #dbeafc;
  --blue: #2d6fd1;
  --blue-dark: #205bb2;
  --ink: #17324a;
  --ink-strong: #0e2940;
  --muted: #627282;
  --sage: #267358;
  --coral: #fa4548;
  --line: #dcdedb;
  --line-strong: #c7d1d5;
  --white: #ffffff;
  --max: 1240px;
  --gutter: clamp(20px, 4.8vw, 68px);
  --header-height: 78px;
  --shadow-sm: 0 8px 24px rgba(24, 50, 72, .08);
  --shadow-md: 0 22px 56px rgba(24, 50, 72, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: .2em;
}

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 8px;
  background: var(--ink-strong);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-170%);
}

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

.section-shell {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(199, 209, 213, .65);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.brand-plate,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: #0a0434;
  border-radius: 10px;
  text-decoration: none;
}

.brand-plate {
  width: clamp(194px, 18vw, 226px);
  min-height: 56px;
  padding: 4px 9px;
}

.brand-plate img,
.footer-brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

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

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 110px) 0 0;
  background:
    radial-gradient(circle at 91% 12%, rgba(219, 234, 252, .85), transparent 39%),
    radial-gradient(circle at 3% 54%, rgba(246, 239, 228, .94), transparent 43%),
    var(--canvas);
}

.hero::before {
  position: absolute;
  top: 20%;
  right: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(45, 111, 209, .11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
  padding-bottom: clamp(88px, 10vw, 132px);
}

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

.hero h1 {
  max-width: 9.4ch;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(58px, 6.1vw, 84px);
  font-weight: 650;
  letter-spacing: -.047em;
  line-height: 1.01;
}

.hero-lede {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.6;
}

.quiet-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.quiet-link span {
  color: var(--blue);
  transition: transform 180ms var(--ease);
}

.quiet-link:hover span {
  transform: translateY(3px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.property-frame {
  position: absolute;
  inset: 0 0 0 4%;
  overflow: hidden;
  margin: 0;
  background: var(--blue-soft);
  border: 8px solid rgba(255, 255, 255, .96);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.property-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.88) contrast(.98);
}

.practice-card {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: -34px;
  left: -62px;
  width: min(420px, 74%);
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(199, 209, 213, .9);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.practice-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0 22%, var(--blue) 22% 100%);
  content: "";
}

.practice-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 25px 20px;
}

.practice-card header p {
  margin: 4px 0 0;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.practice-card h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--ink-strong);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-align: right;
}

.practice-card dl {
  margin: 0;
  padding: 0 25px;
}

.practice-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.practice-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.practice-card dd {
  margin: 0;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  padding: 15px 25px 17px;
  background: var(--surface-sage);
  color: var(--sage);
  font-size: 12px;
  font-weight: 780;
}

.card-status span {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(38, 115, 88, .1);
  border-radius: 50%;
}

.assurance-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.assurance-rail p {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px clamp(12px, 2vw, 30px);
  border-left: 1px solid var(--line);
  font-size: 13px;
}

.assurance-rail p:first-child {
  border-left: 0;
}

.assurance-rail span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--surface-sage);
  border-radius: 50%;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.assurance-rail strong {
  color: var(--ink);
  font-weight: 730;
}

.section {
  padding: clamp(92px, 10vw, 142px) 0;
}

.section h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(48px, 5.1vw, 68px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.practice {
  background: var(--surface);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
}

.statement-grid h2 {
  max-width: 11ch;
}

.statement-copy {
  padding-bottom: 5px;
}

.statement-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.statement-copy p + p {
  margin-top: 18px;
}

.statement-copy strong {
  color: var(--ink);
  font-weight: 720;
}

.practice-composition {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  margin-top: clamp(58px, 7vw, 92px);
}

.measurement-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  margin: 0;
  background: var(--surface-warm);
  border: 8px solid var(--canvas);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.measurement-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(14, 41, 64, .18));
  content: "";
  pointer-events: none;
}

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

.practice-notes {
  display: grid;
  grid-template-rows: 1.12fr .88fr;
  gap: 22px;
}

.note-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(34px, 5vw, 66px);
  background: var(--surface-warm);
  border: 1px solid rgba(199, 209, 213, .7);
  border-radius: 28px;
}

.note-panel-primary {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .75), transparent 36%),
    var(--surface-sky);
}

.note-number {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(45, 111, 209, .15);
  font-size: clamp(72px, 9vw, 122px);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: 1;
}

.note-kicker,
.scope-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
}

.note-panel h3 {
  position: relative;
  max-width: 14ch;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 650;
  letter-spacing: -.042em;
  line-height: 1.08;
}

.note-panel > p:last-child {
  position: relative;
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.work {
  background: var(--surface-sky);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
}

.work-heading h2 {
  max-width: 13ch;
}

.work-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(54px, 6vw, 78px);
}

.scope-grid article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 42px);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(199, 209, 213, .72);
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(24, 50, 72, .04);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.scope-grid article:nth-child(2) {
  background: rgba(246, 239, 228, .88);
}

.scope-grid article:nth-child(3) {
  background: rgba(232, 242, 235, .92);
}

.scope-grid article:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.scope-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  background: var(--white);
  border: 1px solid rgba(199, 209, 213, .75);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(24, 50, 72, .06);
}

.scope-kicker {
  margin-top: 48px;
}

.scope-grid h3 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(27px, 2.6vw, 35px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.scope-grid article > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.region {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 239, 228, .72), transparent 62%),
    var(--canvas);
}

.region::after {
  position: absolute;
  right: -9vw;
  bottom: -21vw;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(45, 111, 209, .1);
  border-radius: 50%;
  content: "";
}

.region-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
  gap: clamp(50px, 9vw, 138px);
  align-items: center;
}

.region-grid h2 {
  max-width: 11ch;
}

.region-copy > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.footprint p {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 9px 24px rgba(24, 50, 72, .05);
}

.footprint span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footprint strong {
  margin-top: 18px;
  color: var(--ink-strong);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.availability-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 760;
}

.availability-note span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--surface-sage);
  border-radius: 50%;
}

.reports {
  padding-top: clamp(38px, 5vw, 70px);
  background: var(--surface);
}

.reports-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(48px, 6.5vw, 82px);
  background:
    radial-gradient(circle at 85% 0%, rgba(45, 111, 209, .2), transparent 34%),
    var(--ink-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.reports-panel .eyebrow {
  color: #9fc7ff;
}

.reports-panel h2 {
  max-width: 15ch;
  color: var(--white);
  font-size: clamp(44px, 4.7vw, 65px);
}

.reports-panel p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.65;
}

.reports-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.reports-button span {
  color: var(--blue);
  transition: transform 180ms var(--ease);
}

.reports-button:hover {
  box-shadow: 0 11px 26px rgba(0, 0, 0, .2);
  transform: translateY(-2px);
}

.reports-button:hover span {
  transform: translate(2px, -2px);
}

.site-footer {
  padding: 42px 0 52px;
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 210px minmax(230px, 1fr) auto;
  gap: 22px clamp(28px, 5vw, 68px);
  align-items: center;
}

.footer-brand {
  width: 210px;
  min-height: 62px;
  padding: 5px 10px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.footer-grid small {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
    gap: 52px;
  }

  .practice-card {
    left: -32px;
  }

  .scope-grid article {
    min-height: 410px;
  }
}

@media (max-width: 1020px) {
  .js .menu-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-button i,
  .menu-button i::before,
  .menu-button i::after {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink-strong);
    content: "";
    transition: transform 180ms var(--ease), opacity 180ms ease;
  }

  .menu-button i {
    position: relative;
  }

  .menu-button i::before {
    position: absolute;
    top: -6px;
    left: 0;
  }

  .menu-button i::after {
    position: absolute;
    top: 6px;
    left: 0;
  }

  .menu-button[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] i::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 22px;
  }

  .js .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px var(--gutter) 22px;
    background: rgba(251, 250, 246, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 220ms var(--ease), opacity 160ms ease, visibility 220ms;
  }

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

  .js .site-nav a {
    min-height: 52px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .js .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    padding-top: 76px;
  }

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

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

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

  .hero-visual {
    width: min(760px, 94%);
    min-height: 520px;
    justify-self: end;
  }

  .practice-card {
    right: auto;
    bottom: -46px;
    left: -6%;
  }

  .statement-grid,
  .work-heading,
  .region-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .statement-grid h2,
  .work-heading h2,
  .region-grid h2 {
    max-width: 14ch;
  }

  .statement-copy,
  .work-heading > p,
  .region-copy {
    max-width: 720px;
  }

  .practice-composition {
    grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr);
  }

  .measurement-frame {
    min-height: 580px;
  }

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

  .scope-grid article {
    min-height: 340px;
  }

  .scope-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

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

  .reports-button {
    justify-self: start;
  }

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

  .footer-grid nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .brand-plate {
    width: 188px;
    min-height: 50px;
    padding: 4px 8px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 42px;
    padding-bottom: 82px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(49px, 13.5vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    display: grid;
    gap: 0;
  }

  .property-frame {
    position: relative;
    inset: auto;
    height: min(74vw, 430px);
    border-width: 6px;
    border-radius: 22px;
  }

  .practice-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 24px);
    margin: -24px 12px 0;
    border-radius: 18px;
  }

  .practice-card header {
    padding: 22px 20px 18px;
  }

  .practice-card dl {
    padding-inline: 20px;
  }

  .card-status {
    padding-inline: 20px;
  }

  .assurance-rail {
    grid-template-columns: 1fr;
  }

  .assurance-rail p {
    min-height: 66px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .assurance-rail p:first-child {
    border-top: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section h2 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .practice-composition {
    grid-template-columns: 1fr;
  }

  .measurement-frame {
    min-height: min(120vw, 690px);
  }

  .practice-notes {
    grid-template-rows: none;
  }

  .note-panel {
    min-height: 390px;
    padding: 34px 28px;
    border-radius: 22px;
  }

  .note-number {
    top: 22px;
    right: 24px;
  }

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

  .scope-grid article,
  .scope-grid article:last-child {
    grid-column: auto;
    min-height: 330px;
    border-radius: 19px;
  }

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

  .reports {
    padding-top: 26px;
  }

  .reports-panel {
    padding: 40px 28px;
    border-radius: 22px;
  }

  .reports-panel h2 {
    font-size: clamp(42px, 11.5vw, 57px);
  }

  .reports-button {
    width: 100%;
  }

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

  .footer-brand {
    width: 205px;
  }

  .footer-grid nav,
  .footer-grid small {
    grid-column: auto;
  }

  .footer-grid nav {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .header-shell {
    gap: 12px;
  }

  .brand-plate {
    width: 174px;
  }

  .menu-button {
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: 48px;
  }

  .practice-card h2 {
    font-size: 21px;
  }

  .practice-card dl div {
    grid-template-columns: 76px 1fr;
    gap: 10px;
  }

  .measurement-frame {
    min-height: 500px;
  }

  .note-panel {
    min-height: 360px;
  }

  .reports-panel {
    padding-inline: 23px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Selected homepage — warm Xpress Standard, simplified after client feedback. */

.site-nav {
  gap: clamp(15px, 2vw, 29px);
}

.hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(92px, 10vw, 132px);
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(54px, 5.7vw, 78px);
}

.hero-lede {
  max-width: 610px;
}

.hero-visual {
  min-height: 590px;
}

.property-frame {
  inset: 0;
}

.property-frame picture,
.measurement-frame picture {
  width: 100%;
  height: 100%;
  display: block;
}

.story .measurement-frame img {
  object-position: 38% center;
}

.story .measurement-frame picture {
  position: absolute;
  inset: 0;
}

.property-frame figcaption,
.measurement-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(14, 41, 64, .65);
}

.story {
  background: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: center;
}

.story .measurement-frame {
  min-height: 660px;
}

.story-copy {
  max-width: 700px;
}

.story-copy h2 {
  max-width: 11ch;
}

.story-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
}

.story-copy blockquote {
  max-width: 620px;
  margin: clamp(36px, 5vw, 62px) 0 0;
  padding: 5px 0 5px clamp(24px, 3vw, 38px);
  border-left: 4px solid var(--coral);
  color: var(--ink-strong);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.16;
}

.services {
  background: var(--surface-sky);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
}

.services-heading h2 {
  max-width: 10ch;
}

.services-heading > p {
  max-width: 680px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-list {
  margin-top: clamp(52px, 6vw, 78px);
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(220px, .72fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  padding: clamp(34px, 4.8vw, 58px) 0;
  border-bottom: 1px solid var(--line-strong);
}

.service-label {
  margin: 5px 0 0;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
}

.service-row h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.service-row > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.audience {
  background: var(--surface);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(54px, 9vw, 138px);
  align-items: start;
}

.audience-grid h2 {
  max-width: 13ch;
}

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

.audience-list article {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line-strong);
}

.audience-list h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(24px, 2.25vw, 31px);
  font-weight: 650;
  letter-spacing: -.025em;
}

.audience-list p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.footprint-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 239, 228, .78), transparent 67%),
    var(--canvas);
}

.footprint-section::after {
  position: absolute;
  right: -9vw;
  bottom: -21vw;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(45, 111, 209, .1);
  border-radius: 50%;
  content: "";
}

.footprint-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: clamp(52px, 9vw, 136px);
  align-items: end;
}

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

.footprint-grid > p {
  margin: 0 0 8px;
  padding-top: 22px;
  border-top: 3px solid var(--coral);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.reports {
  position: relative;
  padding: clamp(82px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(45, 111, 209, .24), transparent 34%),
    var(--ink-strong);
}

.reports::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--coral);
  content: "";
}

.reports-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, .58fr) auto;
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
}

.reports .eyebrow {
  color: #9fc7ff;
}

.reports h2 {
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(42px, 4.6vw, 64px);
}

.reports-inner > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.65;
}

.reports .reports-button {
  align-self: end;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 48px;
  }

  .service-row {
    grid-template-columns: 140px minmax(210px, .7fr) minmax(270px, 1fr);
    gap: 28px;
  }

  .reports-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, .7fr);
  }

  .reports .reports-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .story-grid,
  .services-heading,
  .audience-grid,
  .footprint-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(780px, 96%);
    min-height: 540px;
    justify-self: end;
  }

  .story-grid {
    gap: 48px;
  }

  .story .measurement-frame {
    width: min(620px, 88%);
    min-height: 680px;
  }

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

  .services-heading,
  .audience-grid,
  .footprint-grid {
    gap: 36px;
  }

  .services-heading h2,
  .audience-grid h2,
  .footprint-grid h2 {
    max-width: 15ch;
  }

  .service-row {
    grid-template-columns: 140px minmax(220px, .75fr) minmax(270px, 1fr);
  }

  .audience-list {
    max-width: 760px;
  }

  .footprint-grid > p {
    max-width: 580px;
  }

  .reports-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .reports .reports-button {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    gap: 38px;
    padding-bottom: 74px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(48px, 13vw, 64px);
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
  }

  .property-frame {
    height: min(74vw, 430px);
  }

  .property-frame figcaption,
  .measurement-frame figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .story .measurement-frame {
    width: 100%;
    min-height: min(118vw, 680px);
  }

  .story .measurement-frame img {
    object-position: 36% center;
  }

  .story-copy blockquote {
    padding-left: 22px;
    font-size: clamp(27px, 8vw, 37px);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 36px;
  }

  .service-label {
    margin-top: 0;
  }

  .service-row > p:last-child {
    margin-top: 5px;
  }

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

@media (max-width: 420px) {
  .hero h1 {
    font-size: 47px;
  }

  .story .measurement-frame {
    min-height: 500px;
  }
}

/* Policy and error pages */

.policy-page {
  min-height: 100vh;
  background: var(--canvas);
}

.policy-header {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px var(--gutter);
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.policy-brand {
  width: 215px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 4px 8px;
  background: #0a0434;
  border-radius: 8px;
  text-decoration: none;
}

.policy-brand img {
  width: 100%;
  height: auto;
}

.policy-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 750;
}

.policy-main {
  width: min(760px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-block: clamp(70px, 9vw, 126px);
}

.policy-main h1 {
  max-width: 12ch;
  margin: 0 0 32px;
  color: var(--ink-strong);
  font-size: clamp(52px, 7vw, 78px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1;
}

.policy-main h2 {
  margin: 44px 0 10px;
  color: var(--ink-strong);
  font-size: 21px;
  line-height: 1.25;
}

.policy-main p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.policy-summary {
  margin-bottom: 46px !important;
  padding: 24px 26px;
  background: var(--surface-sky);
  border-left: 4px solid var(--coral);
  color: var(--ink) !important;
}

.home-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 11px 18px;
  background: var(--ink-strong);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 760px) {
  .policy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-main {
    padding-top: 62px;
  }
}
