@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 {
  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;
}

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

.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;
  }
}

.presence-section {
  width: 100%;
}

.presence-section__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0;
}

.presence-section__header {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.presence-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.presence-section__eyebrow svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.2;
  color: var(--brand-primary-deep);
}

.presence-section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.presence-section__text {
  max-width: 680px;
  margin: 0.95rem 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(21, 50, 71, 0.8);
}

.presence-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  align-items: stretch;
}

.presence-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.presence-summary__panel,
.presence-summary__metrics {
  width: 100%;
  padding: 1.2rem;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
}

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

.presence-summary__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.presence-summary__text {
  margin: 0.8rem 0 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(21, 50, 71, 0.76);
}

.presence-summary__metrics {
  display: grid;
  gap: 0.85rem;
}

.presence-summary__metric {
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 12px;
  background: #f8fcfe;
}

.presence-list {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #f8fcfe 0%, #edf7fa 48%, #dceff5 100%);
  box-shadow: 0 14px 34px rgba(77, 158, 207, 0.08);
}

.presence-list::after {
  content: none;
}

.presence-list__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 28%, rgba(77, 158, 207, 0.14) 0 72px, rgba(77, 158, 207, 0.07) 116px, rgba(77, 158, 207, 0) 176px);
  z-index: 0;
  overflow: hidden;
}

.presence-list__pattern::before {
  position: absolute;
  bottom: -154px;
  left: 0;
  width: 2400px;
  height: 460px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='360' viewBox='0 0 1200 360'%3E%3Crect width='1200' height='360' fill='none'/%3E%3Cpath fill='%234d9ecf' fill-opacity='.12' d='M0 310l170-74 170 74-170 74zM260 300l185-82 185 82-185 82zM590 310l176-76 176 76-176 76zM882 302l160-70 160 70-160 70z'/%3E%3Cg opacity='.7'%3E%3Cpolygon fill='%23e7f6fb' points='72,180 122,154 176,180 126,206'/%3E%3Cpolygon fill='%23badfeb' points='72,180 126,206 126,320 72,292'/%3E%3Cpolygon fill='%238bc5d8' points='126,206 176,180 176,292 126,320'/%3E%3Cpolygon fill='%23e9f7fb' points='218,124 286,90 356,124 288,158'/%3E%3Cpolygon fill='%23b5ddea' points='218,124 288,158 288,334 218,298'/%3E%3Cpolygon fill='%2387c3d7' points='288,158 356,124 356,298 288,334'/%3E%3Cpolygon fill='%23e7f6fb' points='410,158 466,130 524,158 468,186'/%3E%3Cpolygon fill='%23b9dfeb' points='410,158 468,186 468,324 410,294'/%3E%3Cpolygon fill='%238cc6d9' points='468,186 524,158 524,294 468,324'/%3E%3Cpolygon fill='%23edf9fc' points='598,102 668,66 740,102 670,138'/%3E%3Cpolygon fill='%23b8deea' points='598,102 670,138 670,342 598,304'/%3E%3Cpolygon fill='%2387c3d7' points='670,138 740,102 740,304 670,342'/%3E%3Cpolygon fill='%23e5f5fa' points='790,174 842,148 896,174 844,200'/%3E%3Cpolygon fill='%23b7deea' points='790,174 844,200 844,320 790,292'/%3E%3Cpolygon fill='%2383c0d5' points='844,200 896,174 896,292 844,320'/%3E%3Cpolygon fill='%23e9f7fb' points='952,128 1014,96 1078,128 1016,160'/%3E%3Cpolygon fill='%23b6ddea' points='952,128 1016,160 1016,338 952,304'/%3E%3Cpolygon fill='%2388c4d8' points='1016,160 1078,128 1078,304 1016,338'/%3E%3C/g%3E%3Cg opacity='.42'%3E%3Cpolygon fill='%23e9f7fb' points='20,108 86,76 154,108 88,140'/%3E%3Cpolygon fill='%23c2e4ee' points='20,108 88,140 88,314 20,280'/%3E%3Cpolygon fill='%239bcddd' points='88,140 154,108 154,280 88,314'/%3E%3Cpolygon fill='%23edf9fc' points='492,70 548,42 606,70 550,98'/%3E%3Cpolygon fill='%23c2e4ee' points='492,70 550,98 550,312 492,282'/%3E%3Cpolygon fill='%239ccede' points='550,98 606,70 606,282 550,312'/%3E%3Cpolygon fill='%23e9f7fb' points='1074,82 1134,52 1196,82 1136,112'/%3E%3Cpolygon fill='%23c0e3ed' points='1074,82 1136,112 1136,304 1074,272'/%3E%3Cpolygon fill='%2398cbdb' points='1136,112 1196,82 1196,272 1136,304'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1200px 460px;
  content: "";
  opacity: 1;
  will-change: transform;
  animation: presenceCityTravelFar 38s linear infinite;
}

