/* ============================================================
   O DENTAL — Homepage stylesheet
   Brand: teal #0F766E · deep teal #115E59 · mint #CCFBF1
           coral #FF6B57 · ink #0F172A · slate #64748B · bg #F8FAFC
   ============================================================ */

:root {
  --teal: #0F766E;
  --teal-deep: #115E59;
  --teal-dark: #0B4A46;
  --mint: #CCFBF1;
  --coral: #FF6B57;
  --coral-deep: #D2452F;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --ink: #0F172A;
  --slate: #64748B;
  --line: #E3E9F0;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05), 0 4px 10px rgba(15, 23, 42, .05);
  --shadow-md: 0 6px 14px -6px rgba(15, 23, 42, .1), 0 20px 44px -18px rgba(15, 23, 42, .16);
  --shadow-lg: 0 14px 28px -12px rgba(15, 23, 42, .14), 0 46px 90px -32px rgba(15, 23, 42, .22);
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.015em; }

::selection { background: var(--teal); color: #fff; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  z-index: 110;
  pointer-events: none;
}

/* ---------- Lazy image fade-in ---------- */
.js img[loading="lazy"] { opacity: 0; transition: opacity .5s ease; }
.js img[loading="lazy"].is-loaded { opacity: 1; }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--teal-deep); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 12px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; }

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 108px 0; }

/* ---------- Labels & section heads ---------- */
.label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.label::before {
  content: '';
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--coral);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.section-head .lede {
  color: var(--slate);
  font-size: 17.5px;
  max-width: 620px;
  margin-inline: auto;
}
.accent-teal { color: var(--teal); }
.accent-coral { color: var(--coral-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.btn svg { flex: none; }
.btn:active { transform: translateY(0) scale(.98); }

.btn-primary {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 12px 26px -12px rgba(17, 94, 89, .55);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(17, 94, 89, .6);
}

.btn-ghost {
  background: #fff;
  color: var(--teal-deep);
  border-color: #D7E2E0;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--mint);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--teal-deep);
  box-shadow: 0 14px 30px -14px rgba(2, 20, 19, .5);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -14px rgba(2, 20, 19, .55); }

.btn-outline-light {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal);
  text-decoration: none;
  margin-top: 18px;
}
.card-link svg { transition: transform .22s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(248, 250, 252, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: rgba(15, 23, 42, .06);
  box-shadow: 0 10px 30px -20px rgba(15, 23, 42, .25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  filter: drop-shadow(0 6px 10px rgba(15, 118, 110, .28));
  transition: transform .3s ease;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-o { color: var(--teal); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #33415A;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2.5px;
  border-radius: 3px;
  background: var(--coral);
  transition: width .25s ease;
}
.site-nav a:hover { color: var(--teal); }
.site-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-deep);
  text-decoration: none;
  padding: 10px 0;
  transition: color .2s ease;
}
.header-phone:hover { color: var(--teal-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; }
.blob-mint {
  width: 560px; height: 560px;
  top: -170px; right: 2%;
  background: radial-gradient(circle, rgba(204, 251, 241, .9), rgba(204, 251, 241, 0) 68%);
}
.blob-teal {
  width: 520px; height: 520px;
  bottom: -220px; left: -140px;
  background: radial-gradient(circle, rgba(15, 118, 110, .13), rgba(15, 118, 110, 0) 70%);
}
.blob-glow {
  width: 760px; height: 760px;
  top: -300px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(204, 251, 241, .6), rgba(204, 251, 241, 0) 68%);
}
.spark {
  position: absolute;
  color: var(--coral);
  font-size: 26px;
  line-height: 1;
  animation: twinkle 4.5s ease-in-out infinite;
}
.spark-1 { top: 150px; right: 38px; }
.spark-2 { bottom: 130px; left: 46%; animation-delay: 1.6s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.75) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(25deg); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 72px;
  padding: 72px 24px 100px;
}

.hero-copy { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mint);
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .stars { color: var(--coral-deep); letter-spacing: 2px; font-size: 12px; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8.5C22 2 42 11 60 7s39-4.5 57-.5' stroke='%23FF6B57' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #44566F;
}
.hero-chips svg { color: var(--teal); flex: none; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: min(100%, 470px); isolation: isolate; }
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -38px; right: -26px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 118, 110, .28);
  z-index: -1;
}

