:root {
  --blue-950: #093454;
  --blue-900: #0c4268;
  --blue-800: #0d6faa;
  --blue-700: #1290d5;
  --blue-100: #e9f6ff;
  --yellow-500: #f2c400;
  --yellow-300: #ffe16f;
  --ink: #15384a;
  --muted: #617786;
  --line: rgba(11, 70, 108, 0.1);
  --white: #ffffff;
  --bg: #f5f9fc;
  --shadow-lg: 0 30px 80px rgba(13, 44, 68, 0.16);
  --shadow-md: 0 16px 40px rgba(13, 44, 68, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 196, 0, 0.18), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.8; margin: 0; }

.bg-orb,
.bg-grid {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}
.bg-orb {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
}
.orb-a { top: -110px; right: -100px; background: rgba(242, 196, 0, .9); }
.orb-b { left: -140px; top: 34vh; background: rgba(18, 144, 213, .35); }
.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 66, 104, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 66, 104, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 80%);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(9, 52, 84, 0.06);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 150px;
  height: 50px;
  position: relative;
  border-radius: 16px;
  background:  var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  inset: 10px 22px 10px 22px;
  background: var(--white);
  border-radius: 6px;
  transform: skew(-18deg);
}
.brand-mark span:last-child {
  inset: 20px 10px 20px 32px;
}
.brand strong {
  display: block;
  font-size: .98rem;
  letter-spacing: .14em;
}
.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  font-weight: 600;
  color: #264a5e;
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  box-shadow: var(--shadow-md);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  padding: 58px 0 36px;
}
.hero-grid,
.story-grid,
.identity-grid,
.team-grid,
.contact-grid,
.compact-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}
.hero-copy h1,
.section-heading h2,
.story-copy h2,
.identity-copy h2,
.team-copy h2,
.promise-copy h2,
.contact-card h2 {
  margin: 18px 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.3rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: .02em;
  color: var(--ink);
}
.section-heading h2,
.story-copy h2,
.identity-copy h2,
.team-copy h2,
.promise-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}
.hero-copy h1 span { color: var(--blue-800); }
.lead {
  font-size: 1.06rem;
  max-width: 650px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(242, 196, 0, 0.18);
  color: var(--blue-950);
  border: 1px solid rgba(242, 196, 0, 0.4);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pill-outline {
  background: rgba(255,255,255,.65);
  border-color: rgba(12, 66, 104, 0.14);
}
.pill-dark {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(12, 66, 104, 0.1);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hero-metrics article,
.feature-card,
.premium-card,
.identity-card,
.objective-card,
.service-card,
.contact-card,
.map-card,
.promise-wrap,
.media-frame,
.compact-strip {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
}
.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Oswald', sans-serif;
  color: var(--blue-800);
  font-size: 2rem;
}
.hero-metrics span { color: var(--muted); font-weight: 600; }

.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-photo-wrap {
  position: absolute;
  inset: 12px 38px 38px 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glass-card {
  position: absolute;
  width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow-md);
}
.glass-top { right: 0; top: 26px; }
.glass-bottom { left: 28px; bottom: 0; }
.glass-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-800);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.glass-card strong,
.glass-card p { color: var(--ink); line-height: 1.55; }

.section {
  padding: 44px 0;
}
.compact-strip {
  border-radius: 30px;
  padding: 24px 28px;
}
.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.strip-items span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 52, 84, 0.05);
  border: 1px solid rgba(9, 52, 84, 0.08);
  font-weight: 600;
}

