/* ===========================================================================
   ORADENT Dental Care — design system
   Mobile-first. No framework, no web fonts: the whole stylesheet is one
   render-blocking request, which is what keeps LCP under control on 3G/4G.
   =========================================================================== */

/* ------------------------------------------------------------- tokens ----- */
:root {
  /* Brand — sampled from the clinic's own signage and logo */
  --navy-900: #0b1b3d;
  --navy-800: #12275a;
  --navy-700: #182a5a;
  --navy-600: #1f3d78;
  --navy-500: #2d5296;
  --teal-700: #075c78;
  --teal-600: #0a7297;
  --teal-500: #0e8bb0;
  --teal-400: #29a8c9;
  --blue-600: #0160a2;

  --ink:        #10182b;
  --ink-soft:   #46536b;
  --ink-mute:   #6b7893;
  --line:       #e2e7f0;
  --line-soft:  #eef1f7;
  --surface:    #ffffff;
  --surface-2:  #f6f8fc;
  --surface-3:  #eef3f9;

  --ok:      #0f7a4f;
  --ok-bg:   #e7f6ee;
  --warn:    #9a5b00;
  --warn-bg: #fdf3e2;
  --bad:     #b3261e;
  --bad-bg:  #fdecea;
  --whatsapp:#25d366;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 43, .06), 0 1px 3px rgba(16, 24, 43, .04);
  --shadow:    0 4px 12px rgba(16, 24, 43, .07), 0 2px 4px rgba(16, 24, 43, .04);
  --shadow-lg: 0 18px 40px rgba(11, 27, 61, .13), 0 4px 12px rgba(11, 27, 61, .06);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          "Noto Sans", Arial, sans-serif;

  --wrap: 1160px;
  --gap: clamp(1rem, 3vw, 1.75rem);
  --section-y: clamp(3.25rem, 8vw, 6rem);

  --header-h: 66px;
  --mobilebar-h: 60px;

  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-underline-offset: 3px; }