.hero-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 42, .05);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  transition: transform .5s ease;
}
.hero-photo-wrap:hover .hero-photo { transform: rotate(0deg) scale(1.012); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .05);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 22px 44px -20px rgba(15, 23, 42, .28);
  animation: floaty 6s ease-in-out infinite alternate;
}
.float-card strong { font-family: var(--font-head); font-size: 15.5px; font-weight: 800; display: block; line-height: 1.2; }
.float-card span { font-size: 12.5px; color: var(--slate); font-weight: 500; display: block; }
.float-rating { top: 22px; left: -40px; }
.float-rating .float-card-icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--coral); color: #fff;
  font-size: 20px;
  border-radius: 14px;
}
.float-rating .mini-stars {
  color: var(--coral-deep);
  letter-spacing: 1px;
  font-size: 11px;
  margin: 3px 0 2px;
}
.float-open { bottom: 30px; right: -34px; animation-delay: 1.2s; }
.float-stat { bottom: -26px; left: 30px; animation: none; }
.float-stat strong { font-size: 26px; color: var(--teal); }
.float-stat span { font-size: 13px; }
@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-11px); }
}

.pulse-dot {
  position: relative;
  width: 12px; height: 12px; flex: none;
  border-radius: 50%;
  background: var(--teal);
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: .5;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .55; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--teal-deep);
  color: #fff;
  overflow: hidden;
  padding: 17px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marquee-group span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  white-space: nowrap;
}
.marquee-group i { color: var(--coral); font-style: normal; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Empathy ---------- */
.empathy-panel {
  position: relative;
  overflow: hidden;
  background: var(--mint);
  border-radius: 36px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.empathy-panel::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  top: -180px; right: -110px;
  background: radial-gradient(circle, rgba(15, 118, 110, .16), rgba(15, 118, 110, 0) 68%);
}
.empathy-panel::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  bottom: -160px; left: -80px;
  background: radial-gradient(circle, rgba(255, 107, 87, .12), rgba(255, 107, 87, 0) 66%);
}
.empathy-intro { position: relative; z-index: 1; }
.empathy-intro h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.empathy-intro .lede { color: #2E4A47; font-size: 17.5px; margin-bottom: 32px; }

.empathy-steps { position: relative; z-index: 1; }
.steps-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.empathy-steps-list { list-style: none; padding: 0; }
.empathy-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(15, 118, 110, .16);
}
.empathy-steps-list li:first-child { border-top: 0; padding-top: 4px; }
.step-num {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.empathy-steps-list h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.empathy-steps-list p { color: #46605C; font-size: 15px; }

/* ---------- Services ---------- */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(15, 118, 110, .25); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 20px;
  background: var(--mint);
  color: var(--teal);
  margin-bottom: 22px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.service-card:hover .service-icon { transform: translateY(-3px) rotate(-4deg); }
.service-card-hot .service-icon { background: rgba(255, 107, 87, .14); color: var(--coral-deep); }

.service-card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: 15px; }

/* ---------- Why us ---------- */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.why-visual { position: relative; }
.why-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(3.25rem, 6.6vw, 6rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat strong .stat-plus, .stat strong .stat-star { color: var(--coral); font-size: .72em; vertical-align: .18em; }
.stat > span { color: var(--slate); font-size: 14px; font-weight: 500; }

.checklist { display: grid; gap: 15px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 16px;
  font-weight: 500;
  color: #2B3B52;
}
.check {
  flex: none;
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal);
  margin-top: 1px;
}

/* ---------- Doctors ---------- */
.doctors { background: #fff; }
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1020px;
  margin-inline: auto;
}
.doctor-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.doctor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .3s ease, transform .4s ease;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doctor-card:hover::before { opacity: 1; transform: scaleX(1); }

.doctor-photo {
  position: relative;
  aspect-ratio: 5 / 4.1;
  overflow: hidden;
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
}
.doctor-card:hover .doctor-photo img { transform: scale(1.045); }
.doctor-tag {
  position: absolute;
  left: 20px; bottom: 18px;
  background: #fff;
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, .35);
}
.doctor-body { padding: 30px 30px 34px; }
.doctor-body h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 6px; }
.doctor-role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.doctor-bio { color: var(--slate); font-size: 15.5px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 215px;
  grid-auto-flow: dense;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  background: var(--mint);
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(11, 30, 28, .62), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #33415A;
  text-decoration: none;
  margin-top: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.reviews-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--coral-deep); letter-spacing: 3px; font-size: 15px; margin-bottom: 18px; }