.presence-list__pattern::after {
  content: none;
}

@keyframes presenceCityTravelFar {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-1200px, 0, 0);
  }
}

@keyframes presenceCityTravelNear {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-1200px, 0, 0);
  }
}

.presence-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow:
    0 18px 36px rgba(21, 50, 71, 0.14),
    0 4px 12px rgba(77, 158, 207, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.presence-card::after {
  content: none;
}

.presence-card::before {
  content: none;
}

.presence-card__city {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--brand-ink);
  text-shadow: none;
  position: relative;
  z-index: 1;
}

.presence-summary__metric-value {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
}

.presence-summary__metric-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(21, 50, 71, 0.7);
}

.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);
}

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

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

.expertise-section__header {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.expertise-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);
}

.expertise-section__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

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

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

.expertise-item {
  border: 1px solid rgba(77, 158, 207, 0.16);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.expertise-item[open] {
  background: linear-gradient(180deg, rgba(77, 158, 207, 0.04), #ffffff 9rem);
}

.expertise-item__summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

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

.expertise-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(77, 158, 207, 0.12);
  color: var(--brand-primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.expertise-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-ink);
}

.expertise-item__summary svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--brand-primary-deep);
  transition: transform 0.2s ease;
}

.expertise-item[open] .expertise-item__summary svg {
  transform: rotate(180deg);
}

.expertise-item__content {
  display: grid;
  gap: 0.85rem;
  padding: 0 1.15rem 1.2rem 4.1rem;
}

.expertise-copy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(21, 50, 71, 0.82);
}

.expertise-subtitle {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--brand-primary-deep);
}

.expertise-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.expertise-list li {
  padding-left: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(21, 50, 71, 0.82);
}

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

.contact-section__header {
  margin-bottom: 4.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(3.1rem, 6.2vw, 5.4rem);
  line-height: 0.96;
  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-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: 4.3rem;
}

.contact-info__title {
  margin: 0 0 1.45rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
}

.contact-info__text,
.contact-info__label,
.contact-info__note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(21, 50, 71, 0.68);
}

.contact-info__group + .contact-info__group,
.contact-info__note {
  margin-top: 1.15rem;
}

.contact-info__link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--brand-ink);
  overflow-wrap: anywhere;
}

.contact-route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 15rem);
  margin-top: 1.35rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(21, 50, 71, 0.56);
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.contact-route-button svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.8;
}

.contact-schedule__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--brand-ink);
}

.contact-schedule__line {
  width: clamp(3.5rem, 8vw, 6.5rem);
  height: 1px;
  background: rgba(21, 50, 71, 0.72);
}

.contact-map-panel {
  width: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(77, 158, 207, 0.06);
}

.contact-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border: 0;
}

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

.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: 0;
  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;
}

.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: 2rem var(--page-gutter) 2.3rem;
  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 minmax(0, 1fr);
  align-items: flex-start;
  gap: 2rem 2.4rem;
}

.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;
}

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

.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-meta {
  width: min(100%, var(--content-max-width));
  margin: 1.3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.6;
}

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

@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 {
    width: 100%;
    padding: 0.55rem 0.7rem;
    justify-content: space-between;
    text-align: left;
  }

  .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;
  }

  .presence-section__inner {
    padding: 0;
  }

  .presence-section__header {
    margin-bottom: 1.2rem;
  }

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

  .presence-list {
    min-height: 340px;
  }

  .presence-card {
    padding: 0.26rem 0.5rem;
  }

  .presence-card__city {
    font-size: 0.72rem;
  }

  .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;
  }

  .expertise-section__header {
    margin-bottom: 1.2rem;
  }

  .expertise-item__summary {
    gap: 0.65rem;
    padding: 0.95rem;
  }

  .expertise-item__index {
    min-width: 1.9rem;
    height: 1.9rem;
    font-size: 0.78rem;
  }

  .expertise-item__title {
    font-size: 0.96rem;
  }

  .expertise-item__content {
    padding: 0 0.95rem 1rem;
  }

  .expertise-copy,
  .expertise-list li {
    font-size: 0.88rem;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.4rem;
  }

  .contact-route-button {
    width: 100%;
  }

  .contact-map-panel,
  .contact-map-panel iframe {
    min-height: 280px;
  }

  .about-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.6rem var(--page-gutter) 1.9rem;
  }

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

  .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-meta {
    margin-top: 1.1rem;
    gap: 0.55rem 1.2rem;
  }

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

}
