:root {
  --white: #ffffff;
  --red: #880c24;
  --blue: #18354b;
  --black: #000000;
  --cream: #f7f4ee;
  --cream-2: #efe8dc;
  --text: #122638;
  --muted: #53606c;
  --line: rgba(24, 53, 75, 0.14);
  --shadow: 0 26px 80px rgba(24, 53, 75, 0.12);
  --shadow-soft: 0 18px 48px rgba(24, 53, 75, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(136, 12, 36, .08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(24, 53, 75, .08), transparent 30%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(24, 53, 75, .08);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 54px rgba(24, 53, 75, .12);
}
.brand img { width: 112px; height: auto; }
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(24, 53, 75, 0.06);
}
.desktop-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(18, 38, 56, .78);
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { background: var(--white); color: var(--blue); box-shadow: 0 8px 20px rgba(24,53,75,.08); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta {
  padding: 12px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
}
.header-cta span, .btn span { color: #fff; transition: transform .2s ease; }
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.header-cta:hover span, .btn:hover span { transform: translate(2px, -2px); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(136, 12, 36, .11);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -0.065em;
  font-weight: 800;
  text-wrap: pretty;
}
h2 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: pretty;
}
h3 {
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.hero { padding-top: 78px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 38px;
  align-items: end;
}
.hero-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { min-height: 48px; padding: 14px 21px; font-size: 14px; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 18px 36px rgba(136, 12, 36, .22); }
.btn-secondary { background: var(--white); color: var(--blue); border: 1px solid var(--line); }
.btn-light { background: var(--white); color: var(--blue); }
.btn-primary:hover { box-shadow: 0 24px 52px rgba(136, 12, 36, .28); }

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
}
.hero-panel div {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hero-panel div:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.hero-panel strong { color: var(--red); font-size: 26px; letter-spacing: -0.05em; }
.hero-panel span { color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.35; }
.hero-media-wrap { position: relative; margin-top: 48px; }
.hero-media {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  max-width: 280px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  backdrop-filter: blur(18px);
  transition: transform .25s ease;
}
.floating-card:hover { transform: translateY(-4px); }
.floating-card p { margin-bottom: 7px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.floating-card strong { display: block; font-size: 15px; line-height: 1.35; }
.floating-card-left { left: 34px; bottom: 30px; }
.floating-card-right { right: 34px; top: 30px; }

.split-grid {
  display: grid;
  grid-template-columns: .95fr .78fr;
  gap: 80px;
  align-items: start;
}
.intro-text { padding-top: 45px; color: var(--muted); font-size: 16px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 10px; color: var(--red); font-weight: 900; }

.services-shell {
  padding: 46px;
  border-radius: 44px;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.services-shell::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -140px;
  border-radius: 50%;
  background: rgba(136, 12, 36, .5);
  filter: blur(6px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 { max-width: 760px; }
.section-head-invert { position: relative; z-index: 1; }
.section-head-invert h2, .section-head-invert .section-label { color: var(--white); }
.section-head-invert .section-label { opacity: .82; }
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 238px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.service-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.28); }
.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
}
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 22px; }
.service-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; }
.service-card.featured { background: var(--red); }
.service-card.featured-light { background: var(--white); }
.service-card.featured-light h3, .service-card.featured-light p { color: var(--blue); }
.service-card.featured-light span { background: var(--red); color: var(--white); }

.method-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 62px; align-items: center; }
.method-image-card { position: relative; }
.method-image-card img { width: 100%; min-height: 520px; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.stamp { position: absolute; right: 22px; bottom: 22px; padding: 18px 22px; border-radius: 999px; background: var(--red); color: var(--white); font-weight: 900; }
.steps { display: grid; gap: 12px; margin-top: 34px; }
.steps div { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; padding: 21px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); transition: transform .22s ease, box-shadow .22s ease; }
.steps div:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.steps span { grid-row: span 2; color: var(--red); font-weight: 900; }
.steps h3 { margin-bottom: 5px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.social-card { display: grid; grid-template-columns: 1fr 380px; gap: 30px; padding: 42px; border-radius: 42px; background: var(--white); box-shadow: var(--shadow); }
.social-content p:not(.section-label) { max-width: 640px; color: var(--muted); }
.social-logo { display: grid; align-content: center; justify-items: center; gap: 22px; min-height: 330px; padding: 30px; border-radius: 32px; background: linear-gradient(135deg, rgba(136,12,36,.09), rgba(24,53,75,.09)); text-align: center; }
.social-logo img { width: 160px; }
.social-logo p { margin: 0; color: var(--blue); font-weight: 800; }

.head-note { max-width: 380px; margin: 0; color: var(--muted); }
.refined-card { position: relative; overflow: hidden; }
.team-feature {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.team-feature img { height: 330px; width: 100%; object-fit: cover; border-radius: 24px; }
.team-feature h3 { max-width: 560px; margin-bottom: 14px; font-size: clamp(28px, 4vw, 48px); }
.team-feature p:not(.eyebrow) { color: var(--muted); max-width: 560px; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0 16px; }
.leader-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.leader-card img { width: 180px; height: 210px; object-fit: cover; border-radius: 24px; }
.leader-card span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.leader-card h3 { margin: 8px 0 8px; font-size: 26px; }
.leader-card p { margin: 0; color: var(--muted); font-size: 14px; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.precise-team { margin-top: 16px; }
.person-card { padding: 13px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.person-card img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 20px; }
.person-card h3 { margin: 16px 8px 3px; font-size: 18px; }
.person-card p { margin: 0 8px 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.interactive-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.interactive-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(136,12,36,.22); }

.trust { background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.58)); }
.trust-shell { padding: 40px; border-radius: 44px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); overflow: hidden; }
.logo-block { border: 1px solid var(--line); border-radius: 32px; background: var(--cream); overflow: hidden; }
.logo-block-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.logo-block-head span { color: var(--red); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }
.logo-block-head p { margin: 0; color: var(--muted); font-weight: 700; }
.logo-marquee { overflow: hidden; padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; width: max-content; gap: 14px; animation: marquee 28s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-tile { display: grid; place-items: center; width: 172px; height: 104px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); filter: grayscale(.1); transition: transform .2s ease, filter .2s ease; }
.logo-tile:hover { transform: translateY(-4px); filter: grayscale(0); }
.logo-tile img { max-width: 118px; max-height: 64px; object-fit: contain; }
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.partner-card { min-height: 180px; display: grid; align-content: center; justify-items: start; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
.partner-card img { max-width: 132px; max-height: 70px; object-fit: contain; }
.partner-card span { color: var(--muted); font-size: 13px; font-weight: 800; }
@keyframes marquee { to { transform: translateX(-50%); } }

.faq { background: var(--blue); color: var(--white); }
.faq-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 58px; align-items: start; }
.faq h2, .faq .section-label { color: var(--white); }
.faq p { color: rgba(255,255,255,.72); }
.faq .btn-secondary { margin-top: 20px; color: var(--blue); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.07); overflow: hidden; transition: background .2s ease, border-color .2s ease; }
.faq-item[open] { background: var(--white); border-color: transparent; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 22px; color: var(--white); font-weight: 900; }
.faq-item[open] summary { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.12); color: currentColor; transition: transform .2s ease, background .2s ease; }
.faq-item[open] summary::after { content: "−"; background: rgba(136,12,36,.1); transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 460px; gap: 54px; align-items: start; }
.contact-copy p:not(.section-label) { max-width: 650px; color: var(--muted); }
.contact-list { display: grid; gap: 10px; margin-top: 30px; }
.contact-list a { display: grid; gap: 4px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); color: var(--blue); font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.contact-list a:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.contact-list span { color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.contact-form { display: grid; gap: 14px; padding: 24px; border-radius: 34px; background: var(--cream); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; color: var(--blue); font-size: 13px; font-weight: 900; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 17px; background: var(--white); padding: 14px 15px; color: var(--text); outline: none; resize: vertical; transition: box-shadow .2s ease, border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(136,12,36,.48); box-shadow: 0 0 0 4px rgba(136,12,36,.08); }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }

