:root {
  /* Updated Law Firm Color Palette */
  --ink: #0a192f;        /* Deep Navy */
  --ink-2: #172a45;      /* Lighter Navy */
  --pine: #112240;       /* Secondary Navy */
  --emerald: #172a45;    /* Accent Navy (replaces primary green) */
  --jade: #c5a059;       /* Legal Gold (replaces bright mint/green) */
  --mint: #e8d099;       /* Light Gold */
  --gold: #c5a059;       /* Standard Gold */
  --gold-2: #e8d099;     /* Highlight Gold */
  --paper: #f8f9fa;      /* Crisp paper white */
  --paper-2: #ffffff;    /* Pure white */
  --charcoal: #2d3748;   /* Dark text for readability */
  --clay: #8b6d3b;       /* Darker gold for borders */
  --sky: #e2e8f0;        /* Light gray */
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(10, 25, 47, .14);
  --shadow: 0 22px 70px rgba(0, 0, 0, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  background: var(--paper); /* Switched from dark green gradient to clean light mode */
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(10, 25, 47, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 47, .05) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0%, rgba(197, 160, 89, .05) 26%, transparent 46%),
    linear-gradient(240deg, transparent 5%, rgba(10, 25, 47, .05) 45%, transparent 68%);
  animation: sheen 16s ease-in-out infinite alternate;
}

@keyframes sheen {
  from { transform: translate3d(-2%, -1%, 0) scale(1); opacity: .75; }
  to { transform: translate3d(2%, 1%, 0) scale(1.05); opacity: 1; }
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  font-family: 'Times New Roman', Georgia, serif; /* Injects authoritative legal typography */
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 920px;
}

/* Fixes the invisible dark hero titles you asked about */
.hero h1, 
.page-hero h1 {
  color: #ffffff !important;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  max-width: 900px;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--gold-2);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--ink);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 25, 47, .95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .3);
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
  color: rgba(247, 243, 233, .85);
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-strip .icon {
  width: 15px;
  height: 15px;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: white;
}

.brand-mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 12px 28px rgba(197, 160, 89, .24));
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong {
  font-size: 1.06rem;
  font-family: 'Times New Roman', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand em {
  font-style: normal;
  color: var(--gold-2);
  font-size: .9rem;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
}

.nav-link {
  padding: 9px 12px;
  color: rgba(247, 243, 233, .85);
  font-size: .92rem;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: var(--gold-2);
}

.nav-cta,
.mobile-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(241, 212, 138, .6);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(197, 160, 89, .2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.nav-cta:hover,
.mobile-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(197, 160, 89, .28);
  filter: saturate(1.08);
}

.button--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--paper-2);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: none;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(10, 25, 47, .9);
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  margin: 0 auto 14px;
  width: min(var(--max), calc(100% - 40px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(10, 25, 47, .96);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-link,
.mobile-cta {
  width: 100%;
  margin-top: 8px;
}

.mobile-link {
  display: block;
  padding: 12px;
  border-radius: 6px;
  color: rgba(247, 243, 233, .82);
}

.mobile-link.is-active,
.mobile-link:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--gold-2);
}

.hero,
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink); /* Fallback */
}

.hero--home {
  min-height: 86svh;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(to right, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.45));
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 72px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 34px;
}

.hero__copy {
  max-width: 900px;
}

.hero-lead,
.page-hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(247, 243, 233, .9);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel,
.statement-panel,
.allocation-panel,
.dashboard-panel,
.report-panel,
.contact-panel,
.map-card {
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(10, 25, 47, .76);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 22px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink); /* Changed from light gold to dark navy for visibility on white */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}

.compass-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.compass-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink); /* Changed from off-white to dark navy */
  font-weight: 500;
}

.compass-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 5px rgba(197, 160, 89, .12);
}

.asset-pulse {
  display: none; /* Hidden for law firm, pulse animation is too finance-focused */
}

.metric-strip {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--dark-line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.metric {
  min-height: 140px;
  padding: 28px 20px;
  background: var(--ink);
}

.metric strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: var(--gold);
  font-family: 'Times New Roman', Georgia, serif;
}

.metric span:last-child {
  display: block;
  margin-top: 8px;
  color: rgba(247, 243, 233, .8);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
  position: relative;
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--paper + .section--paper {
  border-top: 1px solid var(--dark-line);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--accent {
  background: #eaeef2;
  color: var(--ink);
}

/* Ensure text elements in dark sections are white */
.section--ink h2, 
.section--ink h3, 
.section--ink p {
  color: var(--paper) !important;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(45, 55, 72, .9);
  font-size: 1.08rem;
}

.section--ink .section-heading p:not(.eyebrow) {
  color: rgba(247, 243, 233, .9) !important;
}

.solution-grid,
.principle-grid,
.desk-grid,
.journey-grid,
.pathway-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card,
.principle-grid article,
.desk-grid article,
.journey-grid article,
.pathway-card,
.faq-grid details {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--dark-line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(10, 25, 47, .04);
  overflow: hidden;
}

.section--ink .principle-grid article,
.section--ink .desk-grid article,
.section--ink .journey-grid article,
.section--ink .faq-grid details {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: var(--paper);
}

.solution-card::before,
.pathway-card::before,
.desk-grid article::before,
.journey-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--gold), var(--ink));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .3s ease;
}

