:root {
  --navy: #0b3d91;
  --navy-deep: #071b3d;
  --gold: #d4af37;
  --gold-soft: #f0d68f;
  --white: #ffffff;
  --light-gray: #f4f6fa;
  --text: #17253d;
  --muted: #5f6c82;
  --shadow: 0 18px 40px rgba(7, 27, 61, 0.12);
  --shadow-strong: 0 30px 60px rgba(7, 27, 61, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fcfcff 0%, var(--light-gray) 100%);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.04), rgba(212, 175, 55, 0.06));
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-intro {
  max-width: 860px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(7, 27, 61, 0.98), rgba(11, 61, 145, 0.95));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-icon span {
  width: 1.4rem;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 4rem;
  background: linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.12)), url('images/i3.jpeg') center/cover;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 18, 44, 0.75), rgba(11, 61, 145, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  color: var(--white);
  animation: fadeUp 0.8s ease both;
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  margin-bottom: 0.4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-images-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(920px, 100%);
  margin: 0 auto 2rem;
}

.hero-images-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(760px, 100%);
  margin: 0 auto;
}

.hero-highlight-card {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-highlight-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.hero-highlight-card span {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-grid,
.contact-grid {
  display: grid;
   grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
   gap: 2.5rem;
   align-items: center;
 }

 .about-image-card,
 .role-card,
 .info-card,
 .achievement-card,
 .testimonial-card,
 .contact-form {
   background: linear-gradient(145deg, #ffffff, #f8f9fd);
   border: 1px solid rgba(11, 61, 145, 0.08);
   border-radius: 1.75rem;
   box-shadow: var(--shadow);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
 }

 .about-image-card:hover,
 .role-card:hover,
 .info-card:hover,
 .achievement-card:hover,
 .testimonial-card:hover,
 .contact-form:hover {
   transform: translateY(-7px);
   box-shadow: var(--shadow-strong);
 }

 .about-image-card {
   padding: 1.5rem;
   overflow: hidden;
   display: grid;
   place-items: center;
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.98));
 }

 .about-image-card img {
   width: 100%;
   max-width: 420px;
   height: auto;
   display: block;
   border-radius: 1.5rem;
   object-fit: cover;
 }

 .about-content {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }

 .about-content p {
   margin-bottom: 1rem;
   color: var(--muted);
   line-height: 1.85;
 }

 @media (max-width: 900px) {
   .about-grid {
     grid-template-columns: 1fr;
   }

   .about-image-card {
     padding: 1rem;
   }
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-highlights div,
.stat-card {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.06), rgba(212, 175, 55, 0.08));
  text-align: center;
}

.about-highlights strong,
.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
}

.roles-grid,
.cards-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.role-card,
.info-card,
.achievement-card,
.testimonial-card {
  padding: 1.5rem;
}

.role-card .role-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.role-card h3,
.info-card h3,
.achievement-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.role-card p,
.info-card p,
.achievement-card p,
.testimonial-card p,
.contact-info p,
.contact-info li,
.site-footer p,
.site-footer a,
.site-footer h4 {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.social-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.achievements-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.achievement-card span {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  border-radius: 1rem;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.testimonial-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.contact-info ul {
  list-style: none;
  margin: 1rem 0 1.2rem;
}

.contact-info li {
  margin-bottom: 0.6rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  transition: background 0.25s ease;
}

.social-links a:hover {
  background: var(--gold);
}

.map-placeholder {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-form {
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8dde8;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--light-gray);
}

textarea {
  resize: vertical;
  margin-bottom: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .roles-grid,
  .cards-grid,
  .achievements-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1rem;
  }

  .menu-icon {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .site-nav a {
    color: var(--navy);
    padding: 0.5rem 0;
  }

  .menu-toggle:checked ~ .site-header .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .roles-grid,
  .cards-grid,
  .achievements-grid,
  .testimonial-grid,
  .gallery-grid,
  .social-grid,
  .legal-grid,
  .about-highlights,
  .footer-grid,
  .form-row,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }
}