.footer { padding: 42px 0; background: var(--blue); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer img { width: 104px; }
.footer p { max-width: 320px; color: rgba(255,255,255,.7); }
.footer strong { display: block; margin-bottom: 12px; }
.footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--white); }

@media (max-width: 980px) {
  .section-pad { padding: 70px 0; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { justify-self: end; display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 0; border-radius: 50%; background: var(--blue); }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--white); transition: transform .2s ease; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 86px 16px auto; z-index: 19; display: none; padding: 20px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
  body.menu-open .mobile-menu { display: grid; }
  .mobile-menu a { padding: 14px; border-bottom: 1px solid var(--line); font-weight: 800; }
  .mobile-menu .mobile-cta { margin-top: 12px; border: 0; border-radius: 999px; background: var(--red); color: var(--white); text-align: center; }
  .hero-grid, .split-grid, .method-grid, .social-card, .team-feature, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-panel { grid-template-columns: repeat(3, 1fr); }
  .hero-panel div { grid-template-columns: 1fr; }
  .service-grid, .people-grid, .leadership-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; flex-direction: column; }
  .social-card, .trust-shell { padding: 24px; }
  .leader-card { grid-template-columns: 150px 1fr; }
  .leader-card img { width: 150px; height: 180px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 54px 0; }
  .site-header { margin-top: 10px; width: calc(100% - 20px); padding-left: 16px; }
  .brand img { width: 96px; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .hero { padding-top: 52px; }
  .hero-panel, .service-grid, .people-grid, .leadership-grid, .partner-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; border-radius: 28px; }
  .floating-card { position: static; max-width: none; margin-top: 12px; }
  .services-shell { padding: 22px; border-radius: 30px; }
  .method-image-card img { min-height: 360px; }
  .steps div { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card img { width: 100%; height: 280px; }
  .logo-block-head { display: block; }
  .logo-block-head p { margin-top: 8px; }
  .contact-form { padding: 22px; border-radius: 28px; }
}
