@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --brand-primary: #4d9ecf;
  --brand-primary-deep: #0f6f9f;
  --brand-ink: #153247;
  --border-soft: rgba(77, 158, 207, 0.16);
  --page-gutter: 2rem;
  --content-max-width: 1120px;
  --narrow-max-width: 1120px;
  --hero-max-width: 920px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--brand-ink);
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 2.5rem var(--page-gutter) 4rem;
}

.page-content--about {
  justify-content: flex-start;
}

.page-content--contact {
  justify-content: flex-start;
}

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

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

.site-header {
  width: 100%;
  border-bottom: 1px solid var(--border-soft);
  background: #ffffff;
}

.navbar__inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max-width));
  margin: 0 auto;
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: 110px;
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(77, 158, 207, 0.18);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-links a,
.expertise-menu__toggle {
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
  cursor: pointer;
  list-style: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.expertise-menu__toggle::-webkit-details-marker {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.expertise-menu__toggle:hover,
.expertise-menu__toggle:focus-visible,
.expertise-menu[open] .expertise-menu__toggle {
  color: var(--brand-primary-deep);
  background: rgba(77, 158, 207, 0.12);
  transform: translateY(-1px);
}

.expertise-menu {
  position: static;
}

.expertise-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.expertise-menu__toggle-icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.2s ease;
}

.expertise-menu[open] .expertise-menu__toggle-icon {
  transform: rotate(180deg);
}

.expertise-menu__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(100%, var(--content-max-width));
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: #ffffff;
  z-index: 20;
}

.expertise-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem 2rem;
}

.expertise-menu__column {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.expertise-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.4rem 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(21, 50, 71, 0.86);
}

.expertise-menu__item:hover,
.expertise-menu__item:focus-visible {
  background: transparent;
  color: var(--brand-primary-deep);
  transform: none;
}

.expertise-menu__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(77, 158, 207, 0.2);
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  flex-shrink: 0;
}

.expertise-menu__item-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--brand-primary-deep);
  stroke-width: 2.1;
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(77, 158, 207, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(77, 158, 207, 0.08), rgba(77, 158, 207, 0.02));
}

.hero__inner {
  max-width: var(--hero-max-width);
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.hero__title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.hero__typed-line {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  margin: 1.25rem 0 0;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-primary-deep);
}

.hero__typed-text {
  min-width: 1ch;
}

.hero__caret {
  width: 3px;
  height: 1.1em;
  margin-left: 0.25rem;
  background: currentColor;
  border-radius: 999px;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.stats-pills {
  width: 100%;
}

.stats-pills__inner {
  width: 100%;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.stats-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--brand-primary-deep);
  border-radius: 999px;
  background: var(--brand-primary-deep);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stats-pill svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  stroke: currentColor;
}

.about-page-section {
  width: 100%;
}

.about-page-section__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: #ffffff;
}

.about-page-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.about-page-section__title {
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.about-page-section__text {
  max-width: 860px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(21, 50, 71, 0.84);
}

.director-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.director-section__header {
  grid-column: 1 / -1;
}

.director-section__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.director-section__slider {
  grid-column: 1 / -1;
}

.director-section__track {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 1.25rem;
  align-items: stretch;
}

.director-section__slide {
  min-width: 0;
}

.director-section__controls {
  display: none;
}

.director-section__media,
.director-section__content {
  padding: 1.4rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #ffffff;
}

.director-section__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  order: 2;
  border-color: var(--border-soft);
  background: #ffffff;
}

