:root {
  --surface: #f8f9fa;
  --surface-soft: #f3f4f5;
  --surface-card: #ffffff;
  --surface-line: #c2c6d4;
  --text: #191c1d;
  --muted: #4a5568;
  --primary: #003f87;
  --primary-dark: #003366;
  --primary-bright: #0056b3;
  --mint: #006a65;
  --mint-soft: #e6fffd;
  --gold: #ffd700;
  --shadow: 0 10px 24px rgba(17, 92, 185, .08);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 80px)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-head.centered { text-align: center; }
.section-head span, .section-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand, .footer-brand { font-family: "Be Vietnam Pro", Arial, sans-serif; }
h1 { color: var(--primary-dark); font-size: 48px; line-height: 1.2; font-weight: 800; margin-bottom: 20px; }
h2 { color: var(--primary-dark); font-size: 30px; line-height: 1.3; font-weight: 800; margin-bottom: 12px; }
h3 { color: var(--primary-dark); font-size: 20px; line-height: 1.4; font-weight: 700; margin-bottom: 10px; }
p { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { color: #fff; background: var(--mint); }
.btn-primary:hover { background: #00504c; }
.btn-outline { color: var(--primary); background: rgba(255,255,255,.82); border-color: var(--primary); }
.btn-outline:hover { color: #fff; background: var(--primary); }
.btn-light { background: #fff; color: var(--primary); }
.btn-sm { min-height: 36px; padding: 8px 18px; font-size: 12px; }

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--surface-line);
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--primary); font-size: 18px; font-weight: 800; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.brand.has-logo .brand-name { display: none; }
.brand:not(.has-logo)::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 6px #fff, 0 0 0 2px var(--primary);
}
.brand-logo { display: block; max-height: 52px; max-width: 220px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #414751;
  font-size: 13px;
  font-weight: 800;
  padding: 30px 0 25px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--primary); border-bottom-color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 40px; height: 40px; border: 0; background: transparent; padding: 9px; }
.burger span { display: block; height: 2px; background: var(--primary); margin: 5px 0; border-radius: 4px; }

.dental-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) brightness(1.08); }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.74) 44%, rgba(255,255,255,.08) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-copy { max-width: 560px; padding: 32vh 0 18vh; color: var(--text); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  background: rgba(0,106,101,.1);
  border: 1px solid rgba(0,106,101,.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-copy h1 { color: var(--primary-dark); font-size: 48px; text-shadow: none; }
.hero-copy h1 span { color: var(--mint); }
.hero-copy h1::first-letter { color: inherit; }
.hero-copy p { max-width: 700px; font-weight: 400; color: var(--muted); margin: 0 0 28px; text-shadow: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn-outline { color: var(--primary); background: rgba(255,255,255,.82); border-color: var(--primary); }
.hero-actions .btn-outline:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
.quick-contact {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: -56px auto 0;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(17, 92, 185, .12);
}
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px 24px; }
.quick-item { display: flex; align-items: center; gap: 16px; padding: 24px 0; }
.quick-item + .quick-item { border-left: 0; padding-left: 32px; }
.quick-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0,63,135,.1);
  color: var(--primary);
}
.quick-index::before { content: ""; width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 50%; }
.quick-icon-2::before { border-radius: 5px 5px 50% 50%; transform: rotate(45deg); }
.quick-icon-3::before { border-radius: 50%; box-shadow: inset 0 0 0 5px #fff; }
.quick-item span:not(.quick-index) { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; opacity: 1; line-height: 1.2; }
.quick-item strong { display: block; color: var(--primary); font-size: 16px; line-height: 1.35; }

.dental-services { background: var(--surface); }
.dental-services .section-head { margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.service-card::before { display: none; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 34px rgba(0,62,117,.12); }
.service-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-soft); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-body { display: block; padding: 24px; }
.service-number { display: none; }
.service-card p { font-size: 14px; margin-bottom: 0; }
.service-more { display: inline-block; color: var(--mint); font-size: 13px; font-weight: 700; margin-top: 18px; }

.dental-about { background: var(--surface); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.home-about-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.home-about-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.home-about-copy h2 { font-size: 32px; margin: 14px 0 18px; }
.home-about-copy p { margin-bottom: 20px; }
.home-about-copy ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 14px; }
.home-about-copy li { position: relative; padding-left: 30px; color: var(--text); }
.home-about-copy li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--mint); box-shadow: inset 0 0 0 5px #dff8f5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage-left { padding-top: 38px; }
.collage-left, .collage-right { display: grid; gap: 16px; }
.about-collage img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.collage-left img { height: 320px; }
.collage-right img { height: 400px; }
.metric { min-height: 118px; border-radius: var(--radius-lg); color: #fff; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); }
.metric.blue { background: var(--primary); }
.metric.green { background: var(--mint); }
.metric strong { font-size: 34px; line-height: 1; }
.metric span { font-size: 12px; font-weight: 800; }
.about-copy { display: grid; gap: 24px; }
.about-copy h2, .about-copy p { margin-bottom: 0; }
.about-highlights { display: grid; gap: 14px; }
.about-highlights > div {
  display: block;
  padding: 16px;
  border-left: 3px solid var(--mint);
  border-radius: 12px;
  transition: background .2s;
}
.about-highlights > div:hover { background: var(--surface-soft); }
.about-highlights strong { display: block; color: var(--primary); font-size: 16px; margin-bottom: 4px; }
.about-highlights small { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }
.about-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid rgba(0,68,129,.2);
  padding-bottom: 4px;
  transition: border-color .2s;
}
.about-more:hover { border-bottom-color: var(--primary); }

