:root {
  --navy-950: #05182d;
  --navy-900: #08284c;
  --navy-800: #0d365f;
  --navy-700: #164d7a;
  --blue-500: #2f79ad;
  --blue-100: #dceaf3;
  --steel-700: #4c5862;
  --steel-500: #6f7981;
  --steel-300: #aeb5ba;
  --steel-150: #d8dde0;
  --paper: #f5f3ef;
  --paper-deep: #ebe8e1;
  --white: #ffffff;
  --ink: #14202b;
  --success: #256c55;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 10px 30px rgba(5, 24, 45, 0.08);
  --shadow-lg: 0 28px 80px rgba(5, 24, 45, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #b7d5e7;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.6vw, 6.7rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.12rem;
  line-height: 1.3;
}

.lead {
  max-width: 730px;
  color: var(--steel-700);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button::after {
  content: "→";
  font-size: 1.15rem;
  line-height: 1;
}

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

.button--primary:hover {
  background: var(--navy-700);
}

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

.button--ghost {
  color: var(--navy-900);
  border-color: var(--steel-300);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--navy-700);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(111, 121, 129, 0.2);
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.07rem;
  font-weight: 500;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--steel-700);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a:not(.nav-cta) {
  padding: 12px 10px;
  color: var(--steel-700);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 650;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--navy-900);
  background: rgba(13, 54, 95, 0.07);
}

.nav-cta {
  margin-left: 10px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 720;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--steel-150);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--navy-900);
  transition: transform 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(47, 121, 173, 0.2), transparent 24%),
    linear-gradient(135deg, var(--paper) 0%, #edf1f2 54%, var(--paper-deep) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(8, 40, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 40, 76, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 5%, black 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: 70px;
  padding-block: 92px;
}

.hero h1 em {
  color: var(--navy-700);
  font-style: italic;
}

.hero-copy .lead {
  max-width: 670px;
}

.hero-panel {
  position: relative;
  min-height: 520px;
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(8, 40, 76, 0.18);
  border-radius: 50%;
}

.hero-panel::before {
  inset: 18px 10px 18px 10px;
}

.hero-panel::after {
  inset: 88px 80px;
}

.logo-card {
  position: absolute;
  z-index: 2;
  inset: 92px 22px auto;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.5deg);
}

.logo-card img {
  width: 100%;
  border-radius: 8px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 68px;
  width: min(300px, 78%);
  padding: 22px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.hero-note span {
  color: #c4d9e7;
  font-size: 0.86rem;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-950);
}

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

.trust-item {
  display: flex;
  min-height: 102px;
  align-items: center;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  color: #d1dce4;
  font-size: 0.84rem;
  line-height: 1.4;
}

.trust-item:first-child {
  border-left: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.section {
  padding-block: 118px;
}

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

.section--ink {
  color: var(--white);
  background: var(--navy-950);
}

.section--ink h2,
.section--ink h3 {
  color: var(--white);
}

.section--ink .lead {
  color: #bdcad4;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.78fr;
  gap: 60px;
  margin-bottom: 56px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(13, 54, 95, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(13, 54, 95, 0.18);
  border-radius: 50%;
}

.card-number {
  margin-bottom: auto;
  color: var(--blue-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-card h3 {
  max-width: 260px;
  margin-top: 72px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--steel-700);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 750;
}

.text-link::after {
  content: "↗";
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 90px;
}

.principle-panel {
  position: relative;
  padding: 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.principle-panel::before {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.035), 0 0 0 90px rgba(255, 255, 255, 0.025);
}

.principle-panel blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.principle-panel p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: #c6d5df;
}

.check-list,
.plain-list,
.detail-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--steel-150);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--navy-700);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.industry-cloud span {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d4e0e7;
  font-size: 0.85rem;
}

.cta-band {
  padding-block: 80px;
  color: var(--navy-950);
  background: var(--blue-100);
}

.cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.cta-inner p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--steel-700);
}

.page-hero {
  position: relative;
  padding-block: 116px 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1020px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.page-hero .lead {
  color: #c1d0da;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.page-hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d4e0e7;
  font-size: 0.78rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

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

.rich-copy > p:first-child {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.35;
}

.rich-copy p {
  max-width: 760px;
  color: var(--steel-700);
}

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

.feature-card {
  padding: 30px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card .icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--steel-700);
  font-size: 0.93rem;
}

.detail-list li {
  padding: 16px 0;
  border-top: 1px solid rgba(174, 181, 186, 0.55);
}

.detail-list strong {
  display: block;
  color: var(--navy-900);
}

.detail-list span {
  color: var(--steel-700);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  min-height: 300px;
  padding: 34px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

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

.process-step .step-no {
  display: block;
  margin-bottom: 80px;
  color: #7fb2d3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step p {
  color: #b9c9d3;
  font-size: 0.9rem;
}

.process-grid--light {
  border-color: var(--steel-150);
}

.process-grid--light .process-step {
  border-color: var(--steel-150);
}

.process-grid--light .process-step p {
  color: var(--steel-700);
}

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

.comparison-card {
  padding: 40px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-md);
  background: var(--white);
}

.comparison-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.plain-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  color: var(--steel-700);
  border-bottom: 1px solid var(--steel-150);
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue-500);
  content: "—";
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
  color: var(--steel-700);
  border: 1px solid #c9d7df;
  border-radius: var(--radius-sm);
  background: #eef5f8;
  font-size: 0.88rem;
}

