:root {
  --navy: #283779;
  --navy-deep: #22306d;
  --navy-soft: #3c4d92;
  --coral: #ff594d;
  --coral-dark: #eb493e;
  --coral-soft: #fff0ef;
  --sky: #b2dded;
  --sky-soft: #d7eef6;
  --bg: #ebf6fa;
  --text: #5e616c;
  --heading: #283779;
  --muted: #838cb1;
  --line: #d5e6ee;
  --white: #fff;
  --shadow: 0 16px 40px rgba(40, 55, 121, 0.08);
  --shadow-sm: 0 8px 24px rgba(40, 55, 121, 0.06);
  --radius: 24px;
  --container: 1140px;
  --header: 118px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}

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

a { color: var(--navy); text-decoration: none; }

button, input, select, textarea { font-family: inherit; }

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

h1, h2, h3, h4 { color: var(--heading); line-height: 1.2; letter-spacing: -0.03em; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip:focus { top: 12px; }

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

[hidden] { display: none !important; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }

.icon.stroke { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(235, 246, 250, 0.94);
  backdrop-filter: blur(10px);
}

.site-header.is-stuck { box-shadow: 0 8px 24px rgba(40, 55, 121, 0.08); }

.topbar { font-size: 13px; color: var(--navy-soft); }

.topbar-inner,
.nav-inner,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner { min-height: 42px; }

.top-mail,
.top-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-soft);
  font-weight: 600;
}

.top-social { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }

.top-mail:hover,
.top-social a:hover,
.nav-links a:hover,
.link-more:hover { color: var(--coral); }

