@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --ink: #172019;
  --muted: #677068;
  --forest: #284634;
  --forest-2: #355c45;
  --lime: #c8ec3d;
  --lime-dark: #9fc21b;
  --cream: #f6f6ef;
  --paper: #ffffff;
  --sage: #e8eee6;
  --line: #dfe5dd;
  --coral: #ef7c66;
  --shadow: 0 24px 70px rgba(28, 51, 36, .10);
  --radius: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--lime-dark); }
.display {
  margin: 14px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.045em;
}
.section-title {
  margin: 10px 0 0;
  max-width: 700px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.section-copy { max-width: 620px; color: var(--muted); font-size: 17px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 36px; }
.section { padding: 104px 0; }
.surface { background: var(--paper); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(23, 32, 25, .08);
  background: rgba(246, 246, 239, .92);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px 4px 11px 4px;
  background: var(--lime);
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}
.brand-name { line-height: 1; }
.brand-name small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-size: 14px; font-weight: 600; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--forest);
  transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--forest); color: white; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { padding: 38px 0 74px; }
.hero-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 36px;
  background: #dfe8df;
  box-shadow: var(--shadow);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,248,242,.98) 0%, rgba(246,248,242,.93) 38%, rgba(246,248,242,.28) 63%, rgba(246,248,242,0) 100%); }
.hero-content { position: relative; z-index: 1; width: 54%; padding: 82px 0 68px 68px; }
.hero-content p { max-width: 510px; margin: 24px 0 34px; color: #4f5d52; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--forest-2); }
.btn-light { background: rgba(255,255,255,.72); color: var(--forest); }
.btn-light:hover { background: white; }
.btn-lime { border-color: var(--lime); background: var(--lime); color: var(--forest); }
.btn-lime:hover { background: #d5f45f; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 250px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.hero-note strong { display: block; font-family: "Newsreader", Georgia, serif; font-size: 20px; }
.hero-note span { color: var(--muted); font-size: 12px; }

.quick-search {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 48px));
  margin: -46px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 55px rgba(34, 60, 42, .14);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}
.field { position: relative; }
.field label { position: absolute; top: 10px; left: 16px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field select, .field input {
  width: 100%;
  height: 66px;
  padding: 23px 42px 5px 16px;
  border: 0;
  border-radius: 14px;
  outline: 0;
  background: var(--cream);
  color: var(--ink);
  font-weight: 600;
}
.quick-search .btn { min-height: 66px; border-radius: 14px; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(37,70,48,.10); }
.category-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--sage); color: var(--forest); }
.category-card:nth-child(2) .category-icon { background: #edf5c7; }
.category-card:nth-child(3) .category-icon { background: #f7e8e2; }
.category-card h3 { margin: 45px 0 8px; font-family: "Newsreader", Georgia, serif; font-size: 30px; font-weight: 500; }
.category-card p { margin: 0; color: var(--muted); font-size: 14px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--forest); font-size: 13px; font-weight: 700; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { overflow: hidden; border-radius: 24px; background: white; border: 1px solid var(--line); }
.article-image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--sage); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-image img { transform: scale(1.035); }
.article-body { padding: 24px 24px 26px; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--sage); color: var(--forest); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-body h3 { margin: 15px 0 11px; font-family: "Newsreader", Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.08; }
.article-body p { margin: 0; color: var(--muted); font-size: 14px; }
.meta { display: flex; gap: 14px; margin-top: 20px; color: #8a918b; font-size: 11px; font-weight: 600; }

.find-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--forest);
  color: white;
}
.find-banner::after { content: ""; position: absolute; width: 420px; height: 420px; right: -110px; top: -170px; border-radius: 50%; background: var(--lime); opacity: .92; }
.find-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; padding: 68px; }
.find-banner .section-title { color: white; }
.find-banner p { max-width: 520px; color: #ced9d0; }
.place-list { display: grid; gap: 10px; align-content: center; }
.place-chip { display: flex; align-items: center; gap: 12px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); }
.place-chip span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--lime); color: var(--forest); }

.newsletter { padding: 72px 0; border-top: 1px solid var(--line); }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.newsletter h2 { margin: 0; font-family: "Newsreader", Georgia, serif; font-size: 36px; font-weight: 500; }
.newsletter p { margin: 4px 0 0; color: var(--muted); }
.newsletter-form { display: flex; width: min(440px, 100%); gap: 8px; }
.newsletter-form input { flex: 1; min-width: 0; height: 52px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: white; outline: 0; }

