:root {
  --navy: #061F35;
  --teal: #073B43;
  --red: #D71920;
  --gold: #D6A23A;
  --green: #078C45;
  --ivory: #F8F5EF;
  --white: #FFFFFF;
  --text: #0B1F33;
  --muted: #6B7280;
  --line: #E5E7EB;
  --shadow: 0 18px 45px rgba(6, 31, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-tight { padding: 44px 0; }
.eyebrow { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-title { margin: 6px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.05; color: var(--navy); }
.section-lead { max-width: 720px; margin: 0 0 28px; color: #334155; font-size: 1.06rem; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 160px; }
.brand img { width: 148px; height: 58px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .91rem; font-weight: 650; }
.nav-links a { position: relative; padding: 32px 0 28px; color: #14243a; }
.nav-links a.active, .nav-links a:hover { color: var(--red); }
.nav-links a.active::after, .nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 25px rgba(6,31,53,.16); }
.btn-primary { color: var(--white); background: var(--red); }
.btn-outline { color: var(--white); border-color: var(--gold); background: rgba(255,255,255,.06); }
.btn-light { color: var(--navy); background: var(--white); border-color: var(--line); }
.btn-dark { color: var(--white); background: var(--navy); }
.btn-gold { color: var(--navy); background: var(--gold); }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(214,162,58,.22), transparent 28%),
    linear-gradient(115deg, rgba(6,31,53,.98), rgba(7,59,67,.93));
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(30deg, var(--gold) 1px, transparent 1px),
    linear-gradient(150deg, var(--white) 1px, transparent 1px);
  background-size: 58px 58px;
}
.hero-inner { min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 42px; position: relative; z-index: 1; }
.hero h1, .page-hero h1 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: 0;
}
.hero .subtitle { color: var(--gold); font-weight: 800; font-size: 1.1rem; }
.hero .statement { margin: 12px 0; max-width: 620px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.12; }
.hero p { max-width: 600px; color: #E6EDF2; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-media { align-self: stretch; display: flex; align-items: end; justify-content: center; }
.hero-photo {
  width: min(520px, 100%);
  height: 560px;
  object-fit: cover;
  object-position: 68% 18%;
  border-radius: 44px 44px 0 0;
  border: 1px solid rgba(214,162,58,.55);
  box-shadow: var(--shadow);
}
.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow: hidden;
}
.value-item { padding: 18px 22px; background: rgba(6,31,53,.85); color: var(--white); }
.value-item b { color: var(--gold); display: block; }

.page-hero .container { min-height: 360px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 42px; position: relative; z-index: 1; }
.page-hero p { color: #E6EDF2; max-width: 620px; }
.page-hero .hero-photo { height: 340px; width: 100%; border-radius: 0 0 0 64px; object-position: 68% 16%; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(6,31,53,.06);
}
.card h3 { margin: 0 0 8px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.14; }
.icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  margin-bottom: 14px;
}
.icon.green { background: var(--green); }
.icon.red { background: var(--red); }
.icon.gold { background: var(--gold); color: var(--navy); }
.icon.blue { background: #155A9A; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; }
.split img { border-radius: 16px; min-height: 330px; width: 100%; object-fit: cover; object-position: 65% 18%; }
.soft { background: var(--ivory); }
.navy-band { background: linear-gradient(90deg,var(--navy),var(--teal)); color: var(--white); }
.navy-band .section-title, .navy-band h2, .navy-band h3 { color: var(--white); }
.navy-band p { color: #E6EDF2; }
.vision-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.16); }
.vision-strip div { padding: 28px; background: rgba(7,59,67,.75); }
.update-card img, .gallery-card img { width: 100%; height: 210px; object-fit: cover; object-position: 60% 20%; border-radius: 10px; margin-bottom: 16px; }
.meta { color: var(--muted); font-size: .86rem; font-weight: 700; }
.callout {
  border: 1px solid rgba(214,162,58,.65);
  border-radius: 14px;
  padding: 28px;
  background: linear-gradient(90deg,#fff, #fff7e8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-control { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--text); }
textarea.form-control { min-height: 126px; resize: vertical; }
.full { grid-column: 1 / -1; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th { background: var(--navy); color: #fff; text-align: left; }
th, td { padding: 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 26px; }
.filter-btn { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 15px; cursor: pointer; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--red); border-color: var(--red); }
.map-placeholder {
  min-height: 300px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(6,31,53,.12) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(135deg, transparent 75%, rgba(214,162,58,.18) 75%) 0 0 / 38px 38px,
    #edf2f7;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid var(--line);
}
.notice { display:none; margin-top: 12px; padding: 12px 14px; border-radius: 10px; background: #ecfdf5; color: #065f46; font-weight: 700; }

.site-footer { background: linear-gradient(90deg,var(--navy),var(--teal)); color: var(--white); padding-top: 54px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.15fr; gap: 34px; }
.footer-logo { width: 145px; height: 58px; object-fit: contain; margin-bottom: 14px; }
.site-footer h4 { margin: 0 0 14px; color: var(--white); letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.site-footer p, .site-footer a, .site-footer li { color: #DCE6ED; font-size: .94rem; }
.footer-links { list-style:none; padding:0; margin:0; columns:2; }
.footer-links li { margin-bottom: 7px; }
.socials { display:flex; gap:8px; flex-wrap:wrap; margin-top: 14px; }
.socials a { width:34px; height:34px; border-radius:50%; background:#fff; color:var(--navy); display:inline-flex; align-items:center; justify-content:center; font-weight:900; font-size:.78rem; }
.newsletter { display:flex; gap:0; margin-top: 12px; }
.newsletter input { min-width:0; border:0; padding:12px; border-radius:8px 0 0 8px; }
.newsletter button { border-radius:0 8px 8px 0; border:0; background:var(--red); color:#fff; padding:0 14px; font-weight:800; }
.footer-bottom { margin-top: 42px; padding: 18px 0; border-top:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:space-between; gap:16px; color:#dce6ed; font-size:.88rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-links a.active::after, .nav-links a:hover::after { display: none; }
  .nav-actions .btn { display: none; }
  .hero-inner, .page-hero .container, .split, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 50px 0 92px; }
  .hero-photo, .page-hero .hero-photo { height: 390px; border-radius: 22px; }
  .value-strip { margin-top: -48px; }
  .value-grid, .vision-strip, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .callout, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav-wrap { height: 76px; }
  .brand img { width: 124px; }
  .nav-links { top: 76px; }
  .hero h1, .page-hero h1 { font-size: 3rem; }
  .hero .statement { font-size: 1.45rem; }
  .form-grid, .grid { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  .newsletter { flex-direction: column; gap: 8px; }
  .newsletter input, .newsletter button { border-radius: 8px; min-height: 42px; }
}
