:root {
  --bg: #fffaf4;
  --surface: #ffffff;
  --ink: #1f2430;
  --muted: #5c6578;
  --line: #eadfce;
  --brand: #0f7a6c;
  --brand-dark: #0b5b51;
  --accent: #ef8b3a;
  --accent-soft: #fff1e3;
  --sky: #dff3f0;
  --shadow: 0 18px 40px rgba(31, 36, 48, 0.08);
  --radius: 22px;
  --max: 1120px;
  --font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 122, 108, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(239, 139, 58, 0.12), transparent 24%),
    var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.topbar {
  background: rgba(255, 250, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: inherit;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), #149887);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(15, 122, 108, 0.28);
}
.brand-text strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.brand-text span { color: var(--muted); font-size: .88rem; }

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav a {
  color: var(--ink);
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--sky);
  color: var(--brand-dark);
  text-decoration: none;
}
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  margin-left: .35rem;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: .65rem .85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  padding: 3.5rem 0 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 1.5rem;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.card,
.stat,
.notice,
.contact-card,
.program,
.pride {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy { padding: 2.2rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-soft);
  color: #9a4d10;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .8rem; }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-secondary { background: var(--accent-soft); color: #9a4d10; border-color: #f3d3b2; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }

.hero-panel {
  padding: 1.4rem;
  background:
    linear-gradient(160deg, rgba(15, 122, 108, 0.92), rgba(15, 122, 108, 0.72)),
    radial-gradient(circle at top right, rgba(239, 139, 58, 0.45), transparent 40%);
  color: #fff;
  border: none;
}
.hero-panel h2 { color: #fff; }
.hero-panel p { color: rgba(255,255,255,.9); }
.hero-facts {
  display: grid;
  gap: .8rem;
  margin-top: 1.2rem;
}
.hero-facts div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: .9rem 1rem;
}
.hero-facts strong { display: block; font-size: 1.05rem; }

.section { padding: 1.4rem 0 2.6rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}
.section-head p { margin: 0; color: var(--muted); max-width: 34rem; }

.grid-3, .grid-2, .stats { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.stats { grid-template-columns: repeat(4, 1fr); margin: 1.2rem 0 0; }

.card, .stat, .program, .pride, .contact-card, .notice { padding: 1.25rem; }
.card p, .program p, .pride p, .contact-card p { color: var(--muted); margin: 0; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: .25rem;
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: .9rem;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: linear-gradient(90deg, #fff7eb, #fff);
  border-color: #f1d4b0;
}
.notice-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  padding: .55rem .7rem;
  white-space: nowrap;
}
.list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.list li + li { margin-top: .45rem; }

.page-hero {
  padding: 2.6rem 0 1rem;
}
.page-hero .lead { margin-bottom: 0; }
.breadcrumbs {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: .8rem;
}
.breadcrumbs a { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}
.soft {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid #cfe8e3;
}
.soft h3 { margin-top: 0; }

.cta-band {
  margin: 1rem 0 2.5rem;
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(120deg, rgba(15, 122, 108, 0.95), rgba(20, 152, 135, 0.88)),
    var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.9); max-width: 40rem; }
.cta-band .btn-secondary { background: #fff; color: var(--brand-dark); border-color: #fff; }

.footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.2rem;
}
.footer h3 { font-size: 1rem; }
.footer p, .footer a { color: var(--muted); }
.footer a:hover { color: var(--brand-dark); }
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .stats,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: .6rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-cta { margin-left: 0; }
  .section-head { flex-direction: column; align-items: start; }
  .notice { grid-template-columns: 1fr; }
}