.review-card p { font-size: 16.5px; line-height: 1.65; color: #2B3B52; flex: 1; }
.review-by { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.review-avatar-img {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mint);
  box-shadow: var(--shadow-sm);
}
.review-by strong { display: block; font-family: var(--font-head); font-size: 15px; }
.review-by span { display: block; font-size: 12.5px; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { padding-top: 40px; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #0F766E 0%, #115E59 58%, #0E5549 100%);
  border-radius: 40px;
  padding: 72px 48px 56px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 34px 70px -28px rgba(17, 94, 89, .55);
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  top: -190px; right: -120px;
  background: radial-gradient(circle, rgba(204, 251, 241, .18), transparent 68%);
}
.cta-card::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  bottom: -190px; left: -110px;
  background: radial-gradient(circle, rgba(255, 107, 87, .16), transparent 66%);
}
.cta-card .spark { position: absolute; z-index: 1; }
.spark-3 { top: 34px; right: 60px; }
.spark-4 { bottom: 40px; left: 70px; animation-delay: 2.2s; }

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  pointer-events: none;
}
.cta-ring-1 { width: 300px; height: 300px; top: -150px; right: 90px; }
.cta-ring-2 { width: 440px; height: 440px; bottom: -220px; left: 60px; }

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.cta-chip::before { content: '✦'; color: #FFB4A8; }

.cta-copy { position: relative; z-index: 2; margin-bottom: 34px; }
.cta-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-copy h2 em { font-style: normal; color: #FFB4A8; position: relative; }
.cta-copy p { font-size: 17px; color: rgba(255, 255, 255, .85); max-width: 560px; margin-inline: auto; }

.cta-actions {
  position: relative; z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.cta-note {
  position: relative; z-index: 2;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
}
.cta-note a { color: #fff; font-weight: 600; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--header-h) + 28px); }
.faq-head h2 { font-size: clamp(1.9rem, 3.3vw, 2.6rem); font-weight: 800; margin-bottom: 20px; }
.faq-head .lede { color: var(--slate); font-size: 17px; margin-bottom: 30px; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: rgba(15, 118, 110, .35); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
}
.faq-icon {
  position: relative;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--mint);
  transition: background .3s ease, transform .35s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--teal);
  border-radius: 3px;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 14px; transition: transform .35s ease; }
.faq-item.open .faq-icon { background: var(--coral); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a-inner p {
  padding: 0 24px 24px;
  color: var(--slate);
  font-size: 15.5px;
  max-width: 620px;
}
.faq-a-inner a { color: var(--teal); font-weight: 600; text-underline-offset: 3px; }

/* ---------- Visit ---------- */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 32px;
  align-items: stretch;
}
.visit-info { display: grid; gap: 20px; align-content: start; }
.visit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 28px 30px;
}
.visit-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
}
.visit-card p { color: #3B4C63; font-size: 15.5px; line-height: 1.7; }
.visit-card .visit-note { margin-top: 10px; font-size: 13.5px; color: var(--slate); }
.visit-card-coral { background: var(--mint); border-color: transparent; }
.visit-card-coral h3 { color: var(--coral-deep); }

.visit-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 100%; }
.visit-map iframe { width: 100%; height: 100%; min-height: 540px; display: block; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: #fff;
  margin-top: 0;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}
