:root {
  --red: #c41e3a;
  --red-dark: #9e1830;
  --blue: #1a4fa0;
  --blue-dark: #0f3478;
  --blue-light: #e8f0fc;
  --sky: #5ba4e8;
  --white: #ffffff;
  --off-white: #f6f8fc;
  --text: #1a2744;
  --muted: #5a6b85;
  --border: rgba(26, 79, 160, 0.12);
  --shadow: 0 20px 50px rgba(15, 52, 120, 0.14);
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }
.container { width: min(1140px, calc(100% - 2.5rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 24px rgba(26, 79, 160, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 64px; width: auto; flex-shrink: 0; }
.logo-caption {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  gap: 0.15rem;
}
.logo-caption-main {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--blue-dark);
}
.logo-caption-sub {
  font-family: var(--font);
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.logo:hover .logo-caption-main { color: var(--blue); }
.logo:hover .logo-caption-sub { color: var(--red-dark); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav a:not(.btn) { color: var(--blue-dark); }
.site-nav a:not(.btn):hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg, .btn i { width: 18px; height: 18px; }
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26, 79, 160, 0.3);
}
.btn-outline-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 52, 120, 0.92) 0%,
    rgba(26, 79, 160, 0.78) 45%,
    rgba(196, 30, 58, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  padding: 7rem 0 4rem;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffd4db;
  background: rgba(196, 30, 58, 0.5);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 1.25rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin: 0 0 2rem;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(10px);
}
.stat-card svg { width: 28px; height: 28px; color: #ffd4db; flex-shrink: 0; }
.stat-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}
.stat-card span { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* Sections */
.section { padding: 5rem 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.section-label--light { color: #ffd4db; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 2.5rem;
  line-height: 1.2;
}

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--blue);
}
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, var(--red), var(--blue));
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.about-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--blue-dark);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}
.about-copy p { color: var(--muted); margin: 0 0 1rem; }
.group-cards { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.group-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--blue-light);
  border-left: 4px solid var(--red);
  border-radius: 12px;
}
.group-card svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; }
.group-card strong { display: block; color: var(--blue-dark); font-size: 0.92rem; }
.group-card span { font-size: 0.82rem; color: var(--muted); }

/* Vision */
.vision {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 55%, var(--red-dark) 100%);
  color: var(--white);
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vision-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.25s;
}
.vision-card:hover { transform: translateY(-4px); }
.vision-card--highlight {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.vision-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.vision-icon svg { width: 24px; height: 24px; color: var(--white); }
.vision-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd4db;
}
.vision-card p { margin: 0; font-size: 0.95rem; color: rgba(255,255,255,0.9); }

/* Services */
.services { background: var(--off-white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--red);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-light), var(--white));
  border: 2px solid var(--blue);
  border-radius: 14px;
  margin-bottom: 1rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--blue); }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #ffe8ec, var(--white));
  border-color: var(--red);
}
.service-card:hover .service-icon svg { color: var(--red); }
.service-card h3 { margin: 0 0 0.75rem; color: var(--blue-dark); font-size: 1.05rem; }
.service-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.88rem; }
.service-card li + li { margin-top: 0.35rem; }

/* Facilities / Gallery */
.facilities { background: var(--white); }
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-main {
  grid-row: span 2;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.gallery-side {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(15,52,120,0.12);
}
.gallery-side img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(15, 52, 120, 0.9));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.facility-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.facility-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--red);
}
.facility-feature svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.facility-feature h4 { margin: 0 0 0.4rem; color: var(--blue-dark); font-size: 0.95rem; }
.facility-feature p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* Why */
.why {
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
  padding: 3.5rem 0;
  color: var(--white);
}
.why-inner { text-align: center; }
.why h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.why-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.why-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.why-tags svg { width: 16px; height: 16px; }

/* Clients */
.clients { background: var(--off-white); }
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.client-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.client-card:hover { box-shadow: var(--shadow); }
.client-card svg { width: 28px; height: 28px; color: var(--blue); flex-shrink: 0; }
.client-card strong { display: block; color: var(--blue-dark); margin-bottom: 0.25rem; }
.client-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.client-card:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; width: 100%; }

/* Download */
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
}
.download-copy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.download-logo { flex-shrink: 0; }
.download-card h2 {
  font-family: var(--serif);
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.download-card p { margin: 0; color: var(--muted); max-width: 42ch; }

/* Contact */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact-info h2 {
  font-family: var(--serif);
  color: var(--blue-dark);
  margin: 0 0 1.25rem;
}
.location-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--blue-light);
  border-left: 4px solid var(--red);
  border-radius: 12px;
}
.location-card svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
}
.location-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}
.location-card p strong { color: var(--text); }
.contact-channels-title {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.contact-list svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-list span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.15rem;
}

.contact-form {
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-form h3 { margin: 0 0 1.25rem; color: var(--blue-dark); }
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffd4db;
  font-weight: 600;
}
.site-footer a:hover { color: var(--white); }
.site-footer a svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-stats { grid-template-columns: 1fr; }
  .about-grid,
  .vision-grid,
  .service-grid,
  .gallery,
  .facility-features,
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
  .gallery-main img { min-height: 240px; }
  .client-card:last-child { max-width: none; }
  .download-card { flex-direction: column; align-items: flex-start; }
  .download-copy { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 72px 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .logo img { height: 52px; }
  .logo-caption-main { font-size: 0.95rem; letter-spacing: 0.02em; }
  .logo-caption-sub { font-size: 0.78rem; letter-spacing: 0.14em; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card:last-child { max-width: none; }
}
