:root {
  color-scheme: light;
  --ink: #16232a;
  --muted: #5a6870;
  --teal: #007f7d;
  --teal-dark: #005f61;
  --coral: #d94f70;
  --cream: #faf7f1;
  --paper: #ffffff;
  --mist: #e8f4f1;
  --line: #d8e2df;
  --shadow: 0 18px 45px rgba(22, 35, 42, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
dd,
li {
  overflow-wrap: anywhere;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

address {
  font-style: normal;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 226, 223, 0.7);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: sticky;
}

.header-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 112px;
  height: auto;
}

.brand-copy {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--ink);
}

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

.nav-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--teal);
  color: white !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  padding: 56px 0 48px;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 44px;
}

.hero-copy h1,
.page-hero h1 {
  font-size: 2.7rem;
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--teal);
  color: white;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: white;
  color: var(--teal-dark);
  border-color: var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-facts div {
  min-height: 90px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts dt {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(22, 35, 42, 0.18);
}

.status-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-panel strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  line-height: 1.45;
}

.notice-band {
  padding: 32px 0;
  background: var(--ink);
  color: white;
}

.notice-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: start;
}

.notice-grid h2 {
  margin-bottom: 0;
}

.notice-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #eaf2f0;
}

.section {
  padding: 76px 0;
  background: var(--paper);
}

.section.muted {
  background: var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.split h2,
.doctor-grid h2,
.hours-grid h2,
.access-grid h2,
.faq-grid h2,
.standards h2 {
  font-size: 2rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-head p,
.split p,
.doctor-grid p,
.hours-grid p {
  color: var(--muted);
}

.service-grid,
.feature-grid,
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.standards-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-label {
  display: inline-block;
  color: var(--coral);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3,
.feature-card h3,
.standards-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p,
.feature-card p,
.standards-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.split,
.doctor-grid,
.hours-grid,
.access-grid,
.faq-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.feature-card div {
  padding: 20px;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-list,
.access-list,
.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.profile-list li,
.access-list li,
.check-list li {
  margin: 8px 0;
}

.note,
.table-note {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.hours-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: center;
}

.hours-table th,
.hours-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.hours-table thead th {
  background: var(--teal);
  color: white;
}

.hours-table tbody th {
  color: var(--teal-dark);
  text-align: left;
}

.hours-table tbody td {
  font-weight: 800;
}

.table-note {
  padding: 14px 16px;
  margin: 0;
}

.map-frame {
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.standards {
  background: #f8fbfa;
}

.page-hero {
  padding: 62px 0;
  background: var(--cream);
}

.page-hero-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vaccine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vaccine-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-weight: 800;
}

.callout {
  padding: 24px;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: white;
}

.callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.site-footer {
  padding: 44px 0 92px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-grid img {
  width: 120px;
  height: auto;
  background: white;
  border-radius: 8px;
}

.footer-grid p {
  color: #d9e2df;
  margin: 10px 0 0;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: #9de2d7;
}

.footer-phone {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 900;
}

.copyright {
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 0;
  color: #c8d4d0;
  font-size: 0.86rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--teal-dark);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: white;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 21;
    display: block !important;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    width: 100vw;
    padding: 18px 16px 28px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-call {
    justify-content: center;
  }

  .hero-grid,
  .split,
  .doctor-grid,
  .hours-grid,
  .access-grid,
  .faq-grid,
  .page-hero-grid,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .hero-facts,
  .service-grid,
  .feature-grid,
  .standards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 24px), var(--max));
  }

  .brand-copy {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 34px 0 36px;
  }

  .section {
    padding: 54px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 1.64rem;
    word-break: break-all;
  }

  .lead,
  .hero-facts dd,
  .notice-list li,
  .service-card p,
  .feature-card p {
    word-break: break-all;
  }

  .section-head h2,
  .split h2,
  .doctor-grid h2,
  .hours-grid h2,
  .access-grid h2,
  .faq-grid h2,
  .standards h2 {
    font-size: 1.55rem;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .status-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .service-card,
  .standards-grid article {
    padding: 20px;
  }

  .mobile-cta {
    display: grid;
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: 33.333vw 33.333vw 33.334vw;
  }

  .mobile-cta a {
    min-width: 0;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