.director-section__image {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

.director-section__meta {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.director-section__name {
  margin: 0.85rem 0 0;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.director-section__role {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(77, 158, 207, 0.18);
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.director-section__role svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2;
  color: var(--brand-primary-deep);
}

.director-section__content {
  min-height: 100%;
  order: 1;
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--brand-primary);
}

.director-section__quote {
  padding: 0;
}

.director-section__quote-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.director-section__quote-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #ffffff;
}

.director-section__highlights {
  margin-top: 1.5rem;
}

.director-section__highlights-title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.director-section__highlights-list {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.director-section__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #ffffff;
}

.director-section__highlight-item svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.director-section__highlight-item span {
  font-size: 0.92rem;
  line-height: 1.6;
}

.director-section__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.director-section__stat {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.director-section__stat-value {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.director-section__stat-label {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.director-section__signature {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.director-section__signature-name,
.director-section__signature-role {
  margin: 0;
}

.director-section__signature-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.director-section__signature-role {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.values-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.values-section__header {
  margin-bottom: 1.25rem;
}

.values-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.values-section__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

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

.value-card {
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #ffffff;
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  color: var(--brand-primary-deep);
}

.value-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2;
}

.value-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.value-card__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(21, 50, 71, 0.84);
}

.contact-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.contact-section__header {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.contact-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.contact-section__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.contact-section__intro,
.contact-section__subintro {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(21, 50, 71, 0.8);
}

.contact-section__subintro {
  margin-top: 0.65rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-overview {
  display: flex;
  flex-direction: column;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.contact-card--compact {
  min-height: 100%;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(77, 158, 207, 0.3);
  background: rgba(77, 158, 207, 0.04);
  transform: translateY(-2px);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  color: var(--brand-primary-deep);
}

.contact-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2;
}

.contact-card__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.contact-card__title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.contact-card__lead {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: rgba(21, 50, 71, 0.86);
}

.contact-card__contact-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.contact-card__contact-line .contact-card__lead,
.contact-card__contact-line .contact-card__text {
  margin: 0;
}

.contact-card__contact-line .contact-card__text {
  font-size: 0.95rem;
}

.contact-card__contact-line--subtle {
  margin-top: 0.35rem;
}

.contact-card__text {
  margin: 0.65rem 0 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.82);
}

.contact-card__text--tight {
  margin-top: 0.3rem;
}

.contact-card__note {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(21, 50, 71, 0.68);
}

.contact-card__schedule {
  margin-top: 0.85rem;
}

.contact-card__schedule-time,
.contact-card__schedule-days,
.contact-card__schedule-note {
  margin: 0;
  
}

.contact-card__schedule-time {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand-ink);
}

.contact-card__schedule-days {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(21, 50, 71, 0.82);
}

.contact-card__schedule-note {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(21, 50, 71, 0.68);
}

.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.contact-card__action--static {
  color: rgba(21, 50, 71, 0.7);
}

.contact-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.contact-card__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(77, 158, 207, 0.22);
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.contact-card__copy:hover,
.contact-card__copy:focus-visible {
  border-color: rgba(77, 158, 207, 0.38);
  background: rgba(77, 158, 207, 0.14);
}

.contact-card__action svg,
.contact-card__copy svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: #ffffff;
}

.contact-map__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-map__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 111, 159, 0.88);
}

.contact-map__title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.contact-map__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.78);
}

.contact-map__frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(77, 158, 207, 0.14);
  border-radius: 22px;
  background: rgba(77, 158, 207, 0.06);
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-map__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.contact-map__action svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.contact-form {
  width: 100%;
  display: none;
}

.page-content--expertise {
  justify-content: flex-start;
}

.expertise-page {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.expertise-page__hero,
.expertise-page__well,
.expertise-page__columns,
.expertise-page__faq-block {
  width: 100%;
}

.expertise-page__hero {
  margin-bottom: 2rem;
}

.expertise-page__eyebrow,
.expertise-page__well-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.expertise-page__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.expertise-page__eyebrow-separator {
  opacity: 0.55;
}

.expertise-page__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.expertise-page__intro {
  max-width: 42rem;
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(21, 50, 71, 0.8);
}

.expertise-page__hero-title {
  margin: 1rem 0 0;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--brand-primary-deep);
}

.expertise-page__well {
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: #ffffff;
}

.expertise-page__well-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.expertise-page__well-title,
.expertise-page__section-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.expertise-page__source {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.7);
}

.expertise-page__source span:first-child {
  font-weight: 700;
  color: var(--brand-ink);
}

.expertise-page__source a,
.expertise-page__faq-answer a {
  color: var(--brand-primary-deep);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.expertise-page__prose {
  display: grid;
  gap: 0.9rem;
}

.expertise-page__prose p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(21, 50, 71, 0.84);
}

.expertise-page__well-list,
.expertise-page__card-list,
.expertise-page__faq-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.expertise-page__well-list li,
.expertise-page__card-list li,
.expertise-page__faq-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.84);
}

.expertise-page__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-top: 0.28rem;
  flex-shrink: 0;
  color: var(--brand-primary-deep);
}

.expertise-page__list-icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.expertise-page__columns {
  margin-top: 2.25rem;
}

.expertise-page__section-head {
  margin-bottom: 1rem;
}

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

.expertise-page__card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #ffffff;
}

.expertise-page__card-title {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--brand-ink);
}

