:root {
  --navy: #031f4c;
  --navy-950: #020f28;
  --navy-800: #082c63;
  --gold: #c9a74f;
  --gold-dark: #7a642e;
  --gold-soft: #e4cf97;
  --white: #ffffff;
  --ink: #102342;
  --muted: #566681;
  --warm: #f4efe7;
  --warm-2: #e8dfd2;
  --line: #d8cfbf;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #1f6f4a;
  --error: #9a372e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
  --container: 1240px;
  --section: clamp(5rem, 8vw, 8rem);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

::selection {
  color: var(--navy-950);
  background: var(--gold-soft);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 500;
}

.container {
  width: min(100% - 3rem, 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;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: rgba(2, 15, 40, 0.98);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  padding: 0.3rem;
  object-fit: contain;
  background: var(--warm);
  border-radius: 0.2rem;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  content: '';
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current='page'] {
  color: var(--white);
}

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

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.5rem;
  color: var(--navy-950);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button:hover {
  color: var(--navy-950);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.button__arrow {
  font-size: 1rem;
  line-height: 1;
}

.button--header {
  min-height: 3.05rem;
  padding-inline: 1.25rem;
  white-space: nowrap;
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button--ghost:hover {
  color: var(--gold);
  background: rgba(201, 167, 79, 0.08);
  border-color: var(--gold);
}

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

.button--navy:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
}

.menu-toggle i {
  width: 1.2rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] i:nth-of-type(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] i:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] i:nth-of-type(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 5.5rem 0 0;
  overflow-y: auto;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid var(--line-dark);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  min-height: calc(100dvh - 5.5rem);
  padding-block: 2rem 3rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav__label {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav li {
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav nav a {
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-decoration: none;
}

.mobile-nav__contact {
  display: grid;
  gap: 0.5rem;
  margin-block: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb {
  padding-block: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--gold-dark);
  content: '/';
}

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

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background:
    linear-gradient(rgba(201, 167, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 167, 79, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 36%, rgba(201, 167, 79, 0.1), transparent 28%),
    radial-gradient(circle at 6% 90%, rgba(8, 44, 99, 0.85), transparent 35%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.page-hero::after {
  position: absolute;
  right: -15%;
  bottom: -50%;
  z-index: -1;
  width: 55rem;
  height: 55rem;
  content: '';
  border: 1px solid rgba(201, 167, 79, 0.13);
  border-radius: 50%;
}

.page-hero__grid {
  min-height: min(48rem, calc(100dvh - 5.75rem));
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.page-hero__content {
  max-width: 54rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.eyebrow--light,
.section--navy .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 54rem;
  margin-bottom: 1.75rem;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.96;
}

.page-hero__lead {
  max-width: 46rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.82;
}

.page-hero__aside {
  position: relative;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid rgba(201, 167, 79, 0.28);
  background: rgba(2, 15, 40, 0.42);
}

.page-hero__aside::before,
.page-hero__aside::after {
  position: absolute;
  content: '';
  background: rgba(201, 167, 79, 0.35);
}

.page-hero__aside::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.page-hero__aside::after {
  top: 42%;
  right: 0;
  left: 0;
  height: 1px;
}

.page-hero__aside-label,
.page-hero__aside-note {
  position: relative;
  z-index: 2;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero__aside-text {
  position: relative;
  z-index: 2;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.page-hero__aside-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.1em;
}

.axis-mark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 6.5rem;
  height: 6.5rem;
  border: 1px solid rgba(201, 167, 79, 0.35);
  border-radius: 50%;
}

.axis-mark::before,
.axis-mark::after {
  position: absolute;
  content: '';
  background: var(--gold);
}

.axis-mark::before {
  top: 50%;
  left: -1rem;
  width: calc(100% + 2rem);
  height: 1px;
}

.axis-mark::after {
  top: -1rem;
  left: 50%;
  width: 1px;
  height: calc(100% + 2rem);
}

.axis-mark i {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  z-index: 2;
  background: var(--gold);
  border-radius: 50%;
}

.axis-mark i:nth-child(1) { top: calc(50% - 0.22rem); left: -1.2rem; }
.axis-mark i:nth-child(2) { top: calc(50% - 0.22rem); right: -1.2rem; }
.axis-mark i:nth-child(3) { top: -1.2rem; left: calc(50% - 0.22rem); }
.axis-mark i:nth-child(4) { bottom: -1.2rem; left: calc(50% - 0.22rem); }

/*
 * Principle card — the shared hero-aside architecture (homepage "North Star" card is the
 * reference implementation). Reused via .page-hero__aside--principle / .axis-mark--principle
 * across Home, Divisions, Digital, Trade, and Real Estate so all five hero sections read as
 * one card system. Size modifiers (--sequence, --relaxed) adapt type scale to content length
 * without altering the card architecture itself.
 */
.page-hero__aside--principle {
  min-height: 24rem;
  justify-content: flex-end;
  overflow: hidden;
  padding: 7rem 2.5rem 2.5rem;
  background: linear-gradient(145deg, rgba(8, 44, 99, 0.72), rgba(2, 15, 40, 0.82));
  border-color: rgba(201, 167, 79, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 2rem 4rem rgba(2, 15, 40, 0.18);
}

.page-hero__aside--principle::before {
  top: 2.5rem;
  bottom: auto;
  left: 2.5rem;
  width: 3.25rem;
  height: 2px;
  background: var(--gold);
}

.page-hero__aside--principle::after {
  top: 0;
  right: 2.5rem;
  bottom: 0;
  left: auto;
  width: 1px;
  height: auto;
  background: rgba(201, 167, 79, 0.16);
}

.axis-mark--principle {
  top: 2.15rem;
  right: 2.15rem;
  width: 3.75rem;
  height: 3.75rem;
  border: 0;
  border-top: 1px solid rgba(201, 167, 79, 0.65);
  border-right: 1px solid rgba(201, 167, 79, 0.65);
  border-radius: 0;
}

.axis-mark--principle::before {
  top: -0.25rem;
  right: -0.25rem;
  left: auto;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
}

.axis-mark--principle::after {
  display: none;
}

.page-hero__aside--principle .page-hero__aside-text {
  max-width: 12rem;
  margin-bottom: 1.4rem;
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  line-height: 0.98;
}

.page-hero__aside--principle .page-hero__aside-text--sequence {
  max-width: 13.5rem;
  font-size: clamp(1.5rem, 1.9vw, 2.05rem);
  line-height: 1.22;
}

.page-hero__aside--principle .page-hero__aside-text--relaxed {
  max-width: 16rem;
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
  line-height: 1.08;
}

body[data-page='/'] .page-hero .button {
  min-height: 3.65rem;
  padding-inline: 1.7rem;
}

.trust-bar {
  color: var(--navy);
  background: var(--warm);
  border-block: 1px solid var(--line);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-bar p {
  margin: 0;
  padding: 1.6rem 1.8rem;
  border-left: 1px solid var(--line);
}

.trust-bar p:last-child {
  border-right: 1px solid var(--line);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.trust-bar span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section {
  padding-block: var(--section);
}

body[data-page='/'] .section {
  padding-block: clamp(4.75rem, 7vw, 7rem);
}

body[data-page='/'] .section-heading {
  margin-bottom: clamp(2.6rem, 4.5vw, 3.9rem);
}

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

.section--navy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.section--navy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background:
    linear-gradient(rgba(201, 167, 79, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 167, 79, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2,
.cta-band h2,
.founder-grid h2,
.statement-grid h2,
.north-star-block h2,
.contact-panel h2,
.contact-form h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading__text {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.section-heading--light h2,
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-heading--light .section-heading__text {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.split-layout .section-heading {
  margin-bottom: 0;
}

.split-layout--industry {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

/*
 * Industry index — a single connected column beside the section copy (Home's "Industries
 * served"), rather than a separate grid of cells below it. Fine gold numbering + thin
 * dividers keep it in the same restrained register as the rest of the card system.
 */
.industry-index {
  margin: 0.6rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.industry-index li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.industry-index__number {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.industry-index__name {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  line-height: 1.15;
}

.prose {
  color: var(--muted);
}

.prose--large {
  font-size: 1.08rem;
  line-height: 1.9;
}

.prose p + p {
  margin-top: 1.25rem;
}

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

.prose--light {
  color: rgba(255, 255, 255, 0.68);
}

.callout-line {
  margin-top: 2.5rem;
  padding: 1.4rem 0 1.4rem 1.6rem;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

.section:not(.section--navy) .division-grid {
  border-color: var(--line);
}

.division-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-right: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

.section:not(.section--navy) .division-card {
  border-color: var(--line);
}

.division-card:last-child {
  border-right: 0;
}

.division-card:hover {
  background: rgba(201, 167, 79, 0.055);
}

.division-card--featured {
  box-shadow: inset 0 3px 0 var(--gold);
}

.division-card__top {
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.division-card__top strong {
  padding: 0.3rem 0.55rem;
  color: var(--navy-950);
  background: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.division-card__kicker {
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.division-card h3 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.section:not(.section--navy) .division-card h3 {
  color: var(--navy);
}

.division-card > p:not(.division-card__kicker) {
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.75;
}

.section:not(.section--navy) .division-card > p:not(.division-card__kicker) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  list-style: none;
}

.section:not(.section--navy) .check-list {
  color: var(--muted);
  border-color: var(--line);
}

.check-list li {
  position: relative;
  padding-left: 1rem;
}

.check-list li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  content: '';
  background: var(--gold);
  border-radius: 50%;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.division-grid--compact .division-card {
  min-height: 25rem;
}

.division-grid--homepage {
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.94fr));
}

.division-grid--homepage .division-card {
  padding-block: clamp(2.2rem, 3.5vw, 3rem);
}

.division-grid--homepage .division-card--featured {
  background: linear-gradient(180deg, rgba(201, 167, 79, 0.1), rgba(201, 167, 79, 0.025));
  box-shadow: inset 0 4px 0 var(--gold);
}

.division-grid--homepage .division-card--featured h3 {
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
}

.digital-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.digital-spotlight__intro {
  position: sticky;
  top: 8rem;
}

.digital-spotlight h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.digital-spotlight__intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

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

.capability-list > div {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.capability-list p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.process-step {
  position: relative;
  min-height: 15rem;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step__number,
.feature-card__number,
.process-detail article > div:first-child > span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.process-step h3 {
  margin-bottom: 0.8rem;
  font-size: 1.95rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.process-grid--summary .process-step {
  min-height: 13.5rem;
  padding: 1.8rem 1.7rem;
}

.process-grid--summary .process-step::after {
  position: absolute;
  top: 1.45rem;
  right: 1rem;
  color: var(--gold-dark);
  content: '→';
  font-size: 1.15rem;
  line-height: 1;
}

.process-grid--summary .process-step:nth-child(4n)::after {
  display: none;
}

.process-grid--summary .process-step:first-child,
.process-grid--summary .process-step:last-child {
  background: rgba(201, 167, 79, 0.08);
  box-shadow: inset 0 3px 0 var(--gold);
}

.process-grid--summary .process-step__number {
  margin-bottom: 1.65rem;
}

.process-grid--summary .process-step p {
  font-size: 0.96rem;
}

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

.section-action {
  margin-top: 2.5rem;
}

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

.feature-card {
  min-height: 17rem;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.35);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.feature-grid--dark {
  border-color: var(--line-dark);
}

.feature-grid--dark .feature-card {
  background: rgba(255, 255, 255, 0.018);
  border-color: var(--line-dark);
}

.feature-grid--dark .feature-card h3 {
  color: var(--white);
}

.feature-grid--dark .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.list-grid li {
  min-height: 4.5rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.2rem;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.list-grid li span {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.7rem;
}

.section--navy .list-grid {
  border-color: var(--line-dark);
}

.section--navy .list-grid li {
  color: var(--white);
  border-color: var(--line-dark);
}

.founder-section {
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.founder-image {
  position: relative;
  max-width: 34rem;
  padding: 1.2rem 0 0 1.2rem;
}

.founder-image::before {
  position: absolute;
  inset: 0 1.2rem 1.2rem 0;
  z-index: -1;
  content: '';
  background: var(--navy);
}

.founder-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.8) contrast(1.04);
}

.founder-grid > div:last-child > p:not(.eyebrow, .founder-role) {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.founder-role {
  margin: -0.35rem 0 1.7rem;
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.insight-preview,
.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 7rem);
}

.insight-preview {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.insight-preview .section-heading {
  margin-bottom: 0;
}

.publication-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--muted);
  background: var(--white);
  border-top: 3px solid var(--gold);
}

.publication-note > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.publication-note h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.publication-note p {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.48;
}

.insight-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.insight-topics li {
  padding: 0.75rem 0.9rem;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 600;
}

.statement-grid article {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.55);
  border-top: 3px solid var(--gold);
}

.statement-grid h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.statement-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.north-star-block > h2 {
  margin-bottom: 3.5rem;
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 7rem);
}

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

.north-star-grid p {
  margin: 0;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.north-star-grid strong,
.north-star-grid span {
  display: block;
}

.north-star-grid strong {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.north-star-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

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

.decision-list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(10rem, 0.45fr);
  gap: 1rem;
  align-items: center;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.decision-list span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.decision-list h3,
.decision-list p {
  margin: 0;
}

.decision-list h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.decision-list p {
  color: var(--muted);
  font-size: 0.85rem;
}

.decision-list a {
  color: var(--navy);
  font-weight: 700;
}

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

.capability-cards article {
  min-height: 18rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability-cards span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-cards h3 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 1.7rem;
}

.capability-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.scope-note {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.scope-note strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
}

.scope-note p {
  margin: 0;
  color: var(--muted);
}

.process-detail {
  border-top: 1px solid var(--line);
}

.process-detail article {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.process-detail h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.process-detail article > div:last-child > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.process-detail h3 {
  margin: 2rem 0 0.6rem;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

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

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

.faq-item summary {
  min-height: 5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 42rem;
  padding: 0 4rem 1.8rem 0;
  color: var(--muted);
}

.faq-item__answer p {
  margin: 0;
}

.cta-band {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
  border-top: 1px solid rgba(201, 167, 79, 0.22);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.cta-band h2 {
  max-width: 48rem;
  margin: 0;
  color: var(--white);
}

.cta-band__grid > div:last-child > p {
  margin-bottom: 1.8rem;
  font-size: 1.06rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 8rem;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
}

.contact-panel h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.contact-panel dl {
  margin: 2rem 0;
}

.contact-panel dl > div {
  padding-block: 1rem;
  border-top: 1px solid var(--line-dark);
}

.contact-panel dt {
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-panel__note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--warm);
  border: 1px solid var(--line);
}

.contact-form__heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.contact-form h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
}

.contact-form__heading > p:last-child,
.form-fallback {
  color: var(--muted);
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--error);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8bdad;
  border-radius: 0;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(201, 167, 79, 0.2);
  outline-offset: 0;
}

.field [aria-invalid='true'] {
  border-color: var(--error);
}

.field-error {
  min-height: 1rem;
  margin: 0.35rem 0 0;
  color: var(--error);
  font-size: 0.72rem;
  line-height: 1.4;
}

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

.turnstile-slot {
  min-height: 0;
  margin-top: 1.4rem;
}

.turnstile-slot:not(:empty) {
  min-height: 4rem;
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--navy);
}

.consent a,
.form-fallback a {
  color: var(--navy);
  font-weight: 700;
}

.form-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.form-status {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status[data-state='success'] { color: var(--success); }
.form-status[data-state='error'] { color: var(--error); }

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-fallback {
  margin: 1.2rem 0 0;
  font-size: 0.76rem;
}

.legal-copy {
  max-width: 54rem;
}

.legal-copy__updated {
  padding-bottom: 1.5rem;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy h2 {
  margin: 3rem 0 0.8rem;
  font-size: 2rem;
}

.legal-copy p {
  color: var(--muted);
}

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

.article__header {
  max-width: 58rem;
  padding-block: clamp(5rem, 9vw, 8rem) 3.5rem;
  border-bottom: 1px solid var(--line);
}

.article__header h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.article__description {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article__body {
  max-width: 48rem;
  padding-block: 4rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.article__body h2,
.article__body h3 {
  margin: 2.8rem 0 1rem;
}

.article__body h2 { font-size: 2.5rem; }
.article__body h3 { font-size: 1.8rem; }

.article__body a {
  color: var(--navy);
  font-weight: 700;
}

.article__related,
.article__footer {
  max-width: 48rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}

.article__related h2 {
  font-size: 2rem;
}

.article__related ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
}

.article__footer {
  margin-bottom: 4rem;
}

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

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(18rem, 1.75fr) minmax(7rem, 0.72fr) minmax(8rem, 0.82fr) minmax(18rem, 1.35fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(4.25rem, 7vw, 6rem);
}

.site-footer__brand > p {
  max-width: 23rem;
  margin: 1.5rem 0 0;
  font-size: 0.94rem;
  line-height: 1.75;
}

.site-footer__brand .site-footer__north-star {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.site-footer h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer__location {
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer__location {
  display: grid;
  gap: 0.15rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__location span,
.site-footer__contact-list span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__location strong {
  color: var(--white);
  font-weight: 600;
}

.site-footer__contact {
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line-dark);
}

.site-footer__contact-list {
  gap: 0 !important;
  border-top: 1px solid var(--line-dark);
}

.site-footer__contact-list li {
  border-bottom: 1px solid var(--line-dark);
}

.site-footer__contact-list a {
  min-height: 4.2rem;
  display: grid;
  gap: 0.12rem;
  align-content: center;
}

.site-footer__contact-list strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.site-footer__social {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem !important;
  margin-top: 1.25rem !important;
}

.site-footer__social a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.site-footer__bottom {
  min-height: 5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  gap: 1.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #187a4e;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0.5rem 1.7rem rgba(2, 15, 40, 0.25);
  text-decoration: none;
  transition: background-color 200ms ease-out, transform 200ms ease-out;
}

.whatsapp-float:hover {
  background: #219c64;
  transform: translateY(-2px);
}

.whatsapp-float__icon {
  width: 1.6rem;
  height: 1.6rem;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .button--header {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
    gap: 3rem;
  }

  .division-grid,
  .feature-grid,
  .capability-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .division-card:nth-child(2) {
    border-right: 0;
  }

  .division-card:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
  }

  .section:not(.section--navy) .division-card:last-child {
    border-color: var(--line);
  }

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

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

  .site-footer__top {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .site-footer__top > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    padding: 2rem 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

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

  .site-footer__contact-list li {
    padding-right: 1rem;
    border-right: 1px solid var(--line-dark);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .site-header__inner {
    min-height: 4.75rem;
  }

  .brand img {
    width: 2.75rem;
    height: 2.75rem;
  }

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

  .brand small {
    font-size: 0.57rem;
  }

  .mobile-nav {
    inset: 4.75rem 0 0;
  }

  .mobile-nav__inner {
    min-height: calc(100dvh - 4.75rem);
  }

  .page-hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
    padding-block: 5rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .page-hero__aside {
    min-height: 18rem;
  }

  .page-hero__aside--principle {
    min-height: 17rem;
    padding: 5rem 1.75rem 1.75rem;
  }

  .page-hero__aside--principle::before {
    top: 1.75rem;
    left: 1.75rem;
  }

  .page-hero__aside--principle::after {
    right: 1.75rem;
  }

  .axis-mark--principle {
    top: 1.45rem;
    right: 1.45rem;
    width: 3rem;
    height: 3rem;
  }

  .page-hero__aside--principle .page-hero__aside-text--sequence {
    max-width: none;
    font-size: clamp(1.35rem, 3.4vw, 1.7rem);
    line-height: 1.2;
  }

  .page-hero__aside--principle .page-hero__aside-text--relaxed {
    max-width: none;
    font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  }

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

  .trust-bar p:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-bar p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .split-layout,
  .digital-spotlight,
  .founder-grid,
  .insight-preview,
  .statement-grid,
  .faq-layout,
  .cta-band__grid,
  .contact-layout,
  .process-detail article {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .digital-spotlight__intro,
  .faq-layout .section-heading,
  .contact-panel {
    position: static;
  }

  .division-grid,
  .feature-grid,
  .capability-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .division-card,
  .division-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section:not(.section--navy) .division-card {
    border-color: var(--line);
  }

  .division-card:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .feature-card,
  .capability-cards article {
    min-height: auto;
  }

  .list-grid,
  .north-star-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .list-grid li,
  .north-star-grid p {
    border-right: 1px solid var(--line);
  }

  .section--navy .list-grid li,
  .north-star-grid p {
    border-color: var(--line-dark);
  }

  .decision-list article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .decision-list p {
    grid-column: 2;
  }

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

  .process-detail article {
    padding-block: 3rem;
  }

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

  .site-footer__brand,
  .site-footer__top > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .brand img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .button-row,
  .button-row .button,
  .form-actions,
  .form-actions .button {
    width: 100%;
  }

  .button-row {
    align-items: stretch;
  }

  .page-hero__grid {
    padding-block: 4rem;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .page-hero__aside {
    min-height: 16rem;
    padding: 1.5rem;
  }

  .axis-mark {
    top: 1.5rem;
    right: 1.5rem;
    width: 5rem;
    height: 5rem;
  }

  .page-hero__aside--principle {
    min-height: 17rem;
    padding: 5rem 1.75rem 1.75rem;
  }

  .page-hero__aside--principle::before {
    top: 1.75rem;
    left: 1.75rem;
  }

  .page-hero__aside--principle::after {
    right: 1.75rem;
  }

  .axis-mark--principle {
    top: 1.45rem;
    right: 1.45rem;
    width: 3rem;
    height: 3rem;
  }

  .page-hero__aside--principle .page-hero__aside-text--sequence {
    font-size: clamp(1.3rem, 5.5vw, 1.6rem);
  }

  .page-hero__aside--principle .page-hero__aside-text--relaxed {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
  }

  .trust-bar__grid,
  .process-grid,
  .process-grid--condensed,
  .form-grid,
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-bar p,
  .trust-bar p:nth-child(2),
  .trust-bar p:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-bar p:nth-child(n + 3) {
    border-top: 0;
  }

  .section-heading h2,
  .cta-band h2,
  .founder-grid h2,
  .statement-grid h2,
  .north-star-block h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .industry-index li {
    grid-template-columns: 2rem minmax(0, 1fr);
    padding: 0.95rem 0;
  }

  .industry-index__name {
    font-size: 1.08rem;
  }

  .division-card,
  .feature-card,
  .capability-cards article,
  .statement-grid article,
  .contact-form {
    padding: 1.5rem;
  }

  .process-step {
    min-height: auto;
  }

  .process-grid--summary .process-step {
    padding: 1.6rem 3rem 1.6rem 1.5rem;
  }

  .process-grid--summary .process-step:not(:last-child)::after {
    top: auto;
    right: 1.3rem;
    bottom: 1.3rem;
    display: block;
    content: '↓';
  }

  .process-grid--summary .process-step:last-child::after {
    display: none;
  }

  .insight-topics,
  .site-footer__contact-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__contact-list li {
    padding-right: 0;
    border-right: 0;
  }

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__top {
    padding-block: 4rem;
  }

  .site-footer__top > div,
  .site-footer__brand,
  .site-footer__top > div:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 340px) {
  html {
    overflow-x: clip;
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }
}

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

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

@media print {
  .site-header,
  .whatsapp-float,
  .button,
  .site-footer {
    display: none !important;
  }

  .page-hero,
  .section--navy,
  .cta-band {
    color: var(--ink);
    background: var(--white);
  }

  .page-hero h1,
  .section--navy h2,
  .section--navy h3,
  .cta-band h2 {
    color: var(--navy);
  }
}
