@font-face {
  font-family: 'Abygaer';
  src: url('../assets/fonts/Abygaer-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1C2530;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: 'Abygaer', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: #122E48;
}
p {
  margin: 0 0 1em;
  color: #5B6B7C;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
.icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #C2A440;
  display: inline-block;
  margin-bottom: 14px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #122E48;
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: #C2A440;
  color: #122E48;
  box-shadow: 0 10px 24px -12px rgba(194, 164, 64, 0.55);
}
.btn-gold:hover {
  background: #D8C078;
  transform: translateY(-1px);
}
.btn-navy {
  background: #285B88;
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(40, 91, 136, 0.5);
}
.btn-navy:hover {
  background: #1B4265;
}
.btn-outline-navy {
  background: transparent;
  color: #285B88;
  border-color: #285B88;
}
.btn-outline-navy:hover {
  background: #285B88;
  color: #fff;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
}
.btn-text .icon {
  width: 15px;
  height: 15px;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(18, 46, 72, 0.06), 0 12px 32px -20px rgba(18, 46, 72, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand img {
  height: 44px;
  width: auto;
}
.header-divider {
  width: 1px;
  height: 26px;
  background: #E3E8ED;
  flex: none;
  margin: 0 24px;
}
nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
nav.primary-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #3E5064;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #C2A440;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.primary-nav a:hover {
  color: #122E48;
}
nav.primary-nav a:hover::after {
  width: 100%;
}
nav.primary-nav a.active {
  color: #122E48;
}
nav.primary-nav a.active::after {
  width: 100%;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: #122E48;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-right: 18px;
  border-right: 1px solid #E3E8ED;
}
.header-phone .icon-ring {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(194, 164, 64, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-phone .icon {
  width: 13px;
  height: 13px;
  color: #C2A440;
}
.header-cta .btn-navy {
  padding: 13px 24px;
  font-weight: 700;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex: none;
  z-index: 210;
  position: relative;
  width: 40px;
  height: 40px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #122E48;
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1320px) {
  nav.primary-nav,
  .header-cta,
  .header-divider {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 46, 72, 0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #fff;
  z-index: 190;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 130px 30px 30px;
  overflow-y: auto;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.mobile-drawer a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #122E48;
  padding: 14px 0;
  border-bottom: 1px solid #E3E8ED;
}
footer.site-footer {
  background: #122E48;
  color: #B9CCDD;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: #8FA6BC;
  font-size: 0.85rem;
  max-width: 270px;
}
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.86rem;
}
.footer-col li .icon {
  width: 15px;
  height: 15px;
  color: #C2A440;
  flex: none;
  margin-top: 3px;
}
.footer-col a {
  color: #B9CCDD;
}
.footer-col a:hover {
  color: #D8C078;
}
.federal-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 18px;
}
.federal-block .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  padding: 5px 0;
  color: #CBD9E6;
}
.federal-block .row span:first-child {
  color: #8FA6BC;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.78rem;
  color: #7E93A8;
  flex-wrap: wrap;
  gap: 10px;
}
.section-head {
  max-width: 660px;
  margin: 0 0 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: 2.5rem;
}
.section-head .rule {
  width: 44px;
  height: 2px;
  background: #C2A440;
  margin: 18px auto 0;
}
.Header,
header.Header {
  display: none !important;
}
footer.Footer {
  display: none !important;
}
.hero {
  position: relative;
  background: linear-gradient(115deg, #122E48 0%, #285B88 60%, #285B88 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 15%, rgba(194, 164, 64, 0.09) 0%, transparent 38%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 2;
  min-height: 760px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.hero-copy .eyebrow {
  color: #D8C078;
}
.hero-copy h1 {
  color: #fff;
  font-size: 3.15rem;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  max-width: 600px;
}
.hero-copy h1 em {
  font-style: normal;
  color: #D8C078;
  background-image: linear-gradient(#C2A440, #C2A440);
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 100% 3px;
  padding-bottom: 0.08em;
}
.hero-copy p.lede {
  color: #C9DBEA;
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.hero-trust-band {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 30px;
}
.hero-trust-band .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 150px;
}
.hero-trust-band .icon-wrap {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(194, 164, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hero-trust-band .icon {
  width: 13px;
  height: 13px;
  color: #D8C078;
}
.hero-trust-band strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}
.hero-trust-band span span {
  display: block;
  color: #9FB6C9;
  font-size: 0.74rem;
  margin-top: 1px;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 20%;
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #122E48 0%, rgba(18, 46, 72, 0.5) 8%, rgba(18, 46, 72, 0) 22%);
  z-index: 2;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 22, 35, 0.85) 0%, rgba(9, 22, 35, 0.15) 30%, rgba(9, 22, 35, 0) 55%);
  z-index: 2;
}
.hero-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0, rgba(194, 164, 64, 0.55) 20%, rgba(194, 164, 64, 0.55) 80%, transparent 100%);
  z-index: 3;
}
.hero-photo-caption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  z-index: 4;
  color: #fff;
}
.hero-photo-caption .name {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 1.4rem;
}
.hero-photo-caption .title {
  font-size: 0.76rem;
  color: #D8C078;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-strip {
  position: relative;
  background: #F4F6F8;
  border-bottom: 1px solid #E3E8ED;
  padding: 32px 0;
  overflow: hidden;
  background-image: linear-gradient(rgba(244, 246, 248, 0.94), rgba(244, 246, 248, 0.94)), url('/assets/images/home/home-proof-strip-pattern.webp');
  background-size: cover;
  background-position: center;
}
.trust-strip .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-strip .trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5B6B7C;
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #E3E8ED;
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #122E48;
}
.trust-badge .icon {
  width: 15px;
  height: 15px;
  color: #C2A440;
}
.value-prop {
  padding: 96px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.value-prop::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 164, 64, 0.07) 0, transparent 70%);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid #E3E8ED;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(18, 46, 72, 0.08);
}
.value-card .value-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.value-card .value-body {
  padding: 26px 30px 30px;
}
.value-card h3 {
  font-size: 1.2rem;
  max-width: 24ch;
}
.value-card p {
  font-size: 0.94rem;
  margin: 0;
}
.stats {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.stats .stats-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 0;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 46, 72, 0.88), rgba(40, 91, 136, 0.82));
  z-index: 1;
}
.stats .wrap {
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .num {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 2.9rem;
  color: #D8C078;
}
.stat-item .lbl {
  color: #CBD9E6;
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 10px;
}
.services {
  padding: 96px 0;
  background: #F4F6F8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid #E3E8ED;
}
.service-card .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(40, 91, 136, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon-tile .icon {
  width: 24px;
  height: 24px;
  color: #285B88;
}
.service-card h3 {
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.services-footer {
  text-align: center;
  margin-top: 44px;
}
.quote-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.quote-section .quote-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #122E48;
  opacity: 0.85;
  z-index: 1;
}
.quote-card {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 3rem;
  color: #C2A440;
  line-height: 1;
}
.quote-card blockquote {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  margin: 10px 0 20px;
}
.quote-card .attribution {
  color: #D8C078;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-band .cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #C2A440 0%, #D8C078 100%);
  z-index: 1;
}
.cta-band .wrap {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: #122E48;
  font-size: 2.3rem;
}
.cta-band p {
  color: #1B4265;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 30px;
}
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-visual {
    order: -1;
    height: 420px;
    min-height: 0;
  }
  .hero-seam {
    display: none;
  }
  .hero-copy {
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding: 48px 32px;
  }
  .hero-copy p.lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-band {
    justify-content: center;
    text-align: left;
  }
  .value-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}
@media (max-width: 760px) {
  section,
  .value-prop,
  .services,
  .quote-section,
  .cta-band {
    padding: 60px 0;
  }
  .hero-copy {
    padding: 40px 20px;
  }
  .hero-copy h1 {
    font-size: 2.15rem;
  }
  .hero-visual {
    height: 340px;
  }
  .value-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .wrap {
    padding: 0 20px;
  }
  .cta-band h2 {
    font-size: 1.6rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .stat-item {
    border-right: none !important;
  }
}
.ceo-hero {
  background: linear-gradient(115deg, #122E48, #285B88);
  position: relative;
  overflow: hidden;
}
.ceo-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 480px;
}
.ceo-photo {
  position: relative;
  overflow: hidden;
}
.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 12%;
  min-height: 480px;
}
.ceo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(18, 46, 72, 0.4) 100%);
}
.ceo-name-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
}
.ceo-name-block .eyebrow {
  color: #D8C078;
}
.ceo-name-block h1 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ceo-name-block .title-line {
  color: #D8C078;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 6px;
}
.ceo-name-block .firm-line {
  color: #C9DBEA;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.ceo-name-block .tagline {
  color: #D8C078;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  display: inline-block;
}
.ceo-bio {
  padding: 88px 0;
  background: #FFFFFF;
}
.ceo-bio .col {
  max-width: 70ch;
  margin: 0 auto;
}
.ceo-bio p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5B6B7C;
}
.ceo-bio p:first-child::first-letter {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 3.4rem;
  line-height: 0.8;
  float: left;
  padding: 6px 8px 0 0;
  color: #285B88;
}
.badge-row {
  padding: 0 0 88px;
  background: #FFFFFF;
}
.badge-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.badge {
  text-align: center;
  width: 150px;
}
.badge .ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C2A440, #D8C078);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.badge .ring .icon {
  width: 24px;
  height: 24px;
  color: #122E48;
  stroke-width: 1.8;
}
.badge b {
  display: block;
  font-size: 1rem;
  color: #122E48;
}
.badge span {
  display: block;
  font-size: 0.72rem;
  color: #5B6B7C;
  margin-top: 2px;
}
.timeline-section {
  background: #F4F6F8;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.timeline-section .timeline-texture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  object-fit: cover;
  opacity: 0.06;
  z-index: 0;
}
.timeline-section .wrap {
  position: relative;
  z-index: 1;
}
.timeline {
  max-width: 760px;
  margin: 56px auto 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, #C2A440, #E3E8ED);
}
.tl-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 44px;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-item .dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #C2A440;
}
.tl-item .years {
  font-size: 0.72rem;
  font-weight: 700;
  color: #C2A440;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-item h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.tl-item p {
  font-size: 0.92rem;
  margin: 0;
}
.tl-inset {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(18, 46, 72, 0.08);
}
.tl-inset img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.bare-quote {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  background: #122E48;
}
.bare-quote .quote-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}
.bare-quote .wrap {
  position: relative;
  z-index: 1;
}
.bare-quote .mark {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 3.4rem;
  color: #C2A440;
  line-height: 1;
}
.bare-quote blockquote {
  font-family: 'Abygaer', 'Georgia', serif;
  font-size: 2rem;
  font-style: italic;
  color: #fff;
  max-width: 820px;
  margin: 16px auto 0;
  line-height: 1.5;
}
.bare-quote .rule {
  width: 60px;
  height: 2px;
  background: #C2A440;
  margin: 26px auto 0;
}
.ceo-cta {
  padding: 70px 0;
  text-align: center;
  background: #FFFFFF;
}
.ceo-cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 1080px) {
  .ceo-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .ceo-photo img {
    min-height: 340px;
  }
  .ceo-name-block {
    padding: 48px 32px;
    text-align: center;
  }
}
@media (max-width: 760px) {
  .ceo-name-block h1 {
    font-size: 1.9rem;
  }
  .badge-grid {
    gap: 14px;
  }
  .badge {
    width: 42%;
  }
  .tl-inset img {
    height: 220px;
  }
  .bare-quote blockquote {
    font-size: 1.4rem;
  }
}