.site-footer { padding: 58px 0 28px; background: #172019; color: white; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; }
.site-footer .brand-mark { color: var(--forest); }
.footer-about { max-width: 410px; color: #aab7ad; font-size: 13px; }
.footer-links { display: flex; gap: 68px; }
.footer-column h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { display: block; margin: 8px 0; color: #aab7ad; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #7f8d82; font-size: 11px; }

/* Blog */
.page-hero { padding: 74px 0 52px; }
.page-hero-row { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.page-hero .display { max-width: 750px; }
.page-hero p { max-width: 420px; color: var(--muted); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-pill { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-pill.active, .filter-pill:hover { border-color: var(--forest); background: var(--forest); color: white; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 54px; }
.blog-list { display: grid; gap: 22px; }
.blog-item { display: grid; grid-template-columns: 280px minmax(0,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; }
.blog-item[hidden] { display: none; }
.blog-item img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }
.blog-item-content { padding: 28px; }
.blog-item h2 { margin: 14px 0 10px; font-family: "Newsreader", Georgia, serif; font-size: 30px; font-weight: 500; line-height: 1.08; }
.blog-item p { margin: 0; color: var(--muted); font-size: 14px; }
.sidebar { position: sticky; top: 106px; height: max-content; }
.sidebar-card { margin-bottom: 18px; padding: 23px; border-radius: 20px; background: white; border: 1px solid var(--line); }
.sidebar-card h3 { margin: 0 0 14px; font-family: "Newsreader", Georgia, serif; font-size: 24px; font-weight: 500; }
.topic-list a { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.topic-list a:last-child { border: 0; }

/* Article */
.article-shell { width: min(calc(100% - 48px), 980px); margin: 0 auto; }
.article-header { padding: 66px 0 36px; text-align: center; }
.article-header h1 { max-width: 820px; margin: 20px auto 18px; font-family: "Newsreader", Georgia, serif; font-size: clamp(48px, 7vw, 76px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.article-header .meta { justify-content: center; }
.article-hero { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 52px; padding: 68px 0 110px; }
.toc { position: sticky; top: 110px; align-self: start; }
.toc strong { display: block; margin-bottom: 14px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.toc a { display: block; margin: 9px 0; color: var(--muted); font-size: 12px; }
.article-content { color: #344038; font-size: 17px; }
.article-content .lead { margin-top: 0; color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 27px; line-height: 1.35; }
.article-content h2 { scroll-margin-top: 110px; margin: 58px 0 16px; color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 37px; font-weight: 500; line-height: 1.08; }
.article-content h3 { margin: 30px 0 8px; color: var(--ink); font-size: 18px; }
.article-content p { margin: 0 0 20px; }
.info-box { margin: 34px 0; padding: 25px 28px; border-left: 4px solid var(--lime-dark); border-radius: 0 18px 18px 0; background: var(--sage); }
.info-box strong { display: block; margin-bottom: 7px; color: var(--forest); }
.step-list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.step-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.step-list span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--lime); color: var(--forest); font-size: 12px; font-weight: 800; }
.article-cta { margin-top: 54px; padding: 34px; border-radius: 24px; background: var(--forest); color: white; }
.article-cta h3 { margin-top: 0; color: white; font-family: "Newsreader", Georgia, serif; font-size: 30px; font-weight: 500; }
.article-cta p { color: #cad7cd; }
.disclaimer { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: #848d86; font-size: 12px; }

/* Places */
.places-hero { padding: 62px 0 34px; text-align: center; }
.places-hero .display { max-width: 820px; margin-inline: auto; }
.places-hero p { max-width: 600px; margin: 22px auto; color: var(--muted); }
.finder-shell { margin-bottom: 100px; padding: 16px; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.finder-grid { display: grid; grid-template-columns: 410px minmax(0, 1fr); min-height: 610px; }
.finder-panel { padding: 34px; }
.finder-panel h2 { margin: 0 0 7px; font-family: "Newsreader", Georgia, serif; font-size: 34px; font-weight: 500; }
.finder-panel > p { margin: 0 0 27px; color: var(--muted); font-size: 13px; }
.finder-options { display: grid; gap: 10px; }
.finder-option { position: relative; }
.finder-option input { position: absolute; opacity: 0; pointer-events: none; }
.finder-option label { display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: .2s ease; }
.finder-option label span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--sage); }
.finder-option label strong { display: block; font-size: 13px; }
.finder-option label small { display: block; color: var(--muted); font-size: 11px; }
.finder-option input:checked + label { border-color: var(--forest); background: #f2f6ee; box-shadow: inset 0 0 0 1px var(--forest); }
.city-input { margin-top: 22px; }
.city-input label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.city-input input { width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; }
.city-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.city-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--muted); font-size: 10px; font-weight: 700; cursor: pointer; }
.city-chip:hover { border-color: var(--forest); color: var(--forest); }
.finder-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 22px; }
.finder-actions .btn { border-radius: 13px; }
.locate-btn { width: auto; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: white; color: var(--forest); font-size: 11px; font-weight: 700; cursor: pointer; }
.map-preview { position: relative; overflow: hidden; border-radius: 22px; background: #e7eee4; }
.map-pattern { position: absolute; inset: 0; opacity: .64; background-image: linear-gradient(30deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 52%, transparent 53%), linear-gradient(-25deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 52%, transparent 53%); background-size: 170px 120px, 220px 150px; }
.map-river { position: absolute; top: -10%; left: 48%; width: 130px; height: 120%; transform: rotate(14deg); background: #cadfe4; }
.map-pin { position: absolute; display: grid; place-items: center; width: 42px; height: 42px; border: 5px solid white; border-radius: 50% 50% 50% 0; background: var(--forest); color: white; transform: rotate(-45deg); box-shadow: 0 8px 18px rgba(30,60,40,.23); }
.map-pin span { transform: rotate(45deg); font-size: 12px; font-weight: 800; }
.pin-1 { left: 28%; top: 28%; }
.pin-2 { left: 61%; top: 38%; background: var(--lime-dark); }
.pin-3 { left: 44%; top: 67%; background: var(--coral); }
.map-card { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 22px; border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 18px 40px rgba(31,56,38,.16); backdrop-filter: blur(12px); }
.map-card .eyebrow { font-size: 9px; }
.map-card h3 { margin: 8px 0 4px; font-family: "Newsreader", Georgia, serif; font-size: 27px; font-weight: 500; }
.map-card p { margin: 0; color: var(--muted); font-size: 12px; }
.map-card .btn { width: 100%; margin-top: 16px; min-height: 46px; }
.finder-note { margin: 16px 8px 0; color: var(--muted); font-size: 11px; text-align: center; }
.finder-note strong { color: var(--ink); }
.toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; padding: 14px 18px; border-radius: 14px; background: var(--forest); color: white; font-size: 13px; box-shadow: var(--shadow); transform: translateY(120px); opacity: 0; transition: .3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }

/* Clinic map */
.map-hero { padding-bottom: 42px; }
.map-hero .display { font-size: clamp(46px, 5.5vw, 76px); }
.clinic-map-section { margin-bottom: 110px; }
.clinic-filter-panel {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(28, 51, 36, .07);
}
.clinic-filter-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.clinic-filter-heading h2 { margin: 7px 0 0; font-family: "Newsreader", Georgia, serif; font-size: 30px; font-weight: 500; line-height: 1.1; }
.map-reset-button, .clinic-map-toolbar button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.clinic-filter-grid { display: grid; grid-template-columns: 150px 180px minmax(210px, 1fr) auto auto; gap: 10px; align-items: end; }
.clinic-filter-grid label { min-width: 0; }
.clinic-filter-grid label > span { display: block; margin: 0 0 7px 2px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.clinic-filter-grid input, .clinic-filter-grid select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); outline: none; }
.clinic-filter-grid input:focus, .clinic-filter-grid select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(40, 70, 52, .1); }
.clinic-search-button { min-height: 50px; padding-inline: 20px; border-radius: 12px; }
.clinic-location-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 7px; padding: 0 15px; border: 1px solid var(--forest); border-radius: 12px; background: white; color: var(--forest); font-size: 12px; font-weight: 700; cursor: pointer; }
.clinic-location-button[aria-busy="true"], .clinic-filter-grid[aria-busy="true"] button { opacity: .55; pointer-events: none; }
.clinic-map-shell { display: grid; grid-template-columns: minmax(330px, .78fr) minmax(0, 1.45fr); min-height: 670px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.clinic-results-panel { display: flex; min-width: 0; max-height: 720px; flex-direction: column; border-right: 1px solid var(--line); }
.clinic-results-header { display: flex; justify-content: space-between; align-items: start; gap: 14px; padding: 25px 25px 19px; border-bottom: 1px solid var(--line); }
.clinic-results-kicker { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.clinic-results-header h2 { margin: 4px 0 0; font-family: "Newsreader", Georgia, serif; font-size: 25px; font-weight: 500; }
.clinic-results-header h2 strong { color: var(--forest); }
.clinic-data-label { flex: none; padding: 6px 9px; border-radius: 999px; background: var(--sage); color: var(--forest); font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.clinic-results-status { margin: 14px 18px 0; padding: 11px 12px; border-radius: 11px; background: #f0f5ec; color: var(--forest); font-size: 12px; }
.clinic-results-status[hidden] { display: none; }
.clinic-results-status[data-kind="warning"] { background: #fff5df; color: #795b19; }
.clinic-list { flex: 1; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.clinic-result-card { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; padding: 21px 24px; border-bottom: 1px solid var(--line); background: white; cursor: pointer; transition: background .18s ease, box-shadow .18s ease; }
.clinic-result-card:hover, .clinic-result-card:focus-visible, .clinic-result-card.is-active { background: #f3f7ef; box-shadow: inset 3px 0 0 var(--forest); outline: 0; }
.clinic-card-index { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--sage); color: var(--forest); font-size: 10px; font-weight: 800; }
.clinic-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--forest-2); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.clinic-card-meta span + span { color: var(--muted); font-weight: 600; text-transform: none; }
.clinic-result-card h3 { margin: 6px 0 5px; font-family: "Newsreader", Georgia, serif; font-size: 22px; font-weight: 500; line-height: 1.15; }
.clinic-result-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.clinic-result-card .clinic-original { margin-top: 5px; color: #929a93; font-size: 10px; }
.clinic-card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; color: var(--muted); font-size: 11px; }
.clinic-card-actions a { color: var(--forest); font-weight: 700; }
.clinic-card-actions button { margin-left: auto; padding: 7px 10px; border: 0; border-radius: 8px; background: var(--forest); color: white; font-size: 10px; font-weight: 700; cursor: pointer; }
.clinic-empty-state { display: grid; place-items: center; min-height: 230px; padding: 30px; color: var(--muted); text-align: center; }
.clinic-empty-state strong { color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 22px; font-weight: 500; }
.clinic-map-panel { display: flex; min-width: 0; flex-direction: column; background: #eef3ea; }
.clinic-map-toolbar { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 20px; border-bottom: 1px solid var(--line); background: white; }
.clinic-map-toolbar strong, .clinic-map-toolbar span { display: block; }
.clinic-map-toolbar strong { font-size: 13px; }
.clinic-map-toolbar span { color: var(--muted); font-size: 10px; }
.clinic-map-canvas { position: relative; flex: 1; min-height: 550px; overflow: hidden; background: #e5eee4; }
.clinic-map-placeholder { position: absolute; z-index: 5; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 30px; background: radial-gradient(circle at 60% 35%, rgba(200,236,61,.24), transparent 30%), linear-gradient(135deg, #edf3e9, #dfe9e0); color: var(--muted); text-align: center; }
.clinic-map-placeholder[hidden] { display: none; }
.clinic-map-placeholder strong { color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 25px; font-weight: 500; }
.map-placeholder-mark { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 17px 6px; background: var(--lime); color: var(--forest); font-family: "Newsreader", Georgia, serif; font-size: 28px; font-weight: 600; }
.clinic-map-note { margin: 0; padding: 12px 18px; border-top: 1px solid var(--line); background: white; color: var(--muted); font-size: 10px; }
.kakao-clinic-info { width: 260px; padding: 16px; color: var(--ink); font-family: "DM Sans", Arial, sans-serif; line-height: 1.4; white-space: normal; }
.kakao-clinic-info strong, .kakao-clinic-info span { display: block; }
.kakao-clinic-info strong { margin-bottom: 5px; font-family: "Newsreader", Georgia, serif; font-size: 19px; }
.kakao-clinic-info span { color: var(--muted); font-size: 11px; }
.kakao-clinic-info small { display: block; margin-top: 5px; color: #879087; font-size: 9px; }
.kakao-clinic-info div { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.kakao-clinic-info a { color: var(--forest); font-size: 11px; font-weight: 700; }

@media (max-width: 920px) {
  .main-nav { position: fixed; inset: 78px 0 auto; display: none; padding: 22px 24px 28px; border-bottom: 1px solid var(--line); background: var(--cream); flex-direction: column; align-items: stretch; gap: 20px; }
  .main-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .menu-toggle { display: block; }
  .hero-card { min-height: 650px; }
  .hero-content { width: 67%; padding-left: 44px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(246,248,242,.98) 0%, rgba(246,248,242,.86) 50%, rgba(246,248,242,.15) 86%); }
  .hero-note { display: none; }
  .category-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid .article-card:last-child { grid-column: 1 / -1; }
  .find-banner-inner { grid-template-columns: 1fr; padding: 48px; }
  .place-list { grid-template-columns: repeat(3, 1fr); }
  .place-chip { align-items: start; flex-direction: column; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .finder-grid { grid-template-columns: 350px minmax(0,1fr); }
  .clinic-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clinic-query-field { grid-column: 1 / -1; }
  .clinic-map-shell { grid-template-columns: 320px minmax(0, 1fr); }
}

@media (max-width: 700px) {
  .container, .article-shell { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-head, .page-hero-row, .newsletter-inner, .footer-top { align-items: start; flex-direction: column; }
  .hero { padding-top: 14px; }
  .hero-card { min-height: 700px; border-radius: 24px; }
  .hero-media { object-position: 66% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(246,248,242,.97) 0%, rgba(246,248,242,.86) 48%, rgba(246,248,242,.05) 82%); }
  .hero-content { width: 100%; padding: 48px 24px; }
  .hero-content .display { font-size: 43px; overflow-wrap: anywhere; }
  .hero-content p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .quick-search { width: calc(100% - 28px); margin-top: -88px; grid-template-columns: 1fr; }
  .quick-search .field { display: none; }
  .quick-search .btn { width: 100%; padding-inline: 12px; font-size: 14px; }
  .category-grid, .article-grid { grid-template-columns: 1fr; }
  .article-grid .article-card:last-child { grid-column: auto; }
  .category-card { min-height: 230px; }
  .find-banner-inner { padding: 38px 24px; }
  .place-list { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-links { width: 100%; justify-content: space-between; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .blog-item { grid-template-columns: 1fr; }
  .blog-item img { min-height: 210px; }
  .sidebar { grid-template-columns: 1fr; }
  .article-header { padding-top: 48px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 42px; }
  .toc { position: static; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; }
  .finder-shell { padding: 8px; border-radius: 23px; }
  .finder-grid { grid-template-columns: 1fr; }
  .finder-panel { padding: 24px 18px 28px; }
  .finder-panel h2 { font-size: 30px; }
  .places-hero .display { font-size: 43px; }
  .places-hero { padding-top: 46px; }
  .finder-actions { grid-template-columns: 1fr; }
  .finder-actions .locate-btn { width: 100%; height: 48px; }
  .map-preview { min-height: 440px; }
  .map-card { left: 14px; right: 14px; bottom: 14px; }
  .map-hero { padding-bottom: 28px; }
  .clinic-map-section { margin-bottom: 72px; }
  .clinic-filter-panel { padding: 20px 16px; border-radius: 20px; }
  .clinic-filter-heading { align-items: start; }
  .clinic-filter-heading h2 { font-size: 25px; }
  .map-reset-button { white-space: nowrap; }
  .clinic-filter-grid { grid-template-columns: 1fr; }
  .clinic-query-field { grid-column: auto; }
  .clinic-map-shell { display: flex; min-height: 0; overflow: visible; flex-direction: column-reverse; border-radius: 22px; }
  .clinic-map-panel { border-radius: 22px 22px 0 0; }
  .clinic-map-canvas { flex: none; min-height: 420px; }
  .clinic-results-panel { max-height: none; border-top: 1px solid var(--line); border-right: 0; }
  .clinic-list { max-height: 620px; }
  .clinic-result-card { padding: 18px 16px; }
  .clinic-results-header { padding: 20px 17px 16px; }
  .clinic-map-toolbar { min-height: 62px; padding-inline: 16px; }
  .clinic-map-note { padding-inline: 16px; }
}