.site-footer::after {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 251, 241, .1), rgba(204, 251, 241, 0) 68%);
  pointer-events: none;
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-cta { margin-top: 20px; padding: 12px 22px; font-size: 14px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 48px;
  padding: 72px 24px 56px;
}
.footer-logo {
  width: 210px;
  height: auto;
  background: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 16px 34px -18px rgba(2, 20, 19, .6);
}
.footer-brand p { color: rgba(255, 255, 255, .78); font-size: 15px; max-width: 320px; }
.footer-rating { margin-top: 18px !important; color: #fff !important; font-family: var(--font-head); font-size: 14px !important; }
.footer-rating .stars, .footer-rating span { color: #FFB4A8; }
.footer-rating span { font-weight: 600; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--coral); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 15px;
  padding: 7px 0;
  transition: color .2s ease, transform .2s ease;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }

.footer-col .footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .8);
  font-size: 14.5px;
  line-height: 1.6;
  padding: 8px 0;
  text-decoration: none;
}
.f-contact-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #7DD3C8;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-col .footer-contact:hover .f-contact-icon { background: rgba(255, 255, 255, .16); color: #fff; transform: translateY(-2px); }
.f-contact-icon svg { display: block; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 26px 24px 96px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}
.footer-tagline {
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .02em;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
}
.footer-credit span { font-size: 12.5px; letter-spacing: .02em; }
.footer-credit strong {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  position: relative;
}
.footer-credit strong::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.footer-credit:hover strong::after { transform: scaleX(1); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  z-index: 90;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 34px -22px rgba(15, 23, 42, .35);
}
.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-bar-call {
  background: var(--bg);
  color: var(--teal-deep);
  border: 1.5px solid #CFE3E0;
}
.mobile-bar-call:active { background: var(--mint); }
.mobile-bar-book { background: var(--teal-deep); color: #fff; box-shadow: 0 12px 26px -12px rgba(17, 94, 89, .6); }
.mobile-bar-book:active { background: var(--teal-dark); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.22, .6, .25, 1), transform .75s cubic-bezier(.22, .6, .25, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Area / local ---------- */
.area { padding: 84px 0; }
.area-inner { text-align: center; }
.area-inner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 26px; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 26px;
  padding: 0;
  list-style: none;
}
.area-chips li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--mint);
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, .12);
  transition: background .25s ease, transform .25s ease;
}
.area-chips li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.area-chips li:hover { background: #E6FBF5; transform: translateY(-2px); }
.area-note { color: var(--slate); font-size: 15px; }

/* ---------- Booking ---------- */
.booking { background: var(--bg); }
.booking-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.booking-intro { min-width: 0; }
.booking-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 800; margin-bottom: 18px; }
.booking-intro .lede { color: var(--slate); font-size: 16.5px; margin-bottom: 26px; }
.booking-points { display: grid; gap: 14px; margin-bottom: 30px; }
.booking-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; font-weight: 500; color: #2B3B52; }
.booking-alt { display: flex; flex-wrap: wrap; gap: 12px; }

.booking-form-wrap { min-width: 0; }
.bk-flow { min-width: 0; }
.bk-step { min-width: 0; }
.booking-form { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 600; color: #33415A; margin-bottom: 6px; }
.field .field-opt { color: var(--slate); font-weight: 400; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  font: 400 15.5px var(--font-body);
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input::placeholder, .field textarea::placeholder { color: #94A3B8; }
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}
.booking-submit { width: 100%; }
.booking-note { font-size: 12.5px; color: var(--slate); text-align: center; margin-top: 4px; }

/* ---------- Booking flow (date -> time -> details) ---------- */
.bk-summary {
  background: var(--mint);
  border: 1px solid rgba(15, 118, 110, .14);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 26px;
}
.bk-summary-label { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 4px; }
.bk-summary-value { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--ink); }

.bk-flow { display: grid; gap: 4px; }
.bk-step-title { font-size: 1.08rem; font-weight: 800; margin-bottom: 14px; }
.bk-step-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.bk-step-head .bk-step-title { margin-bottom: 0; }
.bk-back { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--teal); background: none; border: 0; cursor: pointer; padding: 6px 10px; border-radius: 8px; transition: background .2s ease; }
.bk-back:hover { background: var(--mint); }
.bk-hidden { display: none !important; }