.expertise-page__faq-block {
  margin-top: 2.25rem;
}

.expertise-page__services,
.expertise-page__extras {
  margin-top: 2.25rem;
}

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

.expertise-page__service-card,
.expertise-page__extra-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #ffffff;
}

.expertise-page__service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.expertise-page__service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.84);
}

.expertise-page__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.1);
  color: var(--brand-primary-deep);
}

.expertise-page__service-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.1;
}

.expertise-page__extra-stack {
  display: grid;
  gap: 1rem;
}

.expertise-page__faq {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.expertise-page__faq-answer {
  display: grid;
  gap: 0.75rem;
}

.expertise-page__faq-answer p {
  margin: 0;
}

.about-grid {
  width: 100%;
  max-width: var(--narrow-max-width);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  align-items: stretch;
}

.about-card {
  min-height: 0;
  padding: 1.55rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-card--tinted {
  background: linear-gradient(180deg, rgba(77, 158, 207, 0.08), rgba(77, 158, 207, 0.04));
}

.about-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.about-card__eyebrow svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
  flex-shrink: 0;
  position: relative;
  top: -0.02em;
}

.about-card__heading {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-size: 1.34rem;
  color: var(--brand-ink);
}

.about-card__accent {
  width: 4.25rem;
  height: 2px;
  margin: 0.85rem 0 1rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.45);
}

.about-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: rgba(21, 50, 71, 0.84);
}

.about-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.about-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.7rem;
  border: 1px solid rgba(77, 158, 207, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand-ink);
}

.about-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.about-card__button svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.about-card__button:hover,
.about-card__button:focus-visible {
  background: transparent;
  color: #0b608a;
  transform: translateY(-1px);
}

.brand-highlight {
  color: var(--brand-primary-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
}

.services-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.services-section__header {
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.services-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.services-section__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

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

.service-card {
  min-height: 170px;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  color: var(--brand-primary-deep);
}

.service-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2;
  transition: stroke 0.25s ease;
}

.service-card__title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--brand-ink);
  transition: color 0.25s ease;
}

.service-card__text {
  margin: 0.75rem 0 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(21, 50, 71, 0.8);
  transition: color 0.25s ease;
}

.services-grid:hover .service-card {
  opacity: 0.45;
  transform: scale(0.985);
}

.services-grid .service-card:hover,
.services-grid .service-card:focus-within {
  opacity: 1;
  transform: translateY(-4px);
  background: var(--brand-primary-deep);
  border-color: var(--brand-primary-deep);
}

.services-grid .service-card:hover .service-card__title,
.services-grid .service-card:hover .service-card__text,
.services-grid .service-card:focus-within .service-card__title,
.services-grid .service-card:focus-within .service-card__text {
  color: #ffffff;
}

.services-grid .service-card:hover .service-card__icon,
.services-grid .service-card:focus-within .service-card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.services-grid .service-card:hover .service-card__icon svg,
.services-grid .service-card:focus-within .service-card__icon svg {
  stroke: #ffffff;
}

.why-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.why-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.why-section__intro,
.why-section__faq {
  min-height: 100%;
}

.why-section__faq {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.why-section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.why-section__title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.why-section__text {
  margin: 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(21, 50, 71, 0.84);
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #ffffff;
  padding: 1.1rem 1.2rem;
}

.faq-item__question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--brand-ink);
}

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

.faq-item__question::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.12);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brand-primary-deep);
}

.faq-item[open] .faq-item__question::after {
  content: "-";
}

.faq-item__answer {
  margin: 0.9rem 0 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.82);
}

.site-footer {
  width: 100%;
  padding: 1.65rem var(--page-gutter) 1.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand-primary);
}

