@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Custom";
  src: url("assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-950: #081b3a;
  --blue-900: #0b2450;
  --blue-800: #163b74;
  --blue-700: #2d5a9c;
  --blue-600: #3f6db0;
  --gold-500: #ffd338;
  --gold-400: #ffe36f;
  --paper: #f6f4ef;
  --paper-strong: #fcfbf7;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5f6777;
  --line: rgba(20, 32, 51, 0.12);
  --shadow: 0 22px 55px rgba(11, 36, 80, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans Custom", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 56, 0.08), transparent 30%),
    linear-gradient(180deg, #faf9f5 0%, #f3f2ee 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand img {
  width: min(400px, 56vw);
  max-height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.98rem;
  color: var(--blue-900);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-900);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-media,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 27, 58, 0.94) 0%, rgba(8, 27, 58, 0.82) 36%, rgba(8, 27, 58, 0.38) 72%, rgba(8, 27, 58, 0.16) 100%),
    linear-gradient(180deg, rgba(11, 36, 80, 0.14), rgba(11, 36, 80, 0.62));
}

.hero-pattern {
  inset: auto -8% -120px auto;
  width: 56vw;
  height: 56vw;
  max-width: 760px;
  max-height: 760px;
  background: url("assets/graphics/pattern-accent.svg") center/contain no-repeat;
  opacity: 0.14;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 84px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
}

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

.eyebrow-blue {
  color: var(--blue-700);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Gilroy", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 6vw, 6.1rem);
  letter-spacing: -0.045em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-copy,
.section-heading p,
.capability-strip p,
.service-card p,
.spotlight-copy p,
.approach-copy p,
.approach-card p,
.diagnostic-panel p,
.about-copy p,
.profile-copy,
.contact-copy p,
.footer-inner p,
.form-note {
  line-height: 1.72;
}

.hero-copy {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.hero-metrics strong {
  display: block;
  font-family: "Gilroy", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--gold-400);
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--blue-900);
  box-shadow: 0 14px 30px rgba(255, 211, 56, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-tertiary {
  background: var(--white);
  border-color: rgba(20, 32, 51, 0.1);
  color: var(--blue-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 700;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
}

.capability-strip {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0 28px;
}

.capability-strip p {
  margin: 0;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-light {
  background: transparent;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(11, 36, 80, 0.96), rgba(22, 59, 116, 0.96)),
    var(--blue-900);
  color: var(--white);
  overflow: hidden;
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(11, 36, 80, 0.96), rgba(17, 48, 94, 0.98)),
    var(--blue-900);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card-image {
  min-height: 420px;
  background: var(--blue-900);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 27, 58, 0.14), rgba(8, 27, 58, 0.92));
}

.service-card-content {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 1;
  color: var(--white);
}

.service-card-text {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.service-number,
.spotlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-number {
  background: rgba(255, 211, 56, 0.18);
  color: var(--gold-500);
}

.service-card-text .service-number {
  background: rgba(45, 90, 156, 0.1);
  color: var(--blue-700);
}

.service-card h3,
.approach-card h3,
.diagnostic-panel h3,
.profile-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.approach-card p,
.diagnostic-panel p,
.profile-copy {
  margin: 0;
}

.service-grid > :nth-child(1),
.service-grid > :nth-child(2),
.service-grid > :nth-child(3) {
  grid-column: span 4;
}

.service-grid > :nth-child(4),
.service-grid > :nth-child(5),
.service-grid > :nth-child(6) {
  grid-column: span 4;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 52px;
}

.case-study-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.06);
  box-shadow: var(--shadow);
}

.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.case-study-panel {
  padding: 34px;
}

.case-study-panel p:last-of-type {
  margin-top: 0;
  color: var(--muted);
}

.case-study-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.case-study-points li {
  padding-left: 18px;
  position: relative;
}

.case-study-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-700);
}

.case-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-bottom: 52px;
}

.case-study-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.06);
  box-shadow: var(--shadow);
}

.case-study-card-full,
.content-card-full {
  grid-column: 1 / -1;
}

.case-study-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.case-study-card-copy {
  padding: 26px;
}

.case-study-card-copy p:last-of-type,
.case-study-card-note p:last-of-type {
  color: var(--muted);
}

.case-study-card-note {
  display: grid;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 211, 56, 0.08), rgba(45, 90, 156, 0.05)),
    var(--paper-strong);
}

.case-study-card-note .eyebrow {
  margin-bottom: 16px;
}

.spotlight-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.06);
  box-shadow: var(--shadow);
}

.spotlight-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.spotlight-card-large img {
  aspect-ratio: 1.45 / 1;
}

