:root {
  --blue: #1848a0;
  --sky: #1c98ed;
  --sky-soft: #e9f4fe;
  --yellow: #ffda0d;
  --ink: #12305c;
  --muted: #56678a;
  --light: #f6fbff;
  --cream: #fbf7ef;
  --line: #dbe8f8;
  --line-soft: #eef4fb;
  --shadow: 0 18px 44px rgba(24, 72, 160, 0.14);
  --shadow-soft: 0 10px 30px rgba(24, 72, 160, 0.08);
  --radius: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Nunito, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }

/* ---------- Closure banner ---------- */
.closure-banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
}
.closure-banner strong { color: var(--yellow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
  padding: 10px clamp(18px, 5vw, 40px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}
.brand img { width: 64px; height: 60px; object-fit: contain; }
nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px);
  justify-content: center;
  color: var(--sky);
  font-weight: 800;
  font-size: 16px;
}
nav a {
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--blue); border-color: var(--yellow); }
.header-note {
  justify-self: end;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  text-align: right;
  line-height: 1.3;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(24, 72, 160, 0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(24, 72, 160, 0.24); }
.button-secondary { background: #fff; color: var(--blue); box-shadow: var(--shadow-soft); }
.button-light { background: #fff; color: var(--blue); border-color: #fff; }

/* ---------- Sections ---------- */
section { padding: clamp(48px, 8vw, 92px) 0; }
.part-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--sky);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}
h1, h2, h3 { margin-top: 0; color: var(--blue); }
h1 { margin-bottom: 18px; font-size: clamp(38px, 6vw, 64px); line-height: 1.04; letter-spacing: -0.5px; }
h2 { margin-bottom: 16px; font-size: clamp(28px, 4.4vw, 44px); line-height: 1.12; letter-spacing: -0.3px; }
h3 { font-size: 22px; line-height: 1.25; margin-bottom: 10px; }
p { margin-top: 0; }
.lead { font-size: clamp(18px, 2.4vw, 21px); color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-soft) 100%);
  padding-top: clamp(40px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { color: var(--blue); }
.hero .lead { color: #38507c; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-figure { margin: 0; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat b { display: block; font-size: 30px; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat span { font-size: 14px; color: var(--muted); font-weight: 700; }

/* ---------- Bands ---------- */
.band-blue { background: var(--blue); color: #fff; }
.band-blue h2, .band-blue h3, .band-blue .part-label { color: #fff; }
.band-blue .part-label { color: #bfe0ff; }
.band-blue p { color: #dceaff; }
.band-cream { background: var(--cream); }
.band-sky { background: var(--sky-soft); }

/* ---------- Split (alternating image/text) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { margin: 0; }
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); }
.split-copy p + p { margin-top: 14px; }

/* short-answer callout */
.callout {
  background: var(--sky-soft);
  border-left: 4px solid var(--sky);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
}
.band-blue .callout {
  background: rgba(255,255,255,0.12);
  border-left-color: var(--yellow);
  color: #fff;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.card .pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; margin-top: 8px; max-width: 760px; }
.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-year { font-weight: 900; color: var(--sky); font-size: 20px; }
.tl-body h3 { margin-bottom: 6px; font-size: 19px; }
.tl-body p { margin: 0; color: var(--muted); }

/* ---------- Info table (NAP / details) ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.info-table th, .info-table td {
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th { width: 38%; color: var(--blue); font-weight: 800; background: var(--light); }
.info-table td { color: var(--ink); }
.info-table a { color: var(--blue); font-weight: 800; text-decoration: none; }
.info-table a:hover { text-decoration: underline; }

/* ---------- Farewell quote ---------- */
.farewell {
  text-align: center;
}
.farewell blockquote {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.4;
  font-weight: 800;
  color: #fff;
  font-style: normal;
}
.farewell .attrib { margin-top: 22px; color: #cfe3ff; font-weight: 700; font-size: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--blue);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; color: var(--sky); font-weight: 700; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { color: var(--blue); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq .faq-body p { margin: 0; }
.faq .faq-body a { color: var(--blue); font-weight: 800; }

/* ---------- CTA / live-on ---------- */
.liveon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.liveon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.liveon-card h3 { margin-bottom: 6px; }
.liveon-card .addr { color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.liveon-card .button { margin-top: 4px; }

/* ---------- Map ---------- */
.map-frame {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfe0f5;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.site-footer h4 { color: #fff; font-size: 17px; margin: 0 0 12px; }
.site-footer p, .site-footer a { color: #b9cce6; font-size: 15px; text-decoration: none; line-height: 1.7; }
.site-footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 52px; height: 48px; object-fit: contain; }
.footer-brand strong { color: #fff; font-size: 18px; }
.footer-links-col a { display: block; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: #93a9c8;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; gap: 10px; text-align: center; }
  .header-note { justify-self: center; text-align: center; }
  .hero-grid, .split, .split.reverse, .liveon-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .hero-figure { order: -1; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  nav { gap: 12px 18px; font-size: 15px; }
  .brand span { font-size: 16px; }
  .stat-strip { gap: 10px; }
  .stat b { font-size: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .tl-year { font-size: 18px; }

  /* table -> cards reflow */
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table { border: 0; box-shadow: none; }
  .info-table tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 6px 4px;
    box-shadow: var(--shadow-soft);
  }
  .info-table th {
    width: 100%;
    background: transparent;
    padding: 12px 18px 2px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 0;
  }
  .info-table td { padding: 0 18px 14px; border: 0; font-size: 17px; font-weight: 700; }
}
