:root {
  --green-900: #064a18;
  --green-800: #0d751e;
  --green-700: #168b2d;
  --green-500: #30ad4d;
  --yellow: #fff23b;
  --cream: #fffbe7;
  --paper: #ffffff;
  --ink: #1e2b20;
  --muted: #617064;
  --line: rgba(13, 117, 30, .16);
  --shadow: 0 24px 80px rgba(6, 74, 24, .18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 242, 59, .38), transparent 28rem),
    linear-gradient(180deg, #f8fff5 0%, #fffdf2 42%, #f4fbf1 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .22;
}

.header-stripe {
  height: 16px;
  background: linear-gradient(90deg, var(--green-900), var(--green-500) 42%, var(--yellow) 42%, var(--yellow));
}

.header-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px 1fr 210px;
  gap: 34px;
  align-items: center;
  padding: 40px 0 46px;
}

.brand-mark {
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.brand-mark--hands {
  align-self: center;
  background: var(--yellow);
}

.brand-mark--hands img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-mark--logo {
  border-radius: 18px;
}

.brand-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-copy h1,
.section-head h2,
.map-grid h2 {
  margin: 0;
  line-height: 1.04;
}

.brand-copy h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(0,0,0,.13);
}

.lead {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.58;
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  box-shadow: 0 12px 28px rgba(13, 117, 30, .28);
}

.button--light {
  color: var(--green-900);
  background: var(--yellow);
}

.button--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.section {
  padding: 58px 0;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.notice-card,
.department-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.notice-card {
  position: relative;
  padding: 26px;
}

.notice-card h2,
.department-card h3 {
  margin: 0 0 10px;
}

.notice-card p,
.department-card p,
.map-grid p,
.footer p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.status-dot {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #35d25d;
  box-shadow: 0 0 0 8px rgba(53, 210, 93, .14);
}

.departments-section {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.92)),
    url("assets/img/map-bg.jpg") center / cover;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head .eyebrow,
.map-grid .eyebrow {
  color: var(--green-700);
}

.section-head h2,
.map-grid h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-900);
}

.search {
  display: grid;
  gap: 8px;
  min-width: min(420px, 100%);
  color: var(--muted);
  font-size: .92rem;
}

.search input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 74, 24, .08);
  outline: none;
}

.search input:focus {
  border-color: var(--green-700);
}

.departments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.department-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.department-card h3 {
  color: var(--green-900);
  font-size: 1.12rem;
}

.city {
  display: inline-flex;
  margin-bottom: 10px !important;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-900) !important;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255, 242, 59, .7);
}

.address {
  font-weight: 700;
}

.note {
  margin-top: 8px !important;
  font-size: .92rem;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 156px;
}

.phones a {
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
  background: #eef9ed;
}

.phones a:hover {
  color: #fff;
  background: var(--green-800);
}

.empty-state {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--green-900);
  background: rgba(255, 242, 59, .38);
}

.map-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.map-grid p {
  margin: 18px 0 22px;
  font-size: 1.05rem;
}

.map-card {
  overflow: hidden;
  min-height: 380px;
  background: #eef5ea;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer {
  padding: 30px 0;
  color: #fff;
  background: var(--green-900);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255,255,255,.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: 96px 1fr;
  }

  .brand-mark--logo {
    display: none;
  }

  .notice-grid,
  .departments,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 34px;
  }

  .brand-mark--hands {
    display: none;
  }

  .hero-actions,
  .footer-grid {
    display: grid;
  }

  .section {
    padding: 38px 0;
  }

  .department-card {
    display: grid;
  }

  .phones {
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