.footer-bar {
  width: min(100%, var(--content-max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 1.35rem;
}

.footer-brand-block {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand__logo {
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.84);
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-width: 180px;
  grid-column: 2;
}

.footer-links-group--resources {
  grid-column: 3;
}

.footer-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  justify-self: end;
  max-width: 260px;
  grid-column: 4;
}

.footer-cta-group__title {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-cta-group__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta-group__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.6rem 0.92rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.footer-cta svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.footer-cta--primary {
  background: #ffffff;
  color: var(--brand-primary-deep);
}

.footer-cta--secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

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

.footer-cta--primary:hover,
.footer-cta--primary:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.footer-cta--secondary:hover,
.footer-cta--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links-group__title {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.footer-links a {
  padding: 0.16rem 0;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.footer-copy {
  width: min(100%, var(--content-max-width));
  margin: 0.95rem auto 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta {
  width: min(100%, var(--content-max-width));
  margin: 0.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-meta strong {
  color: #ffffff;
}

/* ─── Expertise Overview Page ─────────────────────────────────────────────── */

.page-content--expertise-overview {
  justify-content: flex-start;
  gap: 3.5rem;
}

/* Hero */
.exp-overview-hero {
  width: 100%;
  padding: 2.5rem;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at top left, rgba(77, 158, 207, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(77, 158, 207, 0.1) 0%, rgba(77, 158, 207, 0.03) 100%);
  border: 1px solid rgba(77, 158, 207, 0.14);
}

.exp-overview-hero__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.exp-overview-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.exp-overview-hero__eyebrow svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
}

.exp-overview-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.exp-overview-hero__subtitle {
  max-width: 680px;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(21, 50, 71, 0.78);
}

.exp-overview-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.exp-overview-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.9rem;
  border: 1px solid rgba(77, 158, 207, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
  backdrop-filter: blur(4px);
}

.exp-overview-hero__pill svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.2;
  color: var(--brand-primary-deep);
}

/* Section header */
.exp-overview-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.exp-overview-section__header {
  margin-bottom: 1.5rem;
}

.exp-overview-section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary-deep);
}

.exp-overview-section__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

/* Card grid */
.exp-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.45rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.exp-card:hover,
.exp-card:focus-visible {
  border-color: rgba(77, 158, 207, 0.35);
  background: rgba(77, 158, 207, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(77, 158, 207, 0.1);
  outline: none;
}

.exp-card:focus-visible {
  outline: 2px solid var(--brand-primary-deep);
  outline-offset: 3px;
}

.exp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.08);
  color: var(--brand-primary-deep);
  flex-shrink: 0;
  transition: background-color 0.22s ease;
}

.exp-card:hover .exp-card__icon,
.exp-card:focus-visible .exp-card__icon {
  background: rgba(77, 158, 207, 0.16);
}

.exp-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2;
}

.exp-card__body {
  flex: 1;
}

.exp-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
  transition: color 0.22s ease;
}

.exp-card:hover .exp-card__title,
.exp-card:focus-visible .exp-card__title {
  color: var(--brand-primary-deep);
}

.exp-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(21, 50, 71, 0.76);
}

.exp-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 1rem;
  align-self: flex-end;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-primary-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.exp-card:hover .exp-card__arrow,
.exp-card:focus-visible .exp-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.exp-card__arrow svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

/* CTA banner */
.exp-overview-cta {
  width: 100%;
  border-radius: 28px;
  background: var(--brand-primary-deep);
  overflow: hidden;
}

.exp-overview-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2.5rem 2.75rem;
}

.exp-overview-cta__content {
  flex: 1;
  min-width: 0;
}

.exp-overview-cta__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.exp-overview-cta__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.exp-overview-cta__text {
  max-width: 560px;
  margin: 0.8rem 0 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.exp-overview-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.exp-overview-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.exp-overview-cta__btn svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.3;
}

.exp-overview-cta__btn--primary {
  background: #ffffff;
  color: var(--brand-primary-deep);
}

.exp-overview-cta__btn--primary:hover,
.exp-overview-cta__btn--primary:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.exp-overview-cta__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.exp-overview-cta__btn--secondary:hover,
.exp-overview-cta__btn--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ─── End Expertise Overview Page ─────────────────────────────────────────── */

