:root {
  --ink: #4d5151;
  --ink-strong: #273334;
  --muted: #697575;
  --bg: #f4fafa;
  --panel: #ffffff;
  --line: #d6e5e4;
  --mint: #19988b;
  --mint-bright: #37a4a4;
  --mint-pale: #e7f5f3;
  --mint-deep: #0e6e64;
  --amber: #f5cb08;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

a { color: var(--mint); }

/* ---------- Notice banner ---------- */
.notice {
  background: var(--amber);
  color: var(--ink-strong);
  text-align: center;
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.notice a { color: inherit; }

/* ---------- Header & nav ---------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--mint);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  color: var(--ink-strong);
  font-size: 1.05rem;
  line-height: 1.25;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

nav.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

nav.tabs a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
}

nav.tabs a:hover { background: var(--mint-pale); color: var(--mint-deep); }

nav.tabs a.active {
  background: var(--mint);
  color: #ffffff;
}

.header-call {
  text-decoration: none;
  background: var(--mint);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.header-call:hover { background: var(--mint-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 5.5rem 1rem;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14, 90, 82, 0.72), rgba(14, 90, 82, 0.72));
}

.hero > * { position: relative; }

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.2;
}

.hero p {
  margin: 1rem auto 0;
  max-width: 620px;
  font-size: 1.15rem;
  opacity: 0.95;
}

.hero .actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
}

.btn-solid { background: #ffffff; color: var(--mint-deep); }
.btn-solid:hover { background: var(--mint-pale); }

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

.btn-mint { background: var(--mint); color: #fff; }
.btn-mint:hover { background: var(--mint-deep); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--mint);
  color: #fff;
  text-align: center;
  padding: 2.75rem 1rem;
}

.page-hero h1 { font-size: 2rem; letter-spacing: -0.02em; }

.page-hero p { margin-top: 0.5rem; font-size: 1.05rem; opacity: 0.93; }

/* ---------- Layout ---------- */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

.section-title {
  color: var(--ink-strong);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
}

.card h3 {
  color: var(--ink-strong);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mint-pale);
  color: var(--mint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.card img.card-photo {
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split .split-body { padding: 2rem; }

.split .split-body h2 { margin-bottom: 0.65rem; }

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  .split img { min-height: 220px; }
  .hero h1 { font-size: 1.7rem; }
}

/* ---------- Info strip ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

/* ---------- Providers ---------- */
.provider-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
}

.provider-card .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--mint-pale);
}

.provider-card .avatar-initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--mint);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  border: 3px solid var(--mint-pale);
}

.provider-card h3 { color: var(--ink-strong); font-size: 1.2rem; }

.provider-card .role { color: var(--mint-deep); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }

.badge {
  display: inline-block;
  background: var(--mint-pale);
  color: var(--mint-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}

/* ---------- Tables ---------- */
.hours-table { width: 100%; border-collapse: collapse; }

.hours-table td { padding: 0.4rem 0; border-bottom: 1px solid var(--mint-pale); }

.hours-table td:last-child { text-align: right; }

.hours-table tr:last-child td { border-bottom: none; }

/* ---------- Checklist ---------- */
ul.checklist { list-style: none; }

ul.checklist li {
  padding: 0.4rem 0 0.4rem 1.9rem;
  position: relative;
}

ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  color: var(--mint);
  font-weight: 800;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--mint);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 2.5rem;
}

.cta-band h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.cta-band p { opacity: 0.93; margin-bottom: 1.25rem; }

/* ---------- Map ---------- */
.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink-strong);
  color: #cfe0de;
  margin-top: 3rem;
  padding: 2.5rem 1rem 2rem;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

footer h4 { color: #ffffff; margin-bottom: 0.6rem; font-size: 1rem; }

footer a { color: #8fd0c8; }

footer ul { list-style: none; }

footer li { padding: 0.15rem 0; }

.footer-bottom {
  max-width: 1080px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #3c4a4b;
  text-align: center;
  color: #9db4b2;
  font-size: 0.82rem;
}

/* ---------- Utility ---------- */
.spacer { height: 2.5rem; }

.note {
  background: var(--mint-pale);
  border-left: 4px solid var(--mint);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.15rem;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}
