:root {
  --bg: #f6f8fc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --text: #0d2340;
  --muted: #596678;
  --line: rgba(13, 35, 64, 0.12);
  --brand: #0d67b5;
  --brand-deep: #0a3f81;
  --accent: #f91b26;
  --accent-soft: rgba(249, 27, 38, 0.1);
  --shadow: 0 24px 60px rgba(13, 35, 64, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 103, 181, 0.16), transparent 32%),
    radial-gradient(circle at right 20%, rgba(249, 27, 38, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 63, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 63, 129, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(10, 63, 129, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: white;
  color: white;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 63, 129, 0.1);
  box-shadow: 0 14px 30px rgba(10, 63, 129, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 63, 129, 0.08);
  border-radius: 999px;
}

.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.nav-cta {
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
   background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: #0a3f81;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 1.5rem 0 4rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(10, 63, 129, 0.12);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.6rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  box-shadow: 0 16px 30px rgba(10, 63, 129, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border: 1px solid rgba(10, 63, 129, 0.12);
}

.glass-card,
.info-card,
.service-card,
.contact-card,
.timeline-card {
  position: relative;
  border: 1px solid rgba(10, 63, 129, 0.08);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(249, 27, 38, 0.14), transparent 70%);
  pointer-events: none;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stage {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  background: #0a2445;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, rgba(238, 243, 251, 0), rgba(238, 243, 251, 1));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 78vh;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlide 15s infinite;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 36, 0.86) 0%, rgba(5, 18, 36, 0.62) 38%, rgba(5, 18, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 19, 38, 0.2), rgba(6, 19, 38, 0.45));
}

.hero-slide-one {
  background-image:
    linear-gradient(135deg, rgba(13, 103, 181, 0.16), rgba(249, 27, 38, 0.16)),
    url("slider1.jpg");
}

.hero-slide-two {
  animation-delay: 5s;
  background-image:
    radial-gradient(circle at top right, rgba(249, 27, 38, 0.38), transparent 20%),
    linear-gradient(135deg, rgba(8, 37, 74, 0.55), rgba(13, 103, 181, 0.2)),
    url("slider2.jpg");
}

.hero-slide-three {
  animation-delay: 10s;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 12%),
    linear-gradient(135deg, rgba(10, 63, 129, 0.4), rgba(249, 27, 38, 0.28)),
    url("slider3.jpg");
}

.hero-slide-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-overlay-copy {
  display: grid;
  gap: 0.8rem;
  width: min(100%, 680px);
  padding: 6.5rem 2rem 7.5rem;
  color: white;
}

.hero-overlay-copy h1 {
  font-size: clamp(2.75rem, 5.3vw, 4.8rem);
  line-height: 0.92;
  max-width: 11ch;
}

.hero-overlay-copy .eyebrow {
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.hero-overlay-copy .lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 49ch;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-overlay-copy .hero-actions {
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero-overlay-copy .btn {
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
}

.hero-slider-meta {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 22px;
  background: rgba(8, 25, 48, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 44px rgba(6, 19, 38, 0.18);
}

.slide-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  gap: 0.55rem;
}

.slider-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  animation: dotPulse 15s infinite;
}

.slider-dots span:nth-child(2) {
  animation-delay: 5s;
}

.slider-dots span:nth-child(3) {
  animation-delay: 10s;
}

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

.metric {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-size: 0.95rem;
}

.section {
  padding: 2rem 0 5rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.7)),
    var(--surface);
  border: 1px solid rgba(10, 63, 129, 0.08);
}

.stats-row,
.card-grid,
.service-grid,
.contact-grid,
.timeline-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-row {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.info-card,
.service-card,
.contact-card,
.timeline-card {
  padding: 1.5rem;
}

.glass-card strong,
.info-card strong,
.contact-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
  color: var(--brand-deep);
  font-family: "Cormorant Garamond", serif;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(240, 245, 255, 0.92));
}

.service-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-card li,
.bullet-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-card li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.bullet-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.quote-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--brand-deep), var(--accent));
  color: white;
  box-shadow: 0 24px 50px rgba(10, 63, 129, 0.22);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-card strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding: 4.2rem 0 2.5rem;
}

.page-title {
  display: grid;
  gap: 1rem;
  max-width: 96ch;
}

.section-stack {
  display: grid;
  gap: 1.2rem;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(10, 63, 129, 0.08);
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 245, 255, 0.9));
  box-shadow: var(--shadow);
}

.leader-photo {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 63, 129, 0.1);
  aspect-ratio: 4 / 5;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--brand-deep);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(10, 63, 129, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 1.5rem 0 3rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(10, 63, 129, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.footer-shell p {
  font-size: 0.95rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 { animation-delay: 0.08s; }
.fade-up.delay-2 { animation-delay: 0.16s; }
.fade-up.delay-3 { animation-delay: 0.24s; }
.fade-up.delay-4 { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlide {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes dotPulse {
  0%,
  28% {
    background: white;
    transform: scale(1.05);
  }

  33%,
  100% {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .split-grid,
  .contact-grid,
  .card-grid,
  .service-grid,
  .timeline-grid,
  .stats-row,
  .leader-card {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding-top: 0.4rem;
  }

  .site-header.is-open .nav-menu {
    display: flex;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 34px rgba(13, 35, 64, 0.1);
  }

  .nav-links a {
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-stage,
  .hero-slide {
    min-height: 70vh;
  }

  .hero-overlay-copy {
    width: min(100%, 620px);
    padding: 5.5rem 1.5rem 6.75rem;
  }

  .hero-overlay-copy h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    max-width: 12ch;
  }

  .hero-slider-meta {
    margin-top: -2.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .section,
  .page-hero {
    padding-top: 1.5rem;
  }

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

  .hero-stage,
  .hero-slide {
    min-height: 78vh;
  }

  .hero-overlay-copy {
    padding: 4.75rem 1rem 6.25rem;
    gap: 0.9rem;
  }

  .hero-overlay-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    max-width: 13ch;
  }

  .hero-overlay-copy .lead {
    font-size: 0.96rem;
    max-width: 34ch;
  }

  .hero-overlay-copy .btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }

  .hero-slider-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -1.8rem;
  }

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

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
