:root {
  --ink: #243235;
  --muted: #596b70;
  --aqua: #dff4f5;
  --aqua-strong: #bde7e9;
  --green: #e3f3df;
  --green-strong: #b8dfb1;
  --beige: #fbf4e8;
  --peach: #fff1e8;
  --white: #ffffff;
  --line: #d6e5e6;
  --shadow: 0 14px 36px rgba(39, 76, 82, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.85;
  background: linear-gradient(180deg, #f8fcfc 0%, #fffaf2 100%);
}

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

a {
  color: #11666d;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid #f2b84b;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.6rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: cover;
  border: 2px solid #ef9bbc;
  border-radius: 16px;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0.5rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--aqua);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.15rem 0.65rem;
  color: #315c3b;
  font-weight: 800;
  background: var(--green);
  border: 1px solid var(--green-strong);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.15rem;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.button.primary {
  color: #073f45;
  background: var(--aqua-strong);
  border-color: #8bcfd3;
}

.button.phone {
  color: #234315;
  background: var(--green-strong);
  border-color: #9bca92;
}

.button.disabled {
  color: var(--muted);
  background: #f2f5f5;
  border-color: #d8e1e1;
  cursor: default;
}

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

.button.disabled:hover {
  transform: none;
}

.hero-card,
.card,
.notice-panel,
.hours-panel,
.download-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quick-links {
  padding: 1rem 0 2rem;
}

.quick-grid,
.card-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-link,
.card {
  padding: 1.1rem;
}

.quick-link {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(145deg, var(--white), #f3fbfb);
  border: 2px solid #b8dadd;
  border-radius: var(--radius);
  box-shadow: 0 9px 22px rgba(39, 76, 82, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.quick-link strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}

.quick-link span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-link .quick-link-action,
.button.card-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.3rem 0.75rem;
  color: #81314f;
  font-size: 0.92rem;
  font-weight: 800;
  background: #fff0f5;
  border: 1px solid #eaa0bb;
  border-radius: 999px;
}

.button.card-action {
  min-height: 0;
  margin-top: 0.75rem;
}

.button.card-action.reservation-action {
  color: #234315;
  background: #e8f6e4;
  border-color: #9bca92;
}

.download-card .button.card-action.reservation-action {
  flex-basis: 100%;
}

.button.card-action.reservation-action:hover {
  color: #18350e;
  background: #d4edce;
  border-color: #78b66d;
}

.quick-link:hover {
  border-color: #69b9c0;
  box-shadow: 0 13px 28px rgba(39, 76, 82, 0.17);
  transform: translateY(-3px);
}

.quick-link:hover .quick-link-action,
.button.card-action:hover {
  color: #6f1f40;
  background: #ffdce8;
  border-color: #dd759d;
}

.quick-link:focus-visible {
  outline: 3px solid #248895;
  outline-offset: 3px;
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: rgba(223, 244, 245, 0.38);
}

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

.section-head p {
  max-width: 680px;
  color: var(--muted);
}

.hours-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.hours-panel {
  overflow-x: auto;
}

.hours-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 1rem;
  background: var(--white);
}

.hours-table th,
.hours-table td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--line);
}

.hours-table th {
  background: var(--aqua);
}

.hours-table td:first-child,
.hours-table th:first-child {
  text-align: left;
  font-weight: 800;
}

.note-list {
  margin: 0;
  padding-left: 1.2rem;
}

.note-list li + li {
  margin-top: 0.45rem;
}

.notice-panel {
  padding: 1.2rem;
  background: var(--beige);
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-meta span {
  padding: 0.05rem 0.55rem;
  color: #315c3b;
  background: var(--green);
  border-radius: 999px;
}

.page-hero {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--aqua), var(--beige));
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 900px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 108px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-panel a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 800;
}

.download-card {
  padding: 1.1rem;
}

.download-card p {
  color: var(--muted);
}

.download-card .vaccine-price {
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  line-height: 1.65;
  background: #f0f8f6;
  border: 1px solid #cbe3db;
  border-radius: 12px;
}

.vaccine-price strong {
  color: #315c3b;
}

.map-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 1.2rem;
  text-align: center;
  background: var(--aqua);
  border: 2px dashed #85cbd0;
  border-radius: var(--radius);
}

.map-embed {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.map-actions {
  padding: 1rem;
  text-align: center;
}

.address-box {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 2rem 0;
  color: var(--muted);
  background: #f0f8f6;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  html {
    font-size: 17px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 0 0 1rem;
  }

  .nav-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .hero-grid,
  .hours-wrap,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .card-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.76rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 14px;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  .quick-grid,
  .card-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .action-row,
  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