.solution-card:hover::before,
.pathway-card:hover::before,
.desk-grid article:hover::before,
.journey-grid article:hover::before {
  transform: scaleX(1);
}

.card-icon,
.principle-grid .icon,
.pathway-card > .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(197, 160, 89, .1);
}

.card-icon .icon,
.principle-grid .icon,
.pathway-card > .icon {
  width: 24px;
  height: 24px;
}

.label,
.pathway-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--emerald);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.solution-card h3,
.pathway-card h3,
.principle-grid h3,
.desk-grid h3,
.journey-grid h3 {
  margin-bottom: 12px;
}

.solution-card p,
.pathway-card p,
.principle-grid p,
.desk-grid p,
.journey-grid p,
.faq-grid p {
  color: var(--charcoal);
}

.section--ink .principle-grid p,
.section--ink .desk-grid p,
.section--ink .journey-grid p,
.section--ink .faq-grid p {
  color: rgba(247, 243, 233, .85) !important;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-weight: 900;
}

.split,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
}

.split > div > p:not(.eyebrow),
.editorial-grid > div > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--charcoal);
  font-size: 1.07rem;
}

.image-frame {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.image-frame:hover img {
  transform: scale(1.06);
}

.process-list,
.timeline,
.feature-list,
.check-list {
  margin-top: 28px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(10, 25, 47, .04);
}

.process-list span,
.journey-grid span {
  color: var(--ink);
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 5px;
}

.process-list p,
.timeline p,
.feature-list p,
.check-list li {
  color: var(--charcoal);
}

.pathway-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pathway-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-stack {
  display: grid;
  gap: 14px;
}

.insight-stack article {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--dark-line);
  background: rgba(10, 25, 47, .04);
}

.insight-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.insight-stack p {
  color: var(--charcoal);
}

.statement-panel,
.allocation-panel,
.dashboard-panel,
.report-panel,
.contact-panel {
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.statement-panel > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.statement-panel h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  margin-bottom: 14px;
  color: var(--paper);
}

.statement-panel p {
  color: rgba(247, 243, 233, .85);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--dark-line);
}

.timeline span {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .12em;
}

.principle-grid {
  grid-template-columns: repeat(3, 1fr);
}

.desk-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journey-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journey-grid article {
  min-height: 260px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list p {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.check-list {
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 160, 89, .13);
}

.cta-band {
  padding: 48px 0;
  background: var(--gold-2);
  color: var(--ink);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(10, 25, 47, .8);
}

.cta-band .eyebrow {
  color: var(--ink);
}

.page-hero {
  min-height: 64svh;
}

.page-hero--split .hero__image {
  object-position: center top;
}

.page-hero--contact {
  min-height: 58svh;
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  background: var(--ink);
  color: var(--paper);
}

.contact-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 18px;
  color: var(--paper);
}

.contact-panel a,
.contact-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: rgba(247, 243, 233, .85);
}

.contact-panel .button {
  margin-top: 24px;
  color: var(--ink);
  justify-content: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, .05);
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: .9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 25, 47, .18);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f8f9fa;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, .18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  color: var(--ink);
  font-weight: 800;
}

.map-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-8deg) scale(1.2);
}

.map-route {
  position: absolute;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), transparent);
  border-radius: 8px;
}

.map-route.one {
  left: -8%;
  top: 38%;
  width: 115%;
  transform: rotate(-14deg);
}

.map-route.two {
  left: 20%;
  top: 58%;
  width: 90%;
  transform: rotate(22deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gold-2);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .35);
}

.map-card a {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .18);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq-grid details p {
  margin-top: 12px;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--paper);
  background: #020c1b; /* Extra dark navy */
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(247, 243, 233, .7);
  max-width: 430px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 800;
}

.site-footer h2 {
  font-size: .9rem;
  color: var(--gold-2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 10px 0;
  color: rgba(247, 243, 233, .7);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.legal-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.legal-line p {
  max-width: 880px;
  color: rgba(247, 243, 233, .6);
  font-size: .86rem;
}

.legal-line a {
  min-width: max-content;
  color: var(--gold-2);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tilt-card:hover {
  box-shadow: 0 25px 75px rgba(10, 25, 47, .16);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .solution-grid,
  .solution-grid--four,
  .principle-grid,
  .desk-grid,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand strong {
    font-size: .92rem;
  }

  .brand em {
    font-size: .82rem;
  }

  .hero,
  .hero--home,
  .page-hero {
    min-height: auto;
  }

  .hero__content,
  .page-hero__content {
    padding: 130px 0 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .metric-grid,
  .pathway-grid,
  .split,
  .split--reverse,
  .editorial-grid,
  .contact-grid,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 0;
  }

  .metric {
    min-height: 112px;
  }

  .solution-grid,
  .solution-grid--four,
  .principle-grid,
  .desk-grid,
  .journey-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-line {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 190px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .process-list article,
  .report-panel li {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}