/* =========================================================
   Smile & Shining Dental Clinic
   Hand-written CSS. Mobile first. No framework.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy: #14395B;
  --blue: #1E86C7;
  --blue-dark: #176a9e;
  --teal: #43C1CB;
  --sky: #EAF4FA;
  --gold: #E4B44C;
  --page: #FBFCFD;
  --text: #55636E;
  --ink: #223540;
  --hairline: #E3EBF0;
  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(20, 57, 91, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 57, 91, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 57, 91, 0.16);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --maxw: 1200px;
  --gutter: 20px;

  --step-fast: 180ms;
  --step: 320ms;
  --step-slow: 620ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--page);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5.4vw, 3.15rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; transition: color var(--step-fast) var(--ease); }
a:hover { color: var(--blue-dark); }
ul, ol { padding-left: 1.15rem; }
li { margin: 0.3rem 0; }
strong { color: var(--ink); font-weight: 600; }
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--tint { background: var(--sky); }
.section--navy { background: var(--navy); color: #cfe0ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head {
  max-width: 640px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.section__head.center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.09rem; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Eyebrow with sparkle ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  background-color: var(--gold);
  -webkit-mask: var(--spark) center / contain no-repeat;
  mask: var(--spark) center / contain no-repeat;
}
:root {
  --spark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 5.4 3.6 8.4 9 9-5.4.6-8.4 3.6-9 9-.6-5.4-3.6-8.4-9-9 5.4-.6 8.4-3.6 9-9z'/%3E%3C/svg%3E");
}
.section--navy .eyebrow { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--step-fast) var(--ease),
              box-shadow var(--step-fast) var(--ease),
              background-color var(--step-fast) var(--ease),
              color var(--step-fast) var(--ease);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 134, 199, 0.28);
}
.btn--primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(30, 134, 199, 0.34); }
.btn--primary:active { transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn--wa { background: #25D366; color: #08331b; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28); }
.btn--wa:hover { background: #1fb857; color: #08331b; transform: translateY(-3px); }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Pills / tags ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
}
.pill--dot::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.pill--open::before { background: #2fbf6b; box-shadow: 0 0 0 4px rgba(47, 191, 107, 0.18); }
.pill--closed::before { background: #d98b3a; box-shadow: 0 0 0 4px rgba(217, 139, 58, 0.18); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 200;
  transition: top var(--step) var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow var(--step) var(--ease), padding var(--step) var(--ease), background var(--step) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(251, 252, 253, 0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
  transition: padding var(--step) var(--ease);
}
.site-header.is-scrolled .header-inner { padding-block: 0.45rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.brand img {
  height: 46px; width: auto;
  border-radius: 8px;
  transition: height var(--step) var(--ease);
}
.site-header.is-scrolled .brand img { height: 38px; }
.brand__text { display: none; }

.header-status {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.68rem;
  padding: 0.32rem 0.55rem;
  max-width: 46vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-toggle {
  margin-left: 0.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform var(--step) var(--ease), opacity var(--step) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--step) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow-y: auto;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  padding: 0.8rem 0.4rem;
  border-bottom: 1px solid var(--hairline);
}
.primary-nav a[aria-current="page"] { color: var(--blue); }
.primary-nav .btn { margin-top: 1rem; }
.primary-nav .wa-inline { margin-top: 0.4rem; }
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 57, 91, 0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--step) var(--ease);
  z-index: 99;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.wa-inline {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: #1a8f45;
}
.wa-inline svg { width: 18px; height: 18px; flex: none; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: #bcd3e6; }
.trust-strip ul {
  list-style: none;
  padding: 0.7rem 0;
  margin: 0;
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-strip ul::-webkit-scrollbar { display: none; }
.trust-strip li {
  flex: none;
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}
.trust-strip li svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; will-change: transform; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,57,91,0.72) 0%, rgba(20,57,91,0.62) 45%, rgba(20,57,91,0.9) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 12vw, 7rem);
  max-width: 680px;
}
.hero h1 { color: #fff; }
.hero p { color: #d6e4f0; font-size: 1.12rem; }
.hero .eyebrow { color: var(--teal); }
.hero .btn-row { margin-top: 1.8rem; }
.hero__meta {
  margin-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  font-size: 0.86rem; color: #bcd3e6;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__meta svg { width: 15px; height: 15px; color: var(--teal); }

/* ---------- Generic page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,57,91,0.78), rgba(20,57,91,0.92));
}
.page-hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(2.8rem, 9vw, 4.6rem);
  max-width: 720px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #d6e4f0; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--teal); }
.breadcrumb {
  font-size: 0.82rem; color: #9fbdd4;
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: #cfe0ee; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--step) var(--ease), box-shadow var(--step) var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  margin-top: 0.9rem;
}
.card__link svg { width: 15px; height: 15px; transition: transform var(--step-fast) var(--ease); }
.card__link:hover svg { transform: translateX(3px); }

/* media card (image on top) */
.media-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--step) var(--ease), box-shadow var(--step) var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.media-card__img { overflow: hidden; aspect-ratio: 4 / 3; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--step-slow) var(--ease); }
.media-card:hover .media-card__img img { transform: scale(1.06); }
.media-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.media-card__body h3 { margin-bottom: 0.35rem; }
.media-card__body p:last-child { margin-bottom: 0; }