.story-media,
.identity-media,
.team-media {
  position: relative;
  min-height: 430px;
}
.media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-large {
  position: absolute;
  inset: 0 70px 70px 0;
}
.media-small {
  position: absolute;
  width: 240px;
  right: 0;
  bottom: 0;
}
.tall {
  min-height: 540px;
}
.clean-panel {
  min-height: 430px;
}
.feature-grid,
.values-grid,
.objectives-grid,
.services-grid,
.contact-grid,
.promise-points,
.identity-cards {
  display: grid;
  gap: 22px;
}
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}
.feature-card,
.premium-card,
.identity-card,
.objective-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.feature-card h3,
.premium-card h3,
.identity-card h3,
.objective-card h3,
.service-content h3,
.promise-points strong {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--ink);
}
.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-copy { max-width: 760px; }
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.premium-card {
  position: relative;
  overflow: hidden;
}
.card-topline {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow-500), var(--blue-800));
}
.num {
  display: inline-block;
  margin: 4px 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--blue-800);
}
.identity-cards,
.promise-points {
  grid-template-columns: 1fr;
}
.objectives-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.objective-card {
  position: relative;
  overflow: hidden;
}
.objective-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 196, 0, .4), transparent 70%);
}
.objective-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 144, 213, 0.1);
  color: var(--blue-800);
  font-weight: 800;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card {
  border-radius: 30px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.service-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.service-card-large .service-image { aspect-ratio: auto; min-height: 100%; }
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content {
  padding: 24px 24px 26px;
}
.service-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-800);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-content ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.promise-wrap {
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  background: linear-gradient(135deg, rgba(12, 66, 104, .96), rgba(18, 144, 213, .92));
}
.promise-copy h2,
.promise-copy p,
.promise-points article,
.promise-points span,
.promise-points strong {
  color: var(--white);
}
.promise-points article {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.promise-points span {
  display: block;
  margin-top: 6px;
  line-height: 1.7;
  opacity: .92;
}

.contact-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
}
.contact-card,
.map-card {
  padding: 30px;
  border-radius: 30px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-list a,
.contact-list div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(9, 52, 84, 0.05);
  border: 1px solid rgba(9, 52, 84, 0.06);
}
.contact-list strong {
  font-size: .92rem;
  color: var(--ink);
}
.contact-list span {
  color: var(--muted);
  line-height: 1.6;
}
.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.site-footer {
  padding: 18px 0 34px;
}
.footer-wrap,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-wrap {
  padding-top: 20px;
  border-top: 1px solid rgba(9, 52, 84, 0.1);
}
.footer-wrap strong,
.footer-wrap a {
  color: var(--ink);
  font-weight: 800;
}
.footer-wrap p,
.footer-bottom span {
  color: var(--muted);
}
.footer-bottom {
  margin-top: 10px;
  font-size: .95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .identity-grid,
  .team-grid,
  .contact-grid,
  .compact-strip-inner,
  .promise-wrap,
  .service-card-large {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 500px; }
  .hero-photo-wrap { inset: 0 16px 88px 16px; transform: none; }
  .glass-top { right: 20px; top: auto; bottom: 16px; }
  .glass-bottom { left: 20px; bottom: 16px; }
  .strip-items { justify-content: flex-start; }
  .media-large { inset: 0 0 76px 0; }
  .media-small { right: 12px; width: 220px; }
  .tall,
  .clean-panel { min-height: auto; }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.97);
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(9, 52, 84, 0.08);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .25s ease;
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-toggle { display: block; }
  .hero-metrics,
  .feature-grid,
  .values-grid,
  .objectives-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-large { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1200px); }
  .nav-wrap { min-height: 76px; }
  .hero { padding-top: 28px; }
  .hero-copy h1 { font-size: clamp(2.15rem, 12vw, 3.6rem); }
  .section-heading h2,
  .story-copy h2,
  .identity-copy h2,
  .team-copy h2,
  .promise-copy h2,
  .contact-card h2 { font-size: clamp(1.8rem, 9vw, 2.75rem); }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-visual { min-height: 410px; }
  .hero-photo-wrap { inset: 0 0 84px 0; }
  .glass-card {
    width: calc(100% - 28px);
    left: 14px;
    right: 14px;
  }
  .glass-top { top: auto; bottom: 104px; }
  .glass-bottom { bottom: 10px; }
  .story-media,
  .identity-media,
  .team-media { min-height: 330px; }
  .media-small { width: 160px; }
  .compact-strip,
  .feature-card,
  .premium-card,
  .identity-card,
  .objective-card,
  .service-content,
  .contact-card,
  .map-card,
  .promise-wrap { padding: 20px; }
  .promise-wrap { border-radius: 26px; }
  .footer-wrap,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.objectives-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
  margin-top: 42px;
}