.notice strong {
  color: var(--navy-900);
}

.about-statement {
  max-width: 980px;
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value {
  padding: 30px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.value:first-child {
  border-left: 0;
}

.value span {
  color: #81b3d2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value h3 {
  margin-top: 45px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.profile-card {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-monogram {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 10rem);
}

.profile-monogram::after {
  position: absolute;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.profile-copy {
  align-self: center;
  padding: 60px;
}

.profile-copy h2 {
  margin-bottom: 10px;
}

.profile-role {
  margin-bottom: 30px;
  color: var(--blue-500);
  font-weight: 750;
}

.team-groups {
  display: grid;
  gap: 54px;
}

.team-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--steel-150);
}

.team-group-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.team-group-heading span {
  color: var(--steel-500);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  gap: 18px;
}

.team-grid--directors {
  grid-template-columns: repeat(3, 1fr);
}

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

.team-card {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-monogram {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.team-card h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.team-card p {
  margin: 0;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
}

.contact-details {
  margin-top: 46px;
  border-top: 1px solid var(--steel-150);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--steel-150);
}

.contact-row dt {
  color: var(--steel-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 650;
}

.contact-row a {
  text-decoration: underline;
  text-decoration-color: rgba(47, 121, 173, 0.35);
  text-underline-offset: 4px;
}

.contact-row a:hover {
  color: var(--blue-500);
  text-decoration-color: currentColor;
}

.contact-row address {
  font-style: normal;
}

.contact-email-list {
  display: grid;
  gap: 8px;
  overflow-wrap: anywhere;
}

.contact-panel {
  padding: 42px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

.contact-panel > p {
  color: var(--steel-700);
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-channel {
  display: grid;
  gap: 3px;
  padding: 17px 18px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-sm);
  background: #fbfbfa;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-channel:hover {
  border-color: rgba(13, 54, 95, 0.45);
  transform: translateY(-2px);
}

.contact-channel span {
  color: var(--steel-500);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--navy-900);
  overflow-wrap: anywhere;
}

.contact-note {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--steel-150);
  font-size: 0.8rem;
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--steel-150);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.contact-form > p {
  margin-bottom: 30px;
  color: var(--steel-700);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--steel-150);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbfa;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 18px 0 0;
  color: var(--steel-500);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--success);
  border: 1px solid rgba(37, 108, 85, 0.3);
  border-radius: 10px;
  background: rgba(37, 108, 85, 0.07);
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  color: #c7d3dc;
  background: #03101e;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  gap: 70px;
  padding-block: 78px 58px;
}

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

.footer-brand .brand-copy span {
  color: #91a8b8;
}

.footer-brand p {
  max-width: 470px;
  margin: 24px 0 0;
  color: #94a8b6;
  font-size: 0.88rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  padding: 5px 0;
  color: #9fb1be;
  font-size: 0.86rem;
}

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

.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #718896;
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
}

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

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    padding-inline: 20px;
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-block: 14px 24px;
    visibility: visible;
    opacity: 1;
  }

  .site-nav a:not(.nav-cta),
  .nav-cta {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

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

  .section-heading,
  .intro-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-grid h2 {
    position: static;
  }

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

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

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

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

  .team-grid--directors {
    grid-template-columns: 1fr;
  }

  .value:nth-child(4) {
    border-left: 0;
  }
}

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

  .brand-copy span {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.9rem);
  }

  .hero-inner {
    padding-block: 72px;
  }

  .hero-panel {
    min-height: 350px;
  }

  .logo-card {
    inset: 45px 0 auto;
    padding: 14px;
  }

  .hero-note {
    right: 0;
    bottom: 25px;
  }

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

  .trust-item:first-child {
    grid-column: 1 / -1;
  }

  .trust-item:nth-child(even) {
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .service-grid,
  .feature-grid,
  .comparison,
  .profile-card,
  .team-grid--assistants,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .principle-panel,
  .comparison-card,
  .contact-form,
  .profile-copy {
    padding: 30px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .process-step,
  .process-step:nth-child(3) {
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

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

  .process-step .step-no {
    margin-bottom: 38px;
  }

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

  .value,
  .value:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .profile-monogram {
    min-height: 280px;
  }

  .team-group-heading {
    display: grid;
    gap: 5px;
  }

  .team-card {
    grid-template-columns: 56px 1fr;
    padding: 22px;
  }

  .team-monogram {
    width: 56px;
    height: 56px;
    font-size: 0.92rem;
  }

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

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

  .footer-top {
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