/* split feature row */
.feature {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0.7rem 0;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  background-color: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 4.3rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.3rem; top: 1.4rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.step h3 { margin-bottom: 0.25rem; }
.step p:last-child { margin-bottom: 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--navy);
  line-height: 1;
}
.stat__label { font-size: 0.82rem; margin-top: 0.35rem; }
.section--navy .stat { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #bcd3e6; }

/* ---------- Consultation band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 540px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.4rem; }

/* soft inline CTA at end of sections */
.soft-cta {
  border: 1px dashed var(--hairline);
  border-radius: var(--radius);
  background: var(--sky);
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  margin-top: 1.6rem;
}
.soft-cta p { margin: 0; font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.soft-cta .btn { margin-left: auto; }

/* ---------- Treatment group block ---------- */
.tgroup { scroll-margin-top: 120px; }
.tgroup + .tgroup { margin-top: clamp(2.5rem, 6vw, 4rem); }
.tgroup__expect {
  background: var(--sky);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.tgroup__expect strong { display: block; margin-bottom: 0.2rem; color: var(--navy); font-family: var(--font-head); }
.price-note {
  font-size: 0.9rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  margin-top: 0.8rem;
}
.price-note span { color: var(--text); font-weight: 400; }

/* jump nav */
.jumpnav {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.jumpnav a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}
.jumpnav a:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Team ---------- */
.dentist { text-align: left; }
.dentist__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.dentist__img img { width: 100%; height: 100%; object-fit: cover; }
.dentist h3 { margin-bottom: 0.1rem; }
.dentist .role { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--blue); margin-bottom: 0.6rem; }

/* ---------- Patient stories ---------- */
.story {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.story__quote { font-size: 1.02rem; color: var(--ink); }
.story__quote::before { content: "\201C"; color: var(--teal); font-size: 2rem; font-family: Georgia, serif; line-height: 0; vertical-align: -0.35em; margin-right: 0.15rem; }
.story__who {
  margin-top: 1rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: var(--navy);
}
.disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text);
  margin-top: 1.5rem;
}

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--hairline); }
.accordion__item { border-bottom: 1px solid var(--hairline); }
.accordion__btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  position: relative;
}
.accordion__btn::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform var(--step) var(--ease);
}
.accordion__btn[aria-expanded="true"]::after { transform: rotate(-135deg); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--step) var(--ease);
}
.accordion__panel > div { overflow: hidden; }
.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.accordion__panel p { padding-bottom: 1.15rem; margin: 0; }
.accordion__panel p:first-child { padding-top: 0.2rem; }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.span-2 { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
}
.field .req { color: var(--blue); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--page);
  transition: border-color var(--step-fast) var(--ease), box-shadow var(--step-fast) var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 134, 199, 0.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--step-fast) var(--ease), background var(--step-fast) var(--ease);
}
.radio-row input { width: auto; accent-color: var(--blue); }
.radio-row label:has(input:checked) { border-color: var(--blue); background: var(--sky); color: var(--navy); }
.form-note { font-size: 0.84rem; margin-top: 0.4rem; }
.form-success {
  display: none;
  border: 1px solid var(--teal);
  background: var(--sky);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-top: 1.2rem;
}
.form-success.is-visible { display: block; animation: rise var(--step-slow) var(--ease) both; }
.form-success h3 { color: var(--navy); margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem; }
.form-success svg { width: 22px; height: 22px; color: #2fbf6b; flex: none; }
.form-success p:last-child { margin-bottom: 0; }

/* ---------- Contact info list ---------- */
.info-list { list-style: none; padding: 0; }
.info-list li {
  display: flex; gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--hairline);
}
.info-list li:last-child { border-bottom: none; }
.info-list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }
.info-list strong { display: block; font-family: var(--font-head); color: var(--navy); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.hours-table th, .hours-table td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--hairline); }
.hours-table th { font-family: var(--font-head); color: var(--navy); font-weight: 600; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #a9c4da;
  padding-block: 3rem 1.5rem;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer img.footer-logo { height: 68px; width: auto; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 0.8rem; letter-spacing: 0.02em; }
.site-footer a { color: #cfe0ee; }
.site-footer a:hover { color: #fff; }
.footer-nav, .footer-contact { list-style: none; padding: 0; }
.footer-nav li, .footer-contact li { margin: 0.45rem 0; font-size: 0.9rem; }
.footer-contact li { display: flex; gap: 0.5rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal); flex: none; margin-top: 3px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.footer-badges span {
  font-size: 0.76rem;
  font-family: var(--font-head); font-weight: 600;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #cfe0ee;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  font-size: 0.8rem;
  color: #8fb0c9;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; justify-content: space-between;
}
.footer-legal { max-width: 640px; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  transform: translateY(120%);
  transition: transform var(--step) var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; padding: 0.8rem 0.6rem; font-size: 0.88rem; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--step-slow) var(--ease), transform var(--step-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  :root { --gutter: 32px; }
  .brand__text {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--navy);
    line-height: 1.1;
    white-space: nowrap;
  }
  .brand__text small { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr; }
  .mobile-bar { display: none; }
  .trust-strip ul { justify-content: space-between; overflow: visible; }
}
@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .header-inner { gap: 0.75rem; }
  .header-status { margin-left: auto; white-space: nowrap; flex: none; font-size: 0.75rem; padding: 0.4rem 0.7rem; max-width: none; }
  .primary-nav {
    position: static;
    width: auto;
    transform: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    background: none;
    overflow: visible;
    margin-left: 1rem;
  }
  .primary-nav a {
    border-bottom: none;
    padding: 0.5rem 0.55rem;
    font-size: 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
  }
  .primary-nav a:hover { background: var(--sky); }
  .primary-nav a[aria-current="page"] { background: var(--sky); }
  .primary-nav .wa-inline { margin: 0 0.2rem; font-size: 0; gap: 0; padding: 0.5rem 0.4rem; }
  .primary-nav .wa-inline svg { width: 20px; height: 20px; }
  .primary-nav .btn { margin: 0 0 0 0.35rem; }
  .primary-nav > a.btn { margin-left: 0.35rem; padding: 0.7rem 1rem; }
  .nav-backdrop { display: none; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .feature { gap: 3rem; }
}
@media (min-width: 1320px) {
  .primary-nav a { font-size: 0.9rem; padding: 0.5rem 0.7rem; }
  .primary-nav { gap: 0.15rem; margin-left: 1.4rem; }
  .brand__text small {
    display: block; font-weight: 400; font-size: 0.72rem;
    color: var(--text); letter-spacing: 0.02em; white-space: nowrap;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__media img { transform: none !important; }
  .card:hover, .media-card:hover, .btn:hover { transform: none !important; }
  .media-card:hover .media-card__img img { transform: none !important; }
}