a:hover { color: var(--teal-600); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -.021em;
  color: var(--navy-900);
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.75vw, 2.4rem); }
h3 { font-size: clamp(1.16rem, 1.03rem + .55vw, 1.42rem); }
h4 { font-size: 1.04rem; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li + li { margin-top: .38em; }
strong { font-weight: 700; color: var(--navy-800); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- layout ----- */
.wrap { width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.2rem, 780px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); }
.section--deep { background: var(--navy-900); color: #dfe6f2; }
.section--deep h2, .section--deep h3 { color: #fff; }

.grid { display: grid; gap: var(--gap); }
/* Grid/flex tracks default to min-width:auto, so a horizontally scrolling child
   (date strip, slider, wide table) can blow the whole column out. Reset it. */
.grid > *, .booking > *, .doctor > *, .cta-band > *, .svc-layout > *, .faq-layout > * { min-width: 0; }
@media (min-width: 620px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .755rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-600);
  margin-bottom: .7rem;
}
.section--deep .eyebrow { color: var(--teal-400); }
.lede { font-size: clamp(1.04rem, 1rem + .3vw, 1.19rem); color: var(--ink-soft); }

/* ------------------------------------------------------------ buttons ----- */
.btn {
  --btn-bg: var(--teal-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem;
  min-height: 48px;
  font: inherit; font-weight: 700; font-size: .97rem;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid transparent; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary  { --btn-bg: var(--teal-600); }
.btn--primary:hover { --btn-bg: var(--teal-700); }
.btn--navy     { --btn-bg: var(--navy-800); }
.btn--navy:hover { --btn-bg: var(--navy-900); }
.btn--ghost    { --btn-bg: transparent; --btn-fg: var(--navy-800); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--surface-2); border-color: var(--navy-500); }
.btn--on-dark  { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.16); }
.btn--wa       { --btn-bg: var(--whatsapp); --btn-fg: #06301a; }
.btn--wa:hover { --btn-bg: #1fbe5b; }
.btn--lg  { padding: 1rem 1.9rem; font-size: 1.04rem; min-height: 54px; }
.btn--sm  { padding: .5rem 1rem; min-height: 40px; font-size: .87rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ------------------------------------------------------------- topbar ----- */
.topbar {
  background: var(--navy-900); color: #c8d5ea;
  font-size: .815rem; letter-spacing: .01em;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar__item { display: inline-flex; align-items: center; gap: .42rem; }
.topbar__item svg { width: 15px; height: 15px; opacity: .8; flex: none; }
.topbar__right { display: flex; align-items: center; gap: 1.15rem; }

/* Opening hours live beside the status on wide screens and on their own wrapped
   row below 800px — where "Currently closed" with no times used to be all a
   phone showed. */
.topbar__hours-sm { display: none; }
@media (max-width: 800px) {
  .topbar__hide-sm { display: none; }
  .topbar__in { flex-wrap: wrap; row-gap: .1rem; padding-top: .34rem; padding-bottom: .34rem; }
  .topbar__in > .topbar__item, .topbar__right { min-width: 0; }
  .topbar__hours-sm {
    display: block; flex-basis: 100%; order: 3;
    font-size: .76rem; color: #a9bcd8; line-height: 1.35;
  }
}

.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #3ddc84; box-shadow: 0 0 0 3px rgba(61, 220, 132, .22);
}
.status-dot--shut { background: #ff8a7a; box-shadow: 0 0 0 3px rgba(255, 138, 122, .2); }

/* ------------------------------------------------------------- header ----- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__name {
  font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; color: var(--navy-900);
}
.brand__name em { font-style: normal; color: var(--teal-600); }
.brand__sub { font-size: .655rem; letter-spacing: .19em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: block; padding: .58rem .8rem; border-radius: 8px;
  font-size: .935rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover { background: var(--surface-2); color: var(--navy-800); }
.nav__link[aria-current] { color: var(--navy-900); font-weight: 700; }
.nav__link[aria-current]::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--teal-500); margin-top: 4px;
}
.header__cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 11px; cursor: pointer; color: var(--navy-900);
}
.nav-toggle svg { width: 23px; height: 23px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (min-width: 1040px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(11, 27, 61, .5);
  opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s;
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; inset-block: 0; right: 0;
  width: min(88vw, 370px); background: #fff;
  padding: 1.1rem 1.2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.3, .8, .4, 1);
  display: flex; flex-direction: column; gap: .3rem;
}
.drawer[data-open="true"] .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer__link {
  display: block; padding: .82rem .3rem; font-size: 1.03rem; font-weight: 600;
  color: var(--navy-800); text-decoration: none; border-bottom: 1px solid var(--line-soft);
}
.drawer__link[aria-current] { color: var(--teal-600); }
.drawer__actions { margin-top: 1.4rem; display: grid; gap: .65rem; }
.drawer__meta { margin-top: 1.6rem; font-size: .86rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- hero ----- */
.hero {
  position: relative; isolation: isolate;
  background: linear-gradient(160deg, var(--navy-900) 0%, #143063 52%, var(--teal-700) 130%);
  color: #e8eefa; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 88% 15%, rgba(41, 168, 201, .3), transparent 70%),
    radial-gradient(45% 45% at 5% 95%, rgba(1, 96, 162, .35), transparent 70%);
}
.hero__in {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(2.75rem, 7vw, 5.25rem);
  align-items: center;
}
@media (min-width: 940px) { .hero__in { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 span { color: var(--teal-400); display: block; }
.hero__lede { font-size: clamp(1.03rem, .98rem + .35vw, 1.16rem); color: #c2d2ea; max-width: 34em; }
.hero__quote { font-style: italic; color: var(--teal-400); font-weight: 600; }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .42rem .95rem .42rem .6rem;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px; font-size: .82rem; font-weight: 600; color: #dbe6f7;
  margin-bottom: 1.1rem;
}
.pill svg { width: 16px; height: 16px; color: var(--teal-400); }

.hero__points {
  list-style: none; padding: 0; margin: 1.9rem 0 0;
  display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; font-size: .89rem; color: #b8c9e3;
}
.hero__points li { display: inline-flex; align-items: center; gap: .42rem; margin: 0; }
.hero__points svg { width: 17px; height: 17px; color: var(--teal-400); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px rgba(2, 12, 32, .45);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__badge {
  position: absolute; left: -8px; bottom: -18px;
  background: #fff; color: var(--navy-900);
  border-radius: var(--radius); padding: .85rem 1.1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .7rem;
  max-width: 15rem;
}
.hero__badge > svg { width: 30px; height: 30px; flex: none; color: #f4a825; }
.hero__badge b { display: block; font-size: 1.42rem; line-height: 1; color: var(--teal-600); }
.hero__badge span { font-size: .77rem; color: var(--ink-soft); line-height: 1.35; }
.hero__badge span span { display: block; }
@media (max-width: 939px) { .hero__badge { position: static; margin-top: 1rem; max-width: none; } }

/* --------------------------------------------------------- trust strip ---- */
.trust {
  background: var(--surface-2); border-bottom: 1px solid var(--line);
  padding-block: 1.15rem;
}
.trust__in {
  display: grid; gap: .85rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  font-size: .855rem; color: var(--ink-soft);
}
@media (min-width: 800px) { .trust__in { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; align-items: center; gap: .6rem; }
.trust__item svg { width: 21px; height: 21px; color: var(--teal-600); flex: none; }
.trust__item b { display: block; color: var(--navy-900); font-size: .93rem; }

/* --------------------------------------------------------------- card ----- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #cddcf0; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-soft); font-size: .945rem; margin-bottom: 0; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 1.05rem;
  background: linear-gradient(140deg, var(--teal-600), var(--blue-600));
  color: #fff;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--soft { background: var(--surface-3); color: var(--teal-700); }

.service-card { display: flex; flex-direction: column; text-decoration: none; height: 100%; }
.service-card h3 { color: var(--navy-900); }
.service-card__more {
  margin-top: auto; padding-top: 1rem;
  font-weight: 700; font-size: .87rem; color: var(--teal-600);
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-card__more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.service-card:hover .service-card__more svg { transform: translateX(3px); }

/* ------------------------------------------------------------- doctor ----- */
.doctor { display: grid; gap: clamp(1.8rem, 5vw, 3.4rem); align-items: center; }
@media (min-width: 900px) { .doctor { grid-template-columns: .85fr 1.15fr; } }
.doctor__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.doctor__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }
.doctor__creds { list-style: none; padding: 0; margin: 1.3rem 0 1.7rem; display: grid; gap: .7rem; }
.doctor__creds li { display: flex; gap: .7rem; align-items: flex-start; margin: 0; }
.doctor__creds svg { width: 21px; height: 21px; color: var(--teal-600); flex: none; margin-top: 2px; }

.stat-row { display: flex; flex-wrap: wrap; gap: 1.8rem; margin: 1.6rem 0; }
.stat b { display: block; font-size: 1.85rem; line-height: 1; color: var(--teal-600); font-weight: 800; }
.stat span { font-size: .83rem; color: var(--ink-mute); }

/* ------------------------------------------------------------- slider ----- */
.slider { position: relative; }
.slider__track {
  display: flex; gap: var(--gap);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: .4rem; scroll-behavior: smooth;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide {
  flex: 0 0 auto; scroll-snap-align: start;
  width: min(86%, 380px);
}
@media (min-width: 760px) { .slider__slide { width: min(46%, 420px); } }
@media (min-width: 1080px) { .slider__slide { width: calc((var(--wrap) - 2 * var(--gap)) / 3); } }
.slider--wide .slider__slide { width: min(92%, 900px); }

.slider__nav { display: flex; gap: .55rem; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy-800);
  cursor: pointer; display: grid; place-items: center;
  transition: background-color .15s ease, border-color .15s ease;
}
.slider__btn:hover:not(:disabled) { background: var(--surface-2); border-color: var(--navy-500); }
.slider__btn:disabled { opacity: .38; cursor: default; }
.slider__btn svg { width: 19px; height: 19px; }
.slider__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem);
}
.slider__head .section-head { margin-bottom: 0; }
@media (max-width: 640px) { .slider__nav { display: none; } }

.gallery-figure { margin: 0; }
.gallery-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.gallery-figure figcaption {
  margin-top: .75rem; font-size: .87rem; color: var(--ink-soft);
}

/* ------------------------------------------------------------ reviews ----- */
.review { display: flex; flex-direction: column; height: 100%; }
.review__stars { color: #f4a825; letter-spacing: .12em; margin-bottom: .7rem; font-size: 1.02rem; }
.review__text { font-size: .97rem; color: var(--ink-soft); }
.review__who { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; gap: .7rem; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .95rem;
  background: linear-gradient(140deg, var(--navy-600), var(--teal-600));
}
.review__who b { display: block; font-size: .9rem; color: var(--navy-900); }
.review__who span { font-size: .78rem; color: var(--ink-mute); }

/* ---------------------------------------------------------------- faq ----- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.15rem .2rem; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem; color: var(--navy-900);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; width: 11px; height: 11px; flex: none;
  border-right: 2.5px solid var(--teal-600); border-bottom: 2.5px solid var(--teal-600);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq__item summary:hover { color: var(--teal-700); }
.faq__answer { padding: 0 .2rem 1.3rem; color: var(--ink-soft); max-width: 68ch; }

/* -------------------------------------------------------------- forms ----- */
.field { display: block; margin-bottom: 1.1rem; }
.field__label {
  display: block; font-weight: 700; font-size: .89rem;
  color: var(--navy-800); margin-bottom: .42rem;
}
.field__label .req { color: var(--bad); }
.field__hint { font-size: .8rem; color: var(--ink-mute); margin-top: .35rem; }

.input, .select, .textarea {
  width: 100%; padding: .78rem .95rem; min-height: 48px;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.input:hover, .select:hover, .textarea:hover { border-color: #c4d0e4; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(14, 139, 176, .15);
}
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--bad); }
.textarea { min-height: 118px; resize: vertical; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2346536b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
  padding-right: 2.6rem;
}
.field__error { color: var(--bad); font-size: .82rem; margin-top: .35rem; font-weight: 600; }

.form-grid { display: grid; gap: 0 1.1rem; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.alert {
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  border: 1px solid; margin-bottom: 1.4rem; font-size: .94rem;
}
.alert--ok  { background: var(--ok-bg);  border-color: #b8e3cd; color: #0b5c3c; }
.alert--bad { background: var(--bad-bg); border-color: #f3c4bf; color: #8f1d17; }
.alert--warn{ background: var(--warn-bg);border-color: #f0dcb6; color: #7a4700; }
.alert strong { color: inherit; }

/* ------------------------------------------------------------ booking ----- */
.booking { display: grid; gap: var(--gap); align-items: start; }
@media (min-width: 980px) { .booking { grid-template-columns: 1.35fr .9fr; } }

.booking__panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.3rem, 3.5vw, 2.1rem);
  box-shadow: var(--shadow);
}

.step { margin-bottom: 1.9rem; }
.step:last-child { margin-bottom: 0; }
.step__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.step__num {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center; font-size: .87rem; font-weight: 800;
}
.step__title { font-weight: 800; color: var(--navy-900); font-size: 1.06rem; }

/* date strip */
.datestrip { position: relative; }
.datestrip__track {
  display: flex; gap: .55rem; overflow-x: auto;
  scroll-snap-type: x proximity; padding-bottom: .5rem;
  scrollbar-width: thin;
}
.datechip {
  flex: 0 0 auto; scroll-snap-align: start;
  width: 66px; padding: .6rem .3rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; text-align: center;
  font: inherit; color: var(--ink-soft);
  transition: border-color .14s ease, background-color .14s ease, transform .14s ease;
}
.datechip:hover:not(:disabled) { border-color: var(--teal-500); transform: translateY(-2px); }
.datechip__dow { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.datechip__day { display: block; font-size: 1.24rem; font-weight: 800; color: var(--navy-900); line-height: 1.2; }
.datechip__mon { display: block; font-size: .68rem; color: var(--ink-mute); }
.datechip[aria-pressed="true"] {
  background: var(--navy-800); border-color: var(--navy-800); color: #cfe0f5;
}
.datechip[aria-pressed="true"] .datechip__day,
.datechip[aria-pressed="true"] .datechip__mon { color: #fff; }
.datechip:disabled { opacity: .4; cursor: not-allowed; background: var(--surface-2); }

/* slot grid */
.session + .session { margin-top: 1.35rem; }
.session__label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: .7rem;
}
.session__label svg { width: 16px; height: 16px; color: var(--teal-600); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .5rem; }
.slot {
  padding: .68rem .3rem; min-height: 46px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  font: inherit; font-size: .89rem; font-weight: 700; color: var(--navy-800);
  cursor: pointer; transition: all .14s ease;
}
.slot:hover:not(:disabled) { border-color: var(--teal-500); background: #f2fbfe; }
.slot[aria-pressed="true"] { background: var(--teal-600); border-color: var(--teal-600); color: #fff; }
.slot:disabled {
  color: var(--ink-mute); background: var(--surface-2);
  border-color: var(--line-soft); cursor: not-allowed;
  text-decoration: line-through; text-decoration-thickness: 1px;
}
.slots-empty {
  padding: 1.4rem; background: var(--surface-2); border-radius: var(--radius-sm);
  color: var(--ink-soft); font-size: .93rem; text-align: center;
}
.is-loading { opacity: .45; pointer-events: none; }

.summary-box {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.35rem;
}
.summary-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .55rem 1.1rem; font-size: .93rem; }
.summary-box dt { color: var(--ink-mute); }
.summary-box dd { margin: 0; font-weight: 700; color: var(--navy-900); text-align: right; }

.aside-card {
  background: var(--navy-900); color: #cbd8ec;
  border-radius: var(--radius-lg); padding: 1.6rem;
}
.aside-card h3 { color: #fff; font-size: 1.1rem; }
.aside-card ul { list-style: none; padding: 0; margin: 1rem 0 0; font-size: .92rem; }
.aside-card li { display: flex; gap: .65rem; margin-bottom: .8rem; }
.aside-card svg { width: 18px; height: 18px; color: var(--teal-400); flex: none; margin-top: 3px; }
.aside-card a { color: #fff; }

/* confirmation */
.confirm-card {
  text-align: center; padding: clamp(1.8rem, 5vw, 3rem);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow);
}
.confirm-card__tick {
  width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: var(--ok-bg); color: var(--ok); display: grid; place-items: center;
}
.confirm-card__tick svg { width: 36px; height: 36px; }
.ref-badge {
  display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.32rem; font-weight: 700; letter-spacing: .06em;
  background: var(--surface-2); border: 1px dashed var(--navy-500);
  border-radius: 10px; padding: .6rem 1.2rem; color: var(--navy-900);
  margin: .5rem 0 1.4rem;
}

/* --------------------------------------------------------- breadcrumbs ---- */
.crumbs { font-size: .84rem; color: var(--ink-mute); padding-block: .95rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.crumbs li + li::before { content: "/"; color: #b9c4d8; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--teal-600); text-decoration: underline; }

.page-head {
  background: linear-gradient(150deg, var(--navy-900), #16336b 85%);
  color: #d5e0f2; padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.page-head h1 { color: #fff; margin-bottom: .6rem; }
.page-head p { color: #b6c7e2; max-width: 60ch; margin-bottom: 0; }
.page-head .crumbs { color: #93a8c9; padding-top: 0; }
.page-head .crumbs a { color: #b6c7e2; }
.page-head .crumbs li + li::before { color: #5f76a0; }

/* ------------------------------------------------------------- prose ------ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9rem; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.035rem; }
.prose strong { color: var(--navy-800); }

.factbar {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  background: var(--surface-2); border-left: 4px solid var(--teal-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.05rem 1.3rem; margin-bottom: 2rem;
}
.factbar div { font-size: .87rem; color: var(--ink-mute); }
.factbar b { display: block; color: var(--navy-900); font-size: .97rem; }

/* -------------------------------------------------------------- map ------- */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.map-frame iframe { display: block; width: 100%; height: 400px; border: 0; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .95rem; margin: 0; }
.contact-list .icon-badge { width: 44px; height: 44px; border-radius: 12px; margin: 0; flex: none; }
.contact-list .icon-badge svg { width: 21px; height: 21px; }
.contact-list b { display: block; color: var(--navy-900); font-size: .92rem; }
.contact-list span, .contact-list a { font-size: .95rem; color: var(--ink-soft); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { text-align: left; padding: .6rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-table th { font-weight: 700; color: var(--navy-900); }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--teal-700); font-weight: 800; }
.hours-table tr.is-shut td { color: var(--ink-mute); }

/* ------------------------------------------------------------- footer ----- */
.footer { background: var(--navy-900); color: #a9bcd8; padding-block: clamp(2.8rem, 6vw, 4rem) 0; font-size: .93rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .01em; }
.footer a { color: #c3d3ea; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 2.2rem; }
@media (min-width: 700px)  { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.25fr; } }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer li { margin: 0; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #7f93b4; }
.footer__about { margin-top: 1rem; max-width: 34ch; color: #97abc9; }
.footer__bottom {
  margin-top: 2.6rem; border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  justify-content: space-between; font-size: .84rem; color: #8298b8;
}
.footer__bottom a { color: #8298b8; }

/* --------------------------------------------------------- mobile bar ----- */
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 18px rgba(11, 27, 61, .09);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .18rem; min-height: var(--mobilebar-h);
  font-size: .73rem; font-weight: 700; color: var(--navy-800); text-decoration: none;
}
.mobile-bar a + a { border-left: 1px solid var(--line-soft); }
.mobile-bar svg { width: 21px; height: 21px; }
.mobile-bar .is-wa { color: #10893e; }
.mobile-bar .is-book { color: #fff; background: var(--teal-600); }
@media (min-width: 1040px) { .mobile-bar { display: none; } }
@media (max-width: 1039px) { body { padding-bottom: var(--mobilebar-h); } }

/* --------------------------------------------------------------- misc ----- */
.tag {
  display: inline-block; padding: .22rem .6rem; border-radius: 100px;
  font-size: .74rem; font-weight: 800; letter-spacing: .03em;
  background: var(--surface-3); color: var(--teal-700);
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--gap); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.1rem; }

.cta-band {
  background: linear-gradient(135deg, var(--teal-700), var(--navy-800) 72%);
  color: #dceaf7; border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: grid; gap: 1.6rem; align-items: center;
}
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.5fr auto; } }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { margin-bottom: 0; color: #bed4ea; }

@media print {
  .header, .topbar, .mobile-bar, .footer, .drawer, .btn { display: none !important; }
  body { padding: 0; color: #000; }
}

/* =========================================================================
   Showcase image / video slider
   One slide at a time, native scroll-snap (so touch swipe is the browser's,
   not ours), with arrows, dots and optional autoplay.
   ========================================================================= */
.showcase { position: relative; }

.showcase__viewport {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--navy-900);
  scroll-behavior: smooth;
}
.showcase__viewport::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .showcase__viewport { scroll-behavior: auto; } }

.showcase__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  min-width: 0;
}
.showcase__slide img,
.showcase__slide video {
  display: block; width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy-900);
}
@media (max-width: 600px) { .showcase__slide img, .showcase__slide video { aspect-ratio: 4 / 3; } }

.showcase__cap {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 3.2rem 1.4rem 1.15rem;
  background: linear-gradient(to top, rgba(6, 16, 38, .88) 12%, rgba(6, 16, 38, .55) 52%, transparent);
  color: #fff; pointer-events: none;
}
.showcase__cap b { display: block; font-size: 1.05rem; margin-bottom: .15rem; }
.showcase__cap span { font-size: .89rem; color: #cfdcee; }
@media (max-width: 600px) {
  .showcase__cap { padding: 2.4rem 1rem .95rem; }
  .showcase__cap b { font-size: .96rem; }
  .showcase__cap span { font-size: .82rem; }
}

/* arrows */
.showcase__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .93); color: var(--navy-900);
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  box-shadow: 0 3px 14px rgba(6, 16, 38, .3);
  transition: background-color .15s ease, opacity .15s ease;
}
.showcase__arrow:hover:not(:disabled) { background: #fff; }
.showcase__arrow:disabled { opacity: 0; pointer-events: none; }
.showcase__arrow svg { width: 20px; height: 20px; }
.showcase__arrow--prev { left: .8rem; }
.showcase__arrow--next { right: .8rem; }
@media (max-width: 600px) { .showcase__arrow { width: 38px; height: 38px; } }

/* dots + play/pause */
.showcase__bar {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; margin-top: 1rem;
}
.showcase__dots { display: flex; gap: .45rem; }
.showcase__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%;
  border: 0; background: #c3cede; cursor: pointer;
  transition: background-color .18s ease, width .18s ease;
}
.showcase__dot[aria-current="true"] { background: var(--teal-600); width: 26px; border-radius: 5px; }
.showcase__toggle {
  width: 30px; height: 30px; border-radius: 50%; padding: 0;
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  display: grid; place-items: center; cursor: pointer;
}
.showcase__toggle:hover { color: var(--navy-800); border-color: var(--navy-500); }
.showcase__toggle svg { width: 13px; height: 13px; }

/* clinic feature cards */
.feature-card { display: flex; flex-direction: column; height: 100%; }
.feature-card ul {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: grid; gap: .55rem;
}
.feature-card li {
  display: flex; gap: .55rem; align-items: flex-start;
  margin: 0; font-size: .9rem; color: var(--ink-soft);
}
.feature-card li svg { width: 16px; height: 16px; color: var(--teal-600); flex: none; margin-top: 3px; }