.bk-dates { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 10px; scrollbar-width: thin; }
.bk-date {
  flex: 0 0 auto;
  width: 70px;
  padding: 12px 6px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.bk-date:hover { border-color: var(--teal); transform: translateY(-2px); }
.bk-date[aria-selected="true"] { background: var(--teal-deep); border-color: var(--teal-deep); }
.bk-date b { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 800; margin: 2px 0; }
.bk-date .bk-dow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); }
.bk-date .bk-month { display: block; font-size: 11px; color: var(--slate); }
.bk-date[aria-selected="true"] b, .bk-date[aria-selected="true"] .bk-dow, .bk-date[aria-selected="true"] .bk-month { color: #fff; }

.bk-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bk-time {
  padding: 13px 10px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal-deep);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.bk-time:hover { border-color: var(--teal); transform: translateY(-2px); }
.bk-time[aria-selected="true"] { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }

.bk-details { display: grid; gap: 16px; margin-top: 2px; }

/* ---------- Review source (Google) ---------- */
.review-source { display: inline-flex; align-items: center; gap: 6px; }
.review-source svg { flex: none; }

@media (max-width: 900px) {
  .booking-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .area { padding: 64px 0; }
}
@media (max-width: 640px) {
  .booking-card { padding: 32px 20px; }
  .booking-alt .btn { width: 100%; }
  .bk-times { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header-phone { display: none; }
  .hero-inner { gap: 48px; grid-template-columns: 1fr 1fr; }
  .float-rating { left: -16px; }
  .float-open { right: -12px; }
  .why-grid { gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    box-shadow: 0 24px 40px -26px rgba(15, 23, 42, .3);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: 13px 6px; font-size: 16.5px; border-bottom: 1px solid #F1F5F9; }
  .site-nav a::after { display: none; }
  .site-nav a:last-child { border-bottom: 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding-top: 40px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { order: 2; }
  .hero-photo-wrap { width: min(100%, 430px); }
  .float-rating { left: -10px; }
  .float-open { right: -8px; }
  .blob-mint { width: 420px; height: 420px; top: -120px; }

  .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .empathy-panel { grid-template-columns: 1fr; gap: 36px; padding: 48px 36px; }
  .faq-head { position: static; }
  .why-visual { max-width: 560px; }
  .doctors-grid { grid-template-columns: 1fr; max-width: 520px; }
  .gallery-grid { grid-auto-rows: 190px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .container { padding-inline: 20px; }

  .hero { padding-top: 28px; }
  .hero-inner { padding: 36px 20px 80px; gap: 48px; }
  .hero h1 { font-size: clamp(2.15rem, 8.6vw, 2.7rem); }
  .hero-sub { font-size: 16.5px; }
  .hero-cta .btn { width: 100%; }
  .hero-chips { gap: 10px 18px; }
  .hero-photo-wrap { width: min(100%, 400px); }
  .float-card { padding: 12px 14px; }
  .float-rating { top: 12px; }
  .float-open { bottom: 18px; }
  .float-rating .float-card-icon { width: 40px; height: 40px; }
  .blob-teal { width: 380px; height: 380px; bottom: -160px; }

  .services-grid { grid-template-columns: 1fr; }
  .empathy-panel { padding: 40px 24px; border-radius: 28px; gap: 30px; }
  .empathy-intro .btn { width: 100%; }
  .stats-grid { gap: 14px; }
  .stat { padding: 22px 18px; }
  .checklist li { font-size: 15.5px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 14px; }
  .gallery-item figcaption { opacity: 1; transform: none; padding-top: 34px; font-size: 12.5px; }
  .cta-card { border-radius: 28px; padding: 52px 24px 44px; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .footer-bottom { justify-content: center; text-align: center; padding-bottom: 100px; }

  body { padding-bottom: 0; }
  .mobile-bar { display: flex; gap: 12px; }
  .section-head { margin-bottom: 44px; }
  .marquee-group { gap: 28px; padding-right: 28px; }
  .header-book { width: 44px; height: 44px; padding: 0; }
  .header-book .btn-label { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .float-card { animation: none; }
  .spark { animation: none; opacity: .6; }
}