@keyframes director-control-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(77, 158, 207, 0.18);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(77, 158, 207, 0);
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 1.1rem;
  }

  .navbar {
    padding: 1rem 0;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
  }

  .brand__logo {
    width: 90px;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    padding: 0.95rem;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(21, 50, 71, 0.12);
    z-index: 45;
  }

  .navbar.navbar--open .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .nav-links a,
  .expertise-menu__toggle {
    width: 100%;
    padding: 0.55rem 0.7rem;
    justify-content: space-between;
    text-align: left;
  }

  .expertise-menu {
    width: 100%;
    position: relative;
  }

  .expertise-menu__panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    padding: 0.95rem;
    border-radius: 18px;
    background: #ffffff;
    z-index: 50;
    max-height: min(70vh, 28rem);
    overflow: auto;
  }

  .expertise-menu__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-content {
    gap: 2.25rem;
    padding: 1.75rem var(--page-gutter) 2.5rem;
  }

  .hero {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
  }

  .hero__inner {
    min-height: 300px;
  }

  .hero__typed-line {
    min-height: 4rem;
    margin-top: 0.85rem;
  }

  .stats-pills__inner {
    justify-content: center;
    gap: 0.7rem;
  }

  .stats-pill {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .director-section {
    gap: 1rem;
  }

  .director-section__slider {
    position: relative;
    overflow: hidden;
  }

  .director-section__track {
    display: flex;
    align-items: stretch;
    gap: 0.9rem;
    transition: transform 0.3s ease;
    will-change: transform;
  }

  .director-section__slide {
    width: 92%;
    min-width: 92%;
    align-self: stretch;
  }

  .director-section__media,
  .director-section__content {
    min-height: 100%;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .director-section__media {
    justify-content: center;
    padding: 0.95rem 0.95rem 1.15rem;
  }

  .director-section__quote-label,
  .director-section__highlights-title {
    font-size: 0.72rem;
  }

  .director-section__quote-text {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .director-section__highlight-item span {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .director-section__stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.1rem;
  }

  .director-section__stat {
    padding: 0.72rem 0.8rem;
  }

  .director-section__stat-value {
    font-size: 0.9rem;
  }

  .director-section__stat-label {
    font-size: 0.7rem;
  }

  .director-section__signature {
    margin-top: 1.2rem;
    padding-top: 0.85rem;
  }

  .director-section__signature-name {
    font-size: 0.94rem;
  }

  .director-section__signature-role {
    font-size: 0.78rem;
  }

  .director-section__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5.4;
    border-radius: 18px;
  }

  .director-section__meta {
    margin-top: 0.65rem;
  }

  .director-section__role {
    padding: 0.42rem 0.7rem;
    font-size: 0.7rem;
  }

  .director-section__name {
    margin-top: 0.55rem;
    font-size: 1.05rem;
  }

  .director-section__controls {
    position: absolute;
    inset: 50% 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.35rem;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .director-section__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 1px solid rgba(77, 158, 207, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-primary-deep);
    cursor: pointer;
    pointer-events: auto;
    transition:
      transform 0.2s ease,
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
    animation: director-control-pulse 1.8s ease-in-out infinite;
  }

  .director-section__control svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.3;
  }

  .director-section__control:hover,
  .director-section__control:focus-visible {
    border-color: rgba(77, 158, 207, 0.42);
    background: rgba(77, 158, 207, 0.08);
    transform: translateY(-1px);
  }

  .director-section__control.is-active {
    background: var(--brand-primary-deep);
    border-color: var(--brand-primary-deep);
    color: #ffffff;
  }

  .director-section__control--next {
    margin-left: auto;
  }

  .director-section__control--prev {
    margin-right: auto;
  }

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

  .value-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .contact-section__header {
    margin-bottom: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .contact-map {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .contact-map__frame,
  .contact-map__frame iframe {
    min-height: 320px;
  }

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

  .contact-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

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

  .expertise-page__well-head {
    flex-direction: column;
  }

  .expertise-page__grid {
    grid-template-columns: 1fr;
  }

  .expertise-page__service-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 0;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .about-card__eyebrow {
    font-size: 0.72rem;
  }

  .about-card__heading {
    font-size: 1.05rem;
  }

  .about-card__text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-card__tags {
    margin-top: 0.9rem;
  }

  .about-card__tag {
    font-size: 0.74rem;
  }

  .services-section__header {
    margin-bottom: 1.15rem;
  }

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

  .service-card {
    min-height: 0;
    padding: 1.2rem;
    border-radius: 16px;
  }

  .service-card__title {
    font-size: 1rem;
  }

  .why-section__content {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 1rem;
    border-radius: 16px;
  }

  .site-footer {
    padding: 1.3rem var(--page-gutter) 1.55rem;
  }

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

  .footer-brand__logo {
    width: 82px;
  }

  .footer-description {
    font-size: 0.84rem;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-links-group {
    grid-column: auto;
  }

  .footer-links-group--resources {
    grid-column: auto;
  }

  .footer-cta-group {
    grid-column: auto;
    justify-self: start;
    max-width: none;
  }

  .footer-links a {
    padding: 0.35rem 0;
  }

  /* Expertise overview — mobile */
  .exp-overview-hero {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
  }

  .exp-overview-grid {
    grid-template-columns: 1fr;
  }

  .exp-overview-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
  }

  .exp-overview-cta__actions {
    flex-wrap: wrap;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .exp-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