.spotlight-copy {
  padding: 26px;
}

.spotlight-tag {
  background: rgba(45, 90, 156, 0.1);
  color: var(--blue-700);
}

.spotlight-copy p:last-child {
  color: var(--muted);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.gallery-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.gallery-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.gallery-card-wide {
  grid-column: span 8;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.founder-copy p {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.founder-stats li {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 211, 56, 0.08), rgba(45, 90, 156, 0.05));
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.founder-stats strong {
  display: block;
  font-family: "Gilroy", "Segoe UI", sans-serif;
  font-size: 2rem;
  color: var(--blue-900);
}

.founder-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.founder-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.founder-photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.founder-photo-card img {
  width: 100%;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
}

.founder-photo-card-secondary img {
  aspect-ratio: 0.9 / 1;
}

.founder-photo-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  align-items: start;
}

.approach-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
}

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

.approach-card,
.diagnostic-panel {
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.approach-card p {
  color: rgba(255, 255, 255, 0.78);
}

.diagnostic-panel {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
}

.diagnostic-list,
.contact-list,
.about-tags,
.profile-highlights {
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagnostic-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
}

.diagnostic-list li {
  padding-left: 18px;
  position: relative;
}

.diagnostic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.value-pattern {
  position: absolute;
  inset: auto -8% -20px auto;
  width: min(680px, 56vw);
  height: min(680px, 56vw);
  background: url("assets/graphics/pattern-blue.svg") center/contain no-repeat;
  opacity: 0.08;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-copy p,
.contact-copy p {
  max-width: 66ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 90, 156, 0.08);
  border: 1px solid rgba(45, 90, 156, 0.12);
  color: var(--blue-700);
  font-size: 0.94rem;
}

.profile-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 211, 56, 0.08), rgba(45, 90, 156, 0.08)),
    var(--white);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.profile-photo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
  border-radius: 24px;
}

.profile-role {
  margin: 10px 0 18px;
  color: var(--blue-700);
}

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

.profile-highlights {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink);
}

.profile-highlights li {
  padding-left: 18px;
  position: relative;
}

.profile-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.full-width,
.form-actions {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-note {
  margin: 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 18px;
  padding: 34px 0 48px;
}

.footer-inner img {
  width: min(360px, 60vw);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--gold-400);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.subpage-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-900);
}

.subpage-hero .hero-content {
  padding: 112px 0 76px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.page-breadcrumb a {
  color: var(--gold-400);
}

.page-lead {
  max-width: 68ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.72;
  font-size: 1.08rem;
}

.page-summary-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

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

.fact-card,
.content-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.06);
  box-shadow: var(--shadow);
}

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Gilroy", "Segoe UI", sans-serif;
  color: var(--blue-900);
}

.fact-card p,
.content-card p,
.content-card li {
  margin: 0;
  line-height: 1.68;
  color: var(--muted);
}

.content-card h3 {
  margin-bottom: 14px;
}

.content-card p + p {
  margin-top: 14px;
}

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

.portfolio-summary-grid {
  margin-bottom: 52px;
}

.page-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 18px;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-700);
}

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

.media-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.media-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
}

.quote-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 211, 56, 0.08), rgba(45, 90, 156, 0.05)),
    var(--white);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink);
}

.quote-card p + p {
  margin-top: 12px;
  color: var(--muted);
}

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

.legal-section {
  display: grid;
  gap: 22px;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.detail-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list dt {
  margin: 0 0 8px;
  font-family: "Gilroy", "Segoe UI", sans-serif;
  color: var(--blue-900);
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.legal-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .spotlight-grid,
  .case-study-grid,
  .gallery-intro,
  .approach-layout,
  .about-layout,
  .contact-layout,
  .founder-layout,
  .case-study-feature,
  .capability-strip-inner,
  .page-summary-grid,
  .page-section-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .service-grid,
  .gallery-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid > *,
  .gallery-card,
  .gallery-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(11, 36, 80, 0.98);
    color: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a::after {
    background: var(--gold-500);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .approach-grid,
  .contact-form,
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 86px 0;
  }

  .service-grid,
  .gallery-grid,
  .founder-stats,
  .founder-visuals,
  .media-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }

  .service-card-image {
    min-height: 340px;
  }

  .spotlight-card img,
  .spotlight-card-large img {
    aspect-ratio: 1.18 / 1;
  }

  .capability-list,
  .hero-highlights,
  .about-tags {
    justify-content: flex-start;
  }

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

  .hero-highlights li,
  .capability-list li {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
  }

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

  .brand img,
  .footer-inner img {
    width: min(300px, 72vw);
  }
}