.objectives-graphic {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 4px;
}

.objectives-graphic img {
  width: min(100%, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
}

.objective-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 45px rgba(8, 38, 74, 0.08);
  border: 1px solid rgba(10, 92, 153, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8, 38, 74, 0.14);
}

.objective-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0c6ea8, #f0c900);
}

.objective-card h3 {
  margin-bottom: 10px;
}

.objective-card p {
  margin: 0;
  color: #5c6670;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .objectives-layout {
    grid-template-columns: 1fr;
  }

  .objectives-graphic img {
    width: min(100%, 260px);
  }
}
.team-section {
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.orgchart-v2 {
  margin-top: 42px;
  position: relative;
}

.orgchart-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 26px;
}

.org-box {
  position: relative;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(12, 28, 45, 0.08);
}

.org-box.root {
  background: #f0c900;
  color: #16202a;
  min-width: 180px;
  font-weight: 700;
}

.org-box.manager,
.org-box.blue {
  background: #0c6ea8;
  color: #fff;
  font-weight: 600;
}

.org-box.manager {
  min-width: 220px;
}

.org-box.gray {
  background: #a8a8a8;
  color: #fff;
  font-weight: 600;
}

.org-box.light {
  background: #bdbdbd;
  color: #fff;
  font-weight: 600;
}

.orgchart-main {
  position: relative;
  display: grid;
  gap: 30px;
  padding-left: 140px;
}

.orgchart-trunk {
  position: absolute;
  left: 70px;
  top: -22px;
  bottom: 18px;
  width: 2px;
  background: #8f8f8f;
}

.orgchart-top .root::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  width: 70px;
  background: #8f8f8f;
}

.org-department {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 26px;
  align-items: start;
}

.org-department::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 32px;
  width: 70px;
  height: 2px;
  background: #8f8f8f;
}

.org-lineset {
  position: relative;
  display: grid;
  gap: 14px;
}

.org-lineset::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #b0b0b0;
}

.org-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.org-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #b0b0b0;
  transform: translateY(-50%);
}

.org-item > .org-box:first-child::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #b0b0b0;
  transform: translateY(-50%);
}

.org-item .org-box {
  min-width: 210px;
}

.org-item .org-box.gray,
.org-item .org-box.light {
  min-width: 170px;
}

@media (max-width: 1200px) {
  .orgchart-main {
    padding-left: 100px;
  }

  .orgchart-trunk {
    left: 50px;
  }

  .orgchart-top .root::after {
    width: 50px;
    right: -50px;
  }

  .org-department::before {
    left: -50px;
    width: 50px;
  }

  .org-department {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 980px) {
  .orgchart-top {
    justify-content: center;
  }

  .orgchart-top .root::after {
    display: none;
  }

  .orgchart-main {
    padding-left: 0;
  }

  .orgchart-trunk {
    display: none;
  }

  .org-department {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .org-department::before {
    display: none;
  }

  .org-lineset::before {
    display: none;
  }

  .org-item::before {
    display: none;
  }

  .org-item > .org-box:first-child::before {
    display: none;
  }

  .org-item {
    flex-direction: column;
    align-items: stretch;
  }

  .org-box.manager,
  .org-item .org-box,
  .org-item .org-box.gray,
  .org-item .org-box.light,
  .org-box.root {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .org-box {
    font-size: 0.9rem;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .orgchart-v2 {
    margin-top: 30px;
  }
}
.promise-points img {
  width: 168px;
  height: 148px;
  margin-bottom: 14px;
}