.nav-inner { min-height: 78px; position: relative; }

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark { width: 46px; height: 46px; display: block; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-text strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.nav-cluster { display: flex; align-items: center; gap: 18px; }

.nav-links { display: flex; align-items: center; gap: 18px; }

.nav-links a {
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
}

.nav-links a.is-active { color: var(--coral); }

.nav-tools { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d5e6ee;
  border-radius: 14px;
  background: #fff;
  padding: 12px 11px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.search-wrap { position: relative; }

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.icon-btn:hover { color: var(--coral); }

.search-form {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  padding: 12px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(320px, 80vw);
  z-index: 20;
}

.search-form.is-open { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

.search-results {
  position: absolute;
  right: 0;
  top: calc(100% + 68px);
  width: min(320px, 80vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 21;
}

.search-results a,
.search-results p { display: block; padding: 10px 12px; border-radius: 10px; margin: 0; }

.search-results a:hover { background: var(--bg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s ease;
  text-align: center;
}

.btn-sm { padding: 12px 16px; font-size: 13px; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); color: #fff; }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--coral); color: #fff; }
.btn-line { background: transparent; color: var(--navy); border: 1.5px solid #c9d7ea; }
.btn-line:hover { border-color: var(--navy); }

.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* Hero */
.hero { padding: 18px 0 10px; position: relative; overflow: hidden; }

.hero-grid,
.split,
.cta-grid,
.quality-grid,
.mission-grid,
.story-grid,
.contact-grid,
.appt-grid,
.blog-layout,
.article-layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-grid { grid-template-columns: 1.05fr 0.95fr; min-height: 520px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.hero-text, .lede { font-size: 17px; max-width: 520px; }

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

.hero-visual { position: relative; min-height: 460px; }

.hero-visual img {
  width: min(470px, 100%);
  height: 520px;
  margin-left: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 36px;
  background: #e6eef3;
  filter: drop-shadow(0 18px 30px rgba(40, 55, 121, 0.12));
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 46px;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(255, 89, 77, 0.35);
}

.hero-badge svg { width: 42px; height: 42px; }

.hours {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; }

.hours h2 { color: #fff; font-size: 22px; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }

.hours p { color: rgba(255, 255, 255, 0.82); margin-bottom: 16px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.hours-row span:last-child { color: #fff; font-weight: 800; }

.section { padding: 78px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }

.section-head h2,
.block-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 10px;
}

.care-grid, .step-grid, .team-grid, .doctor-grid, .price-grid, .explore-grid, .post-grid, .point-grid {
  display: grid;
  gap: 22px;
}

.care-grid, .step-grid, .price-grid, .explore-grid { grid-template-columns: repeat(3, 1fr); }

.doctor-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }

.card, .care-card, .step-body, .price-card, .doctor-card, .team-card, .post-card, .widget, .panel, .faq-item, .quote-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.care-card { padding: 26px 26px 20px; }

.care-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7f5fb;
  color: var(--navy);
  flex: 0 0 auto;
}

.bubble.coral { background: var(--coral); color: #fff; }

.bubble svg, .value svg, .point svg { width: 28px; height: 28px; }

.care-card h3 { font-size: 22px; margin: 0; }

.menu { list-style: none; margin: 0; padding: 0; }

.menu li { border-top: 1px solid #eef3f6; }

.menu a, .menu span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  color: var(--text);
  font-weight: 600;
}

.caret { color: var(--coral); font-weight: 800; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 800;
  color: var(--coral);
}

.quality-grid { grid-template-columns: 1fr 1fr; align-items: center; }

.mini-icons { display: flex; gap: 18px; margin: 22px 0; }

.mini {
  width: 92px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 14px 8px;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.mini .bubble { margin: 0 auto 8px; width: 54px; height: 54px; }

.visual { position: relative; }

.visual img, .frame img, .explore-card img, .post-card img, .article-hero img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.visual > img { height: 430px; }

.float-card {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: min(230px, 80%);
  background: var(--coral);
  color: #fff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 12px 30px rgba(255, 89, 77, 0.3);
}

.float-card p { margin: 0 0 8px; font-weight: 700; color: #fff; }

.float-card a { color: #fff; font-weight: 800; }

.step-card { text-align: center; }

.step-photo {
  width: min(240px, 78%);
  margin: 0 auto -48px;
  position: relative;
  z-index: 1;
}

.step-photo img { height: 280px; border-radius: 28px; box-shadow: var(--shadow); }

.phone {
  width: 210px;
  height: 300px;
  margin: 0 auto;
  background: #fff;
  border: 8px solid var(--navy);
  border-radius: 32px;
  padding: 16px 12px;
  box-shadow: var(--shadow);
  text-align: left;
}

.phone strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 10px; }

.phone ol { margin: 0; padding-left: 18px; color: var(--text); font-size: 13px; font-weight: 700; }

.phone li { margin: 8px 0; }

.step-body { padding: 68px 24px 26px; }

.step-body h3 { margin-bottom: 8px; }

.mission { position: relative; }

.mission-grid, .story-grid, .cta-grid { grid-template-columns: 1.05fr 0.95fr; }

.mission-photo, .story-photo, .cta-photo img, .quote-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: 30px; }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin-top: 22px; }

.value {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.post-grid { grid-template-columns: repeat(3, 1fr); }

.post-card { overflow: hidden; }

.post-card img { height: 190px; border-radius: 24px 24px 0 0; }

.post-card div, .doctor-card div, .team-card div { padding: 16px 18px 20px; }

.post-card h3 { font-size: 18px; margin-bottom: 8px; }

.meta { color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 6px; }

.cta-band { padding-bottom: 80px; }

.quote-coral {
  background: var(--coral);
  color: #fff;
  border-radius: 24px;
  padding: 22px;
}

.quote-coral p, .quote-coral h3 { color: #fff; }

/* Inner pages */
.page-hero { padding: 42px 0 10px; }

.crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.crumbs a { color: var(--navy); }

.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -8px auto 28px;
  flex-wrap: wrap;
}

.filters .field { min-width: min(260px, 100%); }

.doctor-card, .team-card { overflow: hidden; padding: 12px; }

.doctor-card img, .team-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  background: #e6eaee;
}

.doctor-card h3, .team-card h3 { margin-bottom: 2px; font-size: 18px; }

.doctor-card p, .team-card p { margin: 0; color: var(--muted); font-weight: 700; font-size: 14px; }

.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral);
  font-weight: 800;
}

.empty {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
}

.explore { background: #d5eef8; padding: 64px 0 72px; }

.explore-card { text-align: center; color: var(--navy); font-weight: 800; }

.explore-card img { height: 180px; margin-bottom: 12px; }

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

.signature {
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  color: var(--navy);
  line-height: 1;
  margin: 10px 0 0;
}

.prose p { margin: 0 0 14px; }

.quote-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }

.quote-card { padding: 26px; }

.quote-card h3 { font-size: 26px; }

.stars { color: #f5b400; letter-spacing: 2px; font-size: 14px; }

.faq-item { margin-bottom: 12px; overflow: hidden; }

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
}

.faq-item .faq-a { display: none; padding: 0 18px 16px; }

.faq-item.is-open .faq-a { display: block; }

.price-card { padding: 28px 24px; position: relative; }

.price-card.is-featured {
  background: var(--navy);
  color: #fff;
  transform: translateY(-8px);
}

.price-card.is-featured h3,
.price-card.is-featured .price,
.price-card.is-featured li { color: #fff; }

.price { font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; margin: 8px 0; }

.price span { font-size: 16px; font-weight: 700; }

.price-card ul { padding-left: 18px; margin: 0 0 20px; }

.price-card li { margin: 8px 0; font-weight: 650; }

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }

.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }

.compare th { background: var(--navy); color: #fff; }

/* Blog */
.blog-layout, .article-layout { grid-template-columns: 280px 1fr; align-items: start; }

.widget { padding: 18px; margin-bottom: 16px; }

.widget h3 { font-size: 16px; margin-bottom: 10px; }

.widget ul { list-style: none; margin: 0; padding: 0; }

.widget li a { display: flex; gap: 10px; align-items: center; padding: 8px 0; font-weight: 700; color: var(--text); }

.widget li img { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; }

.widget .is-on { color: var(--coral); }

.subscribe-box { background: var(--navy); color: #fff; }

.subscribe-box h3, .subscribe-box p { color: #fff; }

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.blog-card { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }

.blog-card img { height: 180px; width: 100%; object-fit: cover; }

.blog-card div { padding: 16px; }

.blog-card.quote {
  background: var(--coral);
  color: #fff;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.blog-card.quote p, .blog-card.quote h3, .blog-card.quote a { color: #fff; }

.article-hero img { height: 360px; margin-bottom: 18px; }

.article-body { background: #fff; border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }

.article-body h2 { font-size: 28px; margin: 22px 0 8px; }

.pull {
  border-left: 4px solid var(--coral);
  margin: 18px 0;
  padding: 6px 0 6px 16px;
  color: var(--navy);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.4;
}

.share { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.field label, .label { font-weight: 800; color: var(--navy); font-size: 14px; }

input, select, textarea {
  width: 100%;
  border: 1.5px solid #d5e4ec;
  background: #fff;
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--navy);
  font-size: 15px;
  outline: none;
}

textarea { border-radius: 18px; min-height: 130px; resize: vertical; }

input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(40, 55, 121, 0.12); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--coral); }

.error { color: var(--coral); font-size: 12px; font-weight: 700; min-height: 0; }

.field.has-error .error:empty::after { content: "Please check this field."; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.checks { display: flex; flex-wrap: wrap; gap: 14px; }

.check { display: flex; align-items: flex-start; gap: 8px; font-weight: 700; color: var(--navy); font-size: 14px; }

.check input { width: auto; margin-top: 3px; }

.form-card, .panel { padding: 22px; }

.form-success {
  background: #fff;
  border-radius: 24px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.form-success p { color: var(--navy); font-size: 22px; font-weight: 800; margin: 10px 0 0; }

.success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.point-grid { grid-template-columns: repeat(3, 1fr); margin: 28px 0; }

.point { text-align: center; }

.point .bubble { margin: 0 auto 10px; background: #fff; border: 1px solid var(--line); }

.point h3 { font-size: 16px; margin-bottom: 4px; }

.contact-grid { grid-template-columns: 1fr; }

.contact-visual { position: relative; margin-top: 10px; }

.contact-visual img { width: 100%; height: 360px; object-fit: cover; border-radius: 28px; }

.tracker {
  background: linear-gradient(90deg, #ff7d74, #ff594d 45%, #ff8d86);
  color: #fff;
  padding: 22px 0;
}

.tracker-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.tracker-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.pip { text-align: center; position: relative; font-weight: 800; font-size: 14px; }

.pip i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 6px;
  background: rgba(255, 255, 255, 0.25);
  font-style: normal;
}

.pip.is-current i, .pip.is-done i { background: #fff; color: var(--coral); }

.appt-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }

.doc-choices { display: grid; gap: 10px; }

.doc-choice {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
}

.doc-choice img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }

.doc-choice strong { display: block; color: var(--navy); }

.doc-choice em { color: var(--muted); font-size: 13px; font-style: normal; font-weight: 700; }

.doc-choice.is-selected { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 89, 77, 0.15); }

.side-card img { width: 100%; height: 230px; object-fit: cover; object-position: center top; border-radius: 18px; }

.hold {
  background: #fff1ef;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  margin-top: 12px;
}

.hold b { color: var(--coral); font-size: 20px; }

.summary-list { list-style: none; padding: 0; margin: 0 0 16px; }

.summary-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }

.legal h2 { font-size: 26px; margin: 28px 0 8px; }

.legal h3 { font-size: 18px; margin: 18px 0 6px; }

.panel.legal { padding: 34px 36px; }

/* Footer */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.82); padding: 56px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr; gap: 24px; }

.footer h3 { color: #fff; font-size: 16px; margin-bottom: 12px; }

.footer a { color: rgba(255, 255, 255, 0.82); font-weight: 650; }

.footer a:hover { color: #fff; }

.footer ul { list-style: none; margin: 0; padding: 0; }

.footer li { margin: 8px 0; }

.footer .brand-text strong { color: #fff; }

.footer-social { display: flex; gap: 14px; list-style: none; padding: 14px 0 0; margin: 0; }

.footer-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

.footer-form input { background: #1d2b66; border-color: #3d4d8e; color: #fff; }

.footer-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.footer .form-success { background: transparent; box-shadow: none; padding: 8px 0; text-align: left; }

.footer .form-success p { color: #fff; font-size: 16px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 28px; padding: 16px 0; font-size: 13px; }

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 79, 0.55);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-card { width: min(440px, 100%); background: #fff; border-radius: 24px; padding: 24px; position: relative; }

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  background: var(--bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.note { font-size: 13px; color: var(--muted); }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cluster {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-cluster.is-open { display: flex; }
  .nav-links, .nav-tools { flex-direction: column; align-items: stretch; }
  .search-form, .search-form.is-open, .search-results { position: static; width: 100%; }
  .hero-grid, .quality-grid, .mission-grid, .story-grid, .cta-grid, .quote-layout, .appt-grid, .blog-layout, .article-layout, .hours-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .care-grid, .step-grid, .doctor-grid, .team-grid, .price-grid, .post-grid, .point-grid, .blog-grid, .values {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 0; }
  .hero-visual img { margin: 0 auto; }
  .price-card.is-featured { transform: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .top-social span { display: none; }
  .care-grid, .step-grid, .doctor-grid, .team-grid, .price-grid, .post-grid, .point-grid, .blog-grid, .values, .footer-grid, .mini-icons {
    grid-template-columns: 1fr;
  }
  .hours-row { flex-direction: column; }
  .hero h1, .page-hero h1 { font-size: 34px; }
  .visual > img, .mission-photo, .article-hero img, .contact-visual img { height: 260px; }
  .panel.legal { padding: 22px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-badge { width: 64px; height: 64px; right: 8px; bottom: 12px; }
}

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