.dental-why { background: #fff; }
.home-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.home-why-grid article { padding: 30px 24px; text-align: center; background: #fff; border: 1px solid rgba(194,198,212,.65); border-radius: 8px; box-shadow: 0 8px 22px rgba(17,92,185,.04); transition: border-color .2s, transform .2s; }
.home-why-grid article:hover { border-color: var(--mint); transform: translateY(-3px); }
.home-why-grid article span { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 12px; background: #eef7f6; color: var(--primary); }
.home-why-grid article span::before { content: ""; width: 22px; height: 22px; border-radius: 6px; border: 2px solid currentColor; }
.home-why-grid h3 { font-size: 18px; margin-bottom: 10px; }
.home-why-grid p { margin: 0; font-size: 14px; }
.why-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-bento-card {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.why-bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.why-bento-wide.reverse { direction: rtl; }
.why-bento-wide.reverse > * { direction: ltr; }
.why-bento-copy { display: grid; gap: 16px; }
.why-bento-copy.right { text-align: right; justify-items: end; }
.why-eyebrow { color: var(--mint); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.why-card-index { color: rgba(255,255,255,.58); font-size: 34px; line-height: 1; font-weight: 700; }
.why-bento h3 { margin-bottom: 0; }
.why-bento p { font-size: 14px; margin: 0; }
.why-bento figure { width: 100%; height: 192px; margin: 0; border-radius: 16px; overflow: hidden; background: var(--surface-soft); }
.why-bento figure img { width: 100%; height: 100%; object-fit: cover; }
.why-solid {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  border: 0;
}
.why-solid.primary { background: var(--primary); box-shadow: 0 18px 36px rgba(0,68,129,.12); }
.why-solid.secondary { background: var(--mint); box-shadow: 0 18px 36px rgba(0,106,99,.12); }
.why-solid h3, .why-solid p { color: #fff; }
.why-solid p { opacity: .82; }

.dental-gallery { background: #fff; }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.gallery-head a { color: var(--primary); font-size: 14px; font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.gallery-item { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--surface-soft); }
.gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.08); }

.dental-reviews { background: var(--primary-dark); }
.dental-reviews h2, .dental-reviews .section-head span { color: #fff; }
.stars { color: var(--gold); font-size: 20px; margin-bottom: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-person { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.review-person > span { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #d5e3ff; color: var(--primary); font-size: 12px; font-weight: 800; }
.review-person strong { display: block; color: #fff; line-height: 1.25; }
.review-person small { color: rgba(255,255,255,.72); }
.review-card p { color: rgba(255,255,255,.9); font-size: 14px; margin: 0; }

.dental-news { background: var(--surface); }
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
}
.news-head h2 { margin-bottom: 10px; }
.news-head p { max-width: 560px; margin: 0; }
.news-head > a,
.read-more {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.home-news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,62,117,.12); }
.home-news-image { display: block; height: 208px; overflow: hidden; background: var(--surface-soft); }
.home-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.home-news-card:hover .home-news-image img { transform: scale(1.06); }
.home-news-body { padding: 22px; }
.home-news-meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.home-news-meta span { color: var(--mint); background: var(--mint-soft); border-radius: 6px; padding: 3px 8px; }
.home-news-body h3 { font-size: 19px; line-height: 1.35; margin-bottom: 9px; }
.home-news-body h3 a { color: var(--primary); }
.home-news-body p { font-size: 14px; margin-bottom: 12px; }

.dental-contact {
  background-color: #fff;
  background-image: radial-gradient(at 0% 0%, rgba(230,255,250,1) 0, transparent 48%), radial-gradient(at 100% 0%, rgba(213,227,255,.55) 0, transparent 48%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-panel > p { margin-bottom: 28px; }
.contact-cards { display: grid; gap: 16px; margin: 28px 0; }
.contact-cards article {
  display: block;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-left: 3px solid var(--mint);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-cards small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-cards strong { display: block; color: var(--primary); }
.contact-cards .map-link { display: inline-block; color: var(--mint); font-size: 13px; font-weight: 700; margin-top: 4px; text-decoration: underline; }
.booking-form { background: #fff; border: 1px solid var(--surface-line); border-radius: 28px; padding: 32px; box-shadow: 0 24px 64px rgba(0,68,129,.08); }
.booking-form { display: grid; gap: 18px; margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label { color: var(--text); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,68,129,.12); }
.booking-form .btn { width: 100%; }
.form-note { text-align: center; font-size: 12px; margin: 0; }
.map-card { position: relative; min-height: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--surface-line); background: var(--surface-soft); }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.92) contrast(.98); }
.map-card::after { content: ""; position: absolute; inset: 0; background: rgba(0,68,129,.04); pointer-events: none; }
.map-pop {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(270px, calc(100% - 48px));
  background: #fff;
  border: 1px solid rgba(0,68,129,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
}
.map-pop svg { width: 34px; height: 34px; fill: var(--primary); margin: 0 auto 8px; }
.map-pop strong, .map-pop span { display: block; }
.map-pop span { color: var(--muted); font-size: 13px; margin: 6px 0 12px; }
.map-pop a { color: var(--primary); font-weight: 800; font-size: 13px; }

.site-footer { background: var(--primary-dark); border-top: 1px solid rgba(255,255,255,.1); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; }
.footer-brand, .footer-title { color: #fff; font-weight: 800; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 22px; margin-bottom: 16px; }
.footer-logo { display: block; max-height: 58px; max-width: 220px; width: auto; object-fit: contain; }
.footer-desc, .footer-editor-content, .footer-links a, .footer-contact-row { color: rgba(255,255,255,.78) !important; font-size: 14px; line-height: 1.7; }
.footer-title { font-size: 12px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--gold) !important; }
.footer-contact { display: none; }
.footer-editor-content p { margin: 0 0 10px; color: rgba(255,255,255,.78) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); font-size: 13px; padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; }

.dental-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 34px rgba(0,68,129,.28);
  transition: transform .2s;
}
.dental-fab:hover { transform: scale(1.08); }
.dental-fab svg { width: 26px; height: 26px; fill: currentColor; }
.dental-fab span {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.dental-fab:hover span { opacity: 1; }

.page-hero, .archive-hero, .detail-hero {
  padding: 120px 0 56px;
  background: linear-gradient(180deg, #fff, var(--surface));
}

.services-hero {
  padding: 82px 0 88px;
  background: var(--primary-dark);
  text-align: center;
}
.services-hero .section-kicker {
  color: #79f6ed;
  margin-bottom: 18px;
}
.services-hero h1 {
  color: #fff;
  max-width: none;
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 1.18;
}
.services-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
}
.services-archive {
  background: var(--surface);
  padding-top: 80px;
  padding-bottom: 80px;
}
.service-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-archive-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(194,198,212,.6);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17,92,185,.06);
  transition: transform .22s, box-shadow .22s;
}
.service-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17,92,185,.12);
}
.service-archive-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}
.service-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-archive-card:hover .service-archive-image img {
  transform: scale(1.04);
}
.service-archive-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--mint);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.service-archive-body {
  padding: 26px 24px 28px;
}
.service-archive-body h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 22px;
}
.service-archive-body p {
  min-height: 68px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}
.service-archive-more {
  color: var(--mint);
  font-weight: 700;
}
.service-archive-more::after {
  content: " ->";
}
.services-cta {
  padding: 92px 0 104px;
  background: var(--surface-soft);
  text-align: center;
  border-top: 1px solid rgba(194,198,212,.35);
  border-bottom: 1px solid rgba(194,198,212,.35);
}
.services-cta h2 {
  font-size: 34px;
}
.services-cta p {
  max-width: 600px;
  margin: 0 auto 28px;
}
.services-cta .container > div {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.about-story { background: #fff; padding-top: 92px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 76px; align-items: center; }
.about-story h2 { font-size: 42px; line-height: 1.18; margin: 18px 0 24px; }
.about-story p { max-width: 610px; }
.about-story img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 58px rgba(17,92,185,.14); }
.about-story-stats { display: flex; gap: 72px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--surface-line); }
.about-story-stats strong { display: block; color: var(--primary); font-size: 34px; line-height: 1; }
.about-story-stats span { color: var(--muted); font-size: 13px; font-weight: 700; }
.about-doctors { background: var(--surface); }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.doctor-card { overflow: hidden; background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.doctor-card img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.doctor-card div { padding: 18px 22px; background: rgba(255,255,255,.88); }
.doctor-card h3 { color: var(--primary); margin-bottom: 4px; }
.doctor-card p { margin: 0; color: var(--mint); font-size: 13px; font-weight: 700; }
.about-facility { background: #fff; }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.facility-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.facility-images img { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.facility-images img:first-child { grid-row: span 2; height: 458px; }
.facility-item { display: flex; gap: 18px; margin-top: 24px; }
.facility-item span { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 12px; background: rgba(0,106,101,.1); }
.facility-item h3 { margin-bottom: 4px; }
.process-band { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-grid article { min-height: 228px; padding: 32px 26px; border-radius: 12px; background: #fff; border: 1px solid rgba(194,198,212,.35); }
.process-grid strong { display: block; color: rgba(0,106,101,.12); font-size: 40px; margin-bottom: 26px; }
.about-cta { background: var(--primary-dark); color: #fff; padding: 74px 0; text-align: center; }
.about-cta h2 { color: #fff; font-size: 42px; margin-bottom: 28px; }
.about-cta .btn { margin: 0 7px; }

.contact-hero { position: relative; min-height: 420px; display: grid; place-items: center; text-align: center; overflow: hidden; color: #fff; }
.contact-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.58) saturate(.9); }
.contact-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,51,102,.35); }
.contact-hero > div { position: relative; z-index: 1; width: min(760px, calc(100% - 32px)); }
.contact-hero h1 { color: #fff; font-size: 48px; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,.84); font-size: 18px; }
.contact-page { background: var(--surface); }
.contact-page-grid { display: grid; grid-template-columns: .85fr 1.2fr; gap: 42px; align-items: start; }
.contact-detail-card, .contact-map-card, .appointment-card { background: #fff; border: 1px solid rgba(194,198,212,.5); border-radius: 12px; box-shadow: var(--shadow); }
.contact-detail-card { padding: 38px; }
.contact-detail-card h2, .appointment-card h2 { font-size: 36px; margin-bottom: 26px; }
.contact-line { display: flex; gap: 18px; margin: 22px 0; }
.contact-line span { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 10px; background: #eaf1fb; }
.contact-line h3 { color: var(--primary); margin-bottom: 4px; }
.contact-line p { margin: 0; font-weight: 600; }
.contact-line em { color: var(--mint); font-style: normal; font-size: 14px; }
.contact-map-card { margin-top: 32px; overflow: hidden; }
.contact-map-card iframe { width: 100%; height: 300px; border: 0; display: block; }
.contact-map-card a { display: block; margin: 18px; padding: 14px 18px; border: 1px solid var(--surface-line); border-radius: 8px; color: var(--primary); font-weight: 700; }
.appointment-card { padding: 44px 48px; }
.appointment-card > p { margin-bottom: 28px; }
.appointment-card label { display: block; color: var(--primary); font-size: 14px; font-weight: 700; }
.appointment-card input, .appointment-card select, .appointment-card textarea { width: 100%; margin-top: 8px; border: 1px solid var(--surface-line); border-radius: 8px; padding: 14px; outline: none; }
.appointment-card input:focus, .appointment-card select:focus, .appointment-card textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,63,135,.12); }
.appointment-card .btn { width: 100%; margin-top: 18px; }
.appointment-card small { display: block; text-align: center; color: var(--muted); margin-top: 22px; }
.contact-stats { padding: 54px 0; background: #f1f2f3; }
.contact-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.contact-stats strong { display: block; color: var(--primary); font-size: 22px; }
.contact-stats span { color: var(--muted); }

.reviews-hero { padding: 90px 0 82px; text-align: center; background: var(--surface); }
.reviews-hero h1 { font-size: 54px; line-height: 1.08; margin: 18px 0 22px; }
.reviews-hero p { max-width: 720px; margin: 0 auto 34px; }
.rating-card { display: inline-grid; grid-template-columns: auto auto; gap: 0 24px; align-items: center; padding: 20px 34px; background: #fff; border: 1px solid var(--surface-line); border-radius: 12px; box-shadow: var(--shadow); text-align: left; }
.rating-card strong { color: var(--primary); font-size: 34px; grid-row: span 2; }
.rating-card span { color: var(--gold); }
.rating-card small { color: var(--muted); font-weight: 700; }
.treatment-results { background: #fff; }
.results-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.results-grid article { position: relative; overflow: hidden; min-height: 220px; border-radius: 10px; background: var(--primary); color: #fff; }
.results-grid img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.result-large { grid-row: span 2; min-height: 500px !important; }
.result-large div, .results-grid h3, .quote-result p, .quote-result strong { position: absolute; left: 28px; right: 28px; bottom: 26px; color: #fff; }
.result-large span { color: #79f6ed; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.quote-result { padding: 34px; background: #0056b3 !important; }
.quote-result p { position: static; font-size: 18px; font-style: italic; margin-top: 60px; }
.quote-result strong { position: static; display: block; margin-top: 28px; }
.results-grid .wide { grid-column: span 2; }
.reviews-list { background: var(--surface); }
.reviews-more { text-align: center; margin-top: 34px; }
.reviews-cta { padding: 76px 0; background: var(--surface); }
.reviews-cta .container { padding: 64px 76px; border-radius: 20px; background: var(--primary-dark); color: #fff; }
.reviews-cta h2, .reviews-cta p { color: #fff; }
.reviews-cta .btn { margin-right: 12px; }
.page-hero h1, .archive-hero h1, .detail-hero h1 { max-width: 820px; }
.card, .post-card, .product-card, .service-list-card {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.page { padding: 120px 0 80px; background: var(--surface); min-height: 60vh; }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); font-weight: 700; }
.page-title { max-width: 820px; margin-bottom: 12px; }
.page-desc { max-width: 760px; margin-bottom: 36px; }
.stat, .feature-card, .testimonial, .contact-info, .contact-form, .empty-state {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat { padding: 24px; text-align: center; }
.stat-num { color: var(--primary); font-size: 34px; line-height: 1; font-weight: 800; }
.stat-label { color: var(--muted); margin-top: 8px; font-size: 14px; }
.article-body { background: #fff; border: 1px solid var(--surface-line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 28px; }
.cta-banner { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.cta-banner h2, .cta-banner p { color: #fff; }
.form-input, .form-textarea {
  width: 100%;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,68,129,.12); }
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill { padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--surface-line); color: var(--muted); font-size: 14px; font-weight: 700; }
.pill.active, .pill:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; }
.product-img { display: block; aspect-ratio: 4 / 3; background: var(--surface-soft); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 22px; }
.product-cat { color: var(--primary); font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.product-desc { font-size: 14px; }
.product-price { color: var(--primary); font-weight: 800; }
.pagination-wrap { margin-top: 32px; }
.contact-info, .contact-form { padding: 28px; }
.contact-info { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-soft); color: var(--mint); flex: 0 0 auto; }
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-label { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.contact-item-value { color: var(--text); font-weight: 600; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; color: var(--text); font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.required { color: #ba1a1a; }
.map-wrap { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--surface-line); }
.map-wrap iframe { width: 100%; min-height: 360px; border: 0; display: block; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { padding: 28px; }
.testimonial .stars { color: var(--gold); }
.testimonial-quote { font-size: 15px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #d5e3ff; color: var(--primary); font-weight: 800; overflow: hidden; flex: 0 0 auto; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.testimonial-avatar-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #d5e3ff 0%, #e6fffa 100%); color: var(--primary); font-weight: 700; }
.testimonial-name { font-weight: 800; color: var(--text); }
.testimonial-role { color: var(--muted); font-size: 13px; }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(340px, 520px) 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 34px;
}
.detail-img {
  position: sticky;
  top: 92px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow);
}
.detail-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-info {
  min-width: 0;
  padding-top: 4px;
}
.detail-info h1 {
  font-size: 44px;
  line-height: 1.18;
  margin-bottom: 14px;
  word-break: break-word;
}
.detail-price { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.detail-short.article-body {
  margin-bottom: 18px;
  padding: 24px 28px;
  font-size: 17px;
}
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0; }
.detail-body.article-body { margin-top: 30px; }
.article-body h2 { font-size: 28px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,62,117,.12); }
.news-img { display: block; aspect-ratio: 4 / 3; background: var(--surface-soft); overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 22px; }
.news-meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.news-body h3 { font-size: 19px; margin-bottom: 9px; }
.news-body p { font-size: 14px; margin-bottom: 0; }
.article-excerpt {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.pagination-wrap nav { display: flex; justify-content: center; }
.pagination-wrap .pagination { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pagination-wrap a, .pagination-wrap span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--surface-line);
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.pagination-wrap .active span, .pagination-wrap [aria-current="page"] span, .pagination-wrap span[aria-current="page"] {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.pagination-wrap .disabled span { color: var(--muted); background: var(--surface-soft); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.72);
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 86vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.35); }

@media (max-width: 980px) {
  .container { width: min(100% - 32px, var(--container)); }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .section { padding: 56px 0; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 60px rgba(15,23,42,.16);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid var(--surface-line); }
  .nav a:last-child { border-bottom: 0; }
  .burger { display: block; }
  .dental-hero { min-height: 610px; }
  .hero-bg img { filter: saturate(.92) brightness(1.05); }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.68) 48%, rgba(255,255,255,.82) 100%);
  }
  .quick-grid, .about-grid, .contact-grid, .about-story-grid, .facility-grid, .contact-page-grid, .home-about-grid { grid-template-columns: 1fr; }
  .quick-item + .quick-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-left: 0; }
  .service-grid, .service-archive-grid, .doctor-grid { grid-template-columns: repeat(2, 1fr); }
  .why-bento, .review-grid, .footer-grid, .home-news-grid { grid-template-columns: 1fr; }
  .why-bento-wide { grid-column: auto; grid-template-columns: 1fr; }
  .why-bento-copy.right { text-align: left; justify-items: start; }
  .features, .product-grid, .testimonial-grid, .detail-grid, .news-grid { grid-template-columns: 1fr; }
  .detail-img { position: static; }
  .gallery-grid, .process-grid, .results-grid, .contact-stats .container, .home-why-grid { grid-template-columns: repeat(2, 1fr); }
  .result-large, .results-grid .wide { grid-column: auto; grid-row: auto; }
  .about-story h1, .services-hero h1, .contact-hero h1, .reviews-hero h1 { font-size: 38px; }
  .news-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .header-inner { height: 60px; }
  .brand { font-size: 19px; }
  .header-actions .btn { display: none; }
  .dental-hero { min-height: 520px; padding-top: 0; }
  .hero-copy { padding: 76px 0 64px; }
  h1 { font-size: 31px; }
  .hero-copy h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .service-grid, .form-row, .service-archive-grid, .doctor-grid, .process-grid, .results-grid, .contact-stats .container, .home-why-grid { grid-template-columns: 1fr; }
  .quick-contact { width: min(100% - 32px, var(--container)); margin-top: -28px; }
  .quick-grid { grid-template-columns: 1fr; padding: 8px 18px; }
  .services-cta .container > div { flex-direction: column; }
  .about-story-stats { gap: 28px; }
  .facility-images { grid-template-columns: 1fr; }
  .facility-images img:first-child, .facility-images img { height: 240px; }
  .appointment-card, .contact-detail-card { padding: 28px 22px; }
  .reviews-cta .container { padding: 38px 22px; }
  .about-collage { gap: 12px; }
  .collage-left img { height: 190px; }
  .collage-right img { height: 230px; }
  .metric { min-height: 112px; padding: 18px; }
  .metric strong { font-size: 34px; }
  .gallery-head { align-items: flex-start; flex-direction: column; }
}

/* Typography tuning: Be Vietnam Pro with calmer weights. */
body { font-family: "Inter", Arial, sans-serif; }
h1, h2, .detail-info h1 { font-weight: 700; }
h3, .service-card h3, .news-body h3, .testimonial-name, .footer-brand, .footer-title { font-weight: 600; }
.brand, .btn, .nav a, .eyebrow, .section-head span, .section-kicker,
.quick-item span:not(.quick-index), .metric span, .gallery-head a,
.booking-form label, .product-cat, .contact-item-label, .form-label,
.review-person strong, .testimonial-avatar-fallback, .review-person > span {
  font-weight: 600;
}
.stat-num, .metric strong { font-weight: 700; }

/* Unified inner-page hero requested for nhakhoav. */
.inner-hero {
  padding: 86px 0 94px;
  background: var(--primary-dark);
  text-align: center;
}
.inner-hero .section-kicker {
  color: #79f6ed;
  margin-bottom: 18px;
}
.inner-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: 48px;
  line-height: 1.18;
}
.inner-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.brand-name {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .inner-hero h1 { font-size: 38px; }
}

@media (max-width: 640px) {
  .inner-hero { padding: 58px 0 64px; }
  .inner-hero h1 { font-size: 30px; }
}
