@charset "UTF-8";
/* ==========================================================================
   Dental Day — redesign prototype
   Theme: "The page is a day." Dawn hero → bright midday → dusk footer.
   Palette derived from the practice logo (tooth blue + rising sun amber).
   Body face: Atkinson Hyperlegible (designed for low-vision readers).
   Display face: Zilla Slab.
   ========================================================================== */

:root {
  /* palette */
  --ink: #0e2a47;        /* pre-dawn navy: headings, body text */
  --ink-soft: #33506e;   /* muted navy for secondary text */
  --sky: #1b7fbe;        /* brand blue — decorative, large text only */
  --sky-deep: #0f5e93;   /* AA-safe blue: links, filled buttons */
  --dawn: #f49c2d;       /* brand amber — primary action surfaces (ink text on top) */
  --dawn-soft: #fbe3c2;  /* pale amber tint */
  --shell: #fdfbf7;      /* warm paper white */
  --mist: #eaf3f9;       /* pale sky tint for alternating sections */
  --line: #d7e3ec;       /* decorative borders only (cards, rules) */
  --line-strong: #7d94a8;/* form-control borders — ≥3:1 on shell & white (WCAG 1.4.11) */
  --error: #9f1d1d;
  --success: #17643b;

  /* type scale (root font-size is controlled by the Aa widget: 20 / 22 / 24).
     Display steps are fluid: they shrink gracefully on phones without a breakpoint. */
  --step--1: 0.85rem;
  --step-0: 1rem;
  --step-1: 1.2rem;
  --step-2: 1.5rem;
  --step-3: clamp(1.6rem, 1.3rem + 1.5vw, 2rem);
  --step-4: clamp(1.9rem, 1.4rem + 2.4vw, 2.7rem);
  --step-5: clamp(2.2rem, 1.5rem + 3.4vw, 3.4rem);

  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 10px 30px rgba(14, 42, 71, 0.10);
  --shadow-lift: 0 16px 40px rgba(14, 42, 71, 0.16);
  --wrap: 71rem;
}

html { font-size: 20px; scroll-behavior: smooth; }
html[data-textsize="lg"] { font-size: 22px; }
html[data-textsize="xl"] { font-size: 24px; }

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

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--shell);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Zilla Slab", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-5); font-weight: 700; }
h2 { font-size: var(--step-4); font-weight: 600; }
h3 { font-size: var(--step-2); font-weight: 600; }
p  { margin: 0 0 1em; max-width: 65ch; }

a { color: var(--sky-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
/* dark surfaces: the navy utility bar & footer need a light ring (10.9:1 on --ink) */
.utility :focus-visible,
.site-footer :focus-visible,
.skip-link:focus-visible { outline-color: #ffd9a1; }

/* anchored jumps land below the sticky header */
[id] { scroll-margin-top: 6rem; }

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

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.7em 1.2em; z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.4rem; }

/* --------------------------------------------------------------------------
   Utility bar + header
   -------------------------------------------------------------------------- */
.utility {
  background: var(--ink); color: #e8f0f8;
  font-size: var(--step--1);
}
.utility .wrap {
  display: flex; flex-wrap: wrap; gap: 0.3rem 1.4rem;
  align-items: center; justify-content: space-between;
  padding-block: 0.45rem;
}
.utility a { color: #ffd9a1; }

/* address = one-tap directions link */
.u-addr {
  display: inline-flex; align-items: center; gap: 0.45em;
  color: #e8f0f8 !important; text-decoration: none;
  min-height: 36px;
}
.u-addr:hover .u-dir, .u-addr:focus-visible .u-dir { background: var(--dawn); color: var(--ink); border-color: var(--dawn); }
.u-ico { font-size: 0.95em; }
.u-dir {
  margin-left: 0.55em;
  border: 1.5px solid rgba(255,217,161,0.7); color: #ffd9a1;
  border-radius: 999px; padding: 0.05em 0.7em;
  font-weight: 700; font-size: 0.9em; white-space: nowrap;
}

/* live open/closed status */
/* "Request an appointment" chip — same look/size as the Directions chip */
.u-book {
  border: 1.5px solid rgba(255,217,161,0.7); color: #ffd9a1 !important;
  border-radius: 999px; padding: 0.05em 0.7em;
  font-weight: 700; font-size: 0.9em; white-space: nowrap;
  text-decoration: none; min-height: 36px; display: inline-flex; align-items: center;
}
.u-book:hover, .u-book:focus-visible { background: var(--dawn); color: var(--ink) !important; border-color: var(--dawn); }
.u-book .ub-short { display: none; }
@media (max-width: 640px) {
  .u-book .ub-long { display: none; }
  .u-book .ub-short { display: inline; }
}

.u-hours { display: inline-flex; align-items: center; gap: 0.5em; min-height: 36px; }
.u-dot {
  width: 0.62em; height: 0.62em; border-radius: 50%;
  background: #9db4cc; flex: none;               /* neutral until JS resolves */
}
.u-hours.is-open .u-dot { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.7); }
.u-hours.is-closed .u-dot { background: #f0a860; }

@media (max-width: 640px) {
  .u-suite, .u-city { display: none; }            /* keep the bar compact on phones */
}

.textsize-btn {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 8px; padding: 0.15rem 0.7rem;
  font-family: inherit; font-size: var(--step--1); font-weight: 700;
  cursor: pointer; min-height: 36px;
}
.textsize-btn:hover { border-color: var(--dawn); color: var(--dawn); }

.site-header {
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1.2rem;
  padding-block: 0.7rem;
}
.brand img { height: 3.1rem; width: auto; max-width: none; }
.brand { margin-right: auto; display: flex; align-items: center; flex-shrink: 0; }

.nav { display: flex; gap: 1.4rem; align-items: center; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-size: var(--step--1); padding: 0.5rem 0.15rem;
  border-bottom: 3px solid transparent;
}
.nav a[aria-current="page"], .nav a:hover { border-bottom-color: var(--dawn); }

.nav-toggle { display: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: inherit; font-weight: 700; text-decoration: none;
  border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  padding: 0.72rem 1.5rem; font-size: var(--step-0);
  min-height: 48px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-call { background: var(--dawn); color: var(--ink); }
.btn-call:hover { color: var(--ink); }
.btn-primary { background: var(--sky-deep); color: #fff; }
.btn-primary:hover { color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-lg { font-size: var(--step-1); padding: 0.9rem 1.9rem; }

.header-call { white-space: nowrap; }
.header-call .num { font-size: var(--step-0); }
.header-book { white-space: nowrap; }
/* on narrow screens the mobile bar and hero carry booking, so the header keeps
   only the phone button */
@media (max-width: 900px) { .header-book { display: none; } }

/* --------------------------------------------------------------------------
   Hero — dawn
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 108%, #ffd9a1 0%, #fbe3c2 22%, #eaf3f9 55%, #f6fafd 100%);
  padding-block: 2.6rem 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem;
  align-items: center;
}
.eyebrow {
  font-size: var(--step--1); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sky-deep); margin-bottom: 1rem;
}
.hero h1 { max-width: 19ch; }
.hero .lede { font-size: var(--step-1); color: var(--ink-soft); max-width: 48ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.6rem 0 1.4rem; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem;
  font-size: var(--step--1); color: var(--ink-soft); font-weight: 700;
  padding-bottom: 3.5rem;
}
.trust-row .star { color: #b45309; }

/* arch-window photo — echoes the rising sun */
.arch-photo {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lift);
  max-width: 24rem;
  margin-inline: auto;
  position: relative;
}
.arch-photo img { width: 100%; height: 30rem; object-fit: cover; filter: saturate(1.18) contrast(1.1); }
.arch-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(14,42,71,0.18) 100%);
  pointer-events: none;
}
.arch-photo .caption {
  position: absolute; inset-inline: 0; bottom: 0;
  background: rgba(14, 42, 71, 0.82); color: #fff;
  font-size: var(--step--1); padding: 0.6rem 1rem; text-align: center;
  z-index: 1;
}

/* sun horizon divider */
.horizon { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding-block: 3.6rem; }
.section-mist { background: var(--mist); }
.section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.section-head p { color: var(--ink-soft); font-size: var(--step-1); }

/* Medicare 3-step + first-visit steps (real sequences, so numbers are earned) */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  list-style: none; padding: 0; margin: 0;
}
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.4rem; position: relative; box-shadow: var(--shadow);
}
.step-num {
  width: 3rem; height: 3rem; border-radius: 999px;
  background: var(--dawn); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Zilla Slab", serif; font-weight: 700; font-size: var(--step-2);
  margin-bottom: 1rem;
}
.step-card h3 { font-size: var(--step-1); }
.step-card p { font-size: var(--step-0); color: var(--ink-soft); margin: 0 0 0.4rem; }
.step-card p:last-child { margin-bottom: 0; }

.carrier-note {
  margin-top: 2.2rem; background: #fff; border-left: 6px solid var(--dawn);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow);
}
.carrier-note p { margin: 0 0 0.8em; }
.carrier-note p:last-child { margin-bottom: 0; }
.carrier-note strong { color: var(--ink); }

/* benefits meter */
.meter-flex { display: grid; grid-template-columns: auto 1fr; gap: 2.2rem; align-items: center; margin-top: 2.4rem; }
.meter svg { width: 15rem; height: auto; }
.meter-caption { font-size: var(--step-0); color: var(--ink-soft); max-width: 42ch; }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: var(--ink); }
.svc-card h3 { margin: 0; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.svc-card h3 .arrow { color: var(--dawn); font-size: var(--step-2); line-height: 1; }
.svc-card p { color: var(--ink-soft); margin: 0; font-size: var(--step-0); }
.svc-card .tag {
  align-self: flex-start; margin-top: 0.6rem;
  background: var(--dawn-soft); color: #7c4a03; font-weight: 700;
  font-size: var(--step--1); border-radius: 999px; padding: 0.15rem 0.8rem;
}

/* doctor */
.doctor-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }
.doctor-photo {
  border-radius: 999px 999px var(--radius) var(--radius);
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: #fff; text-align: center; padding: 3.5rem 1.5rem 2.5rem;
  border: 6px solid #fff; box-shadow: var(--shadow-lift); max-width: 20rem; margin-inline: auto;
}
.doctor-photo .monogram {
  font-family: "Zilla Slab", serif; font-size: 4.6rem; font-weight: 700; line-height: 1;
}
.doctor-photo .replace-note { font-size: var(--step--1); opacity: 0.85; margin-top: 1.2rem; }
.cred-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: 0.7rem; }
.cred-list li { padding-left: 2rem; position: relative; }
.cred-list li::before {
  content: "\2600"; position: absolute; left: 0; color: var(--dawn); font-size: 1.1em;
}

/* reviews */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.review-card blockquote {
  margin: 0 0 1rem; font-family: "Zilla Slab", serif;
  font-size: var(--step-1); line-height: 1.45;
}
.review-card cite { font-style: normal; color: var(--ink-soft); font-size: var(--step--1); font-weight: 700; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.2rem; font-weight: 700; box-shadow: var(--shadow);
}
.rating-badge .stars { color: #b45309; letter-spacing: 2px; }

/* visit / NAP */
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.visit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.visit-card h3 { font-size: var(--step-1); display: flex; align-items: center; gap: 0.6rem; }
.visit-card p { margin: 0 0 0.4rem; color: var(--ink-soft); }
.visit-card .big { font-size: var(--step-1); color: var(--ink); font-weight: 700; }

/* FAQ — <details>, big targets, visible affordance */
.faq { display: grid; gap: 0.9rem; max-width: 52rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: var(--step-1);
  padding: 1.1rem 3.4rem 1.1rem 1.4rem; list-style: none; position: relative;
  font-family: "Zilla Slab", serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: var(--dawn-soft); color: #7c4a03;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq .faq-body p { margin-bottom: 0.6em; }

/* answered-up-front block (not collapsed) */
.answer-plain {
  background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--sky-deep);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow);
  margin-bottom: 1rem; max-width: 52rem;
}
.answer-plain h3 { font-size: var(--step-1); margin-bottom: 0.3em; }
.answer-plain p { margin: 0; color: var(--ink-soft); }

/* verify form */
.verify-panel {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
  padding: 2.2rem; max-width: 36rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(18rem, 0.72fr);
  gap: 1.4rem;
  align-items: stretch;
}
.contact-panel { max-width: none; }
.contact-aside {
  background:
    linear-gradient(160deg, #0e2a47 0%, #0f5e93 100%);
  color: #e8f0f8;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lift);
}
.contact-aside .eyebrow { color: #ffd9a1; }
.contact-aside h3 { color: #fff; font-size: var(--step-3); }
.contact-aside p { color: #e8f0f8; }
.contact-aside .check-list { margin-top: 1.4rem; }
.contact-aside .check-list li::before { color: #ffd9a1; }
.contact-aside .btn { margin-top: 0.4rem; }
.verify-panel .verify-title { font-size: var(--step-2); font-weight: 600; margin-top: 0; }
.form-grid { display: grid; gap: 1.1rem; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: var(--step--1); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: var(--step-0);
  padding: 0.7rem 0.9rem; border: 2px solid var(--line-strong); border-radius: 10px;
  background: var(--shell); color: var(--ink); min-height: 52px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky-deep); }
.field textarea { min-height: 8rem; resize: vertical; }
.field input[aria-invalid="true"] { border-color: var(--error); }
.field-error { color: var(--error); font-weight: 700; font-size: var(--step--1); margin: 0.35rem 0 0; }
.form-status { margin-top: 0; }
.form-note { font-size: var(--step--1); color: var(--ink-soft); margin: 0.4rem 0 0; }
button[disabled] { opacity: 0.68; cursor: wait; transform: none !important; box-shadow: none !important; }
.form-success {
  background: #e7f4ec; border: 2px solid var(--success); color: var(--success);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; font-weight: 700;
}
.form-success:focus { outline: 3px solid var(--success); outline-offset: 3px; }

.medicare-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; }

.updated-line { font-size: var(--step--1); color: var(--ink-soft); }

/* neutral-guidance box (compliance) */
.neutral-box {
  background: var(--mist); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  font-size: var(--step-0); max-width: 52rem;
}
.neutral-box p { margin: 0; }

/* membership details */
.mem-list { max-width: 46rem; margin: 0 0 1.2rem; padding-left: 1.4rem; display: grid; gap: 0.4rem; }
.footnote { font-size: var(--step--1); color: var(--ink-soft); max-width: 60ch; }

/* prototype-only marker: copy awaiting owner confirmation (remove before launch) */
.confirm-note { background: #fff3cd; color: #7c4a03; font-weight: 700; padding: 0 0.3em; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Interior pages: compact hero + breadcrumb
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 110% at 50% 118%, #ffd9a1 0%, #fbe3c2 26%, #eaf3f9 62%, #f6fafd 100%);
  padding-block: 2.2rem 0;
}
.page-hero .wrap { padding-bottom: 3rem; }
.page-hero h1 { max-width: 22ch; font-size: var(--step-4); }
.page-hero .lede { font-size: var(--step-1); color: var(--ink-soft); max-width: 52ch; }
.breadcrumb {
  font-size: var(--step--1); font-weight: 700; margin-bottom: 1rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--sky-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin-inline: 0.45em; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Topic cards: service detail content — scannable summary + expandable depth.
   Replaces the old site's wall of accordions: the summary paragraph is ALWAYS
   visible; only the long-form detail sits inside <details>.
   -------------------------------------------------------------------------- */
.topic {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.4rem; box-shadow: var(--shadow); margin-bottom: 1.2rem;
  max-width: 56rem;
}
.topic h3 { display: flex; align-items: center; gap: 0.6rem; }
.topic h3 .t-ico { font-size: 1.1em; color: var(--dawn); }
.topic > p { color: var(--ink-soft); }
.topic details { border-top: 1px solid var(--line); margin-top: 0.9rem; }
.topic summary {
  cursor: pointer; font-weight: 700; color: var(--sky-deep);
  padding: 0.9rem 0.2rem; list-style: none; font-size: var(--step-0);
  min-height: 48px; display: flex; align-items: center; gap: 0.5rem;
}
.topic summary::-webkit-details-marker { display: none; }
.topic summary::before { content: "+"; font-size: 1.3em; color: var(--dawn); font-weight: 700; }
.topic details[open] summary::before { content: "–"; }
.topic .t-body { color: var(--ink-soft); padding-bottom: 0.6rem; }
.topic .t-body h4 { font-family: "Zilla Slab", Georgia, serif; margin: 1.1em 0 0.35em; font-size: var(--step-1); color: var(--ink); }
.topic .t-body ul { padding-left: 1.3rem; margin: 0.4em 0 1em; }
.topic .t-body li { margin-bottom: 0.3em; }

/* two-up layout for image + text sections on interior pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border: 6px solid #fff;
  filter: saturate(1.13) contrast(1.08);
}

/* checklist (features, what-to-bring, etc.) */
.check-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display: grid; gap: 0.65rem; }
.check-list li { padding-left: 2rem; position: relative; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 700; font-size: 1.1em; }

/* pricing/membership cards */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 52rem; }
.plan-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow); position: relative;
}
.plan-card.featured { border: 3px solid var(--dawn); }
.plan-card .plan-price { font-family: "Zilla Slab", serif; font-size: var(--step-3); font-weight: 700; margin: 0.2em 0 0; }
.plan-card .plan-cycle { color: var(--ink-soft); font-size: var(--step--1); font-weight: 700; }
.plan-badge {
  position: absolute; top: -0.9rem; left: 1.4rem;
  background: var(--dawn); color: var(--ink); font-weight: 700; font-size: var(--step--1);
  border-radius: 999px; padding: 0.15rem 0.9rem;
}

/* reliable location visual */
.map-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.6fr) minmax(22rem, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.map-copy {
  border-left: 6px solid var(--dawn);
}
.map-frame {
  border: 0; width: 100%; height: 22rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(234,243,249,0.9)),
    repeating-linear-gradient(45deg, rgba(15,94,147,0.08) 0 1px, transparent 1px 18px);
}
.map-visual {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(253,251,247,0.92), rgba(234,243,249,0.96)),
    repeating-linear-gradient(45deg, rgba(15,94,147,0.07) 0 1px, transparent 1px 18px);
}
.map-road {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 48%;
  height: 4.6rem;
  transform: rotate(-7deg);
  background: linear-gradient(90deg, #dbe8ef, #fff, #dbe8ef);
  border-block: 3px solid rgba(15,94,147,0.18);
  box-shadow: 0 10px 24px rgba(14,42,71,0.08);
}
.map-road::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  border-top: 3px dashed rgba(14,42,71,0.22);
}
.map-label {
  position: absolute;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.map-label-road {
  left: 9%;
  top: 42%;
  transform: rotate(-7deg);
}
.map-pin {
  position: absolute;
  max-width: 13rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.map-pin::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: -0.55rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--dawn);
  box-shadow: 0 2px 0 rgba(14,42,71,0.12);
}
.map-pin strong {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: var(--step-1);
}
.map-pin-office {
  left: 9%;
  top: 13%;
  border-left: 6px solid var(--dawn);
}
.map-pin-landmark {
  right: 8%;
  bottom: 13%;
  border-left: 6px solid var(--sky-deep);
}
.map-parking {
  position: absolute;
  left: 10%;
  bottom: 13%;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #fff3de;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(244,156,45,0.38);
}

/* --------------------------------------------------------------------------
   Mobile sticky action bar — Call / Book / Directions.
   The single most effective mobile pattern on current dental sites: thumb-reach
   actions always available. Hidden on desktop and in print; respects the
   iPhone home-indicator safe area.
   -------------------------------------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  background: var(--ink);
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 20px rgba(14, 42, 71, 0.25);
  grid-template-columns: 1.35fr 1fr 1fr; gap: 0.55rem;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 52px; border-radius: 12px; text-decoration: none;
  font-weight: 700; font-size: var(--step--1);
}
.mobile-bar .mb-call { background: var(--dawn); color: var(--ink); }
.mobile-bar .mb-book { background: var(--sky-deep); color: #fff; }
.mobile-bar .mb-directions { background: transparent; color: #ffd9a1; border: 2px solid rgba(255, 217, 161, 0.55); }
@media (max-width: 820px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 5.2rem; } /* keep footer content above the bar */
}
@media print { .mobile-bar { display: none !important; } }

/* --------------------------------------------------------------------------
   CTA band (afternoon) + footer (dusk)
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(90% 130% at 50% 130%, #f49c2d 0%, #f8b45c 30%, #fbe3c2 68%, var(--shell) 100%);
  text-align: center; padding-block: 4.5rem;
}
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; color: var(--ink-soft); font-size: var(--step-1); }
.cta-band .hero-ctas { justify-content: center; }

.site-footer { background: var(--ink); color: #c9d8e8; padding-block: 3.5rem 2rem; }
.site-footer a { color: #ffd9a1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h3 { color: #fff; font-size: var(--step-1); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer .nap { font-style: normal; line-height: 1.8; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.4rem;
  font-size: var(--step--1); color: #9db2c8;
}
.footer-legal p { max-width: none; }
.footer-moon { font-size: var(--step--1); color: #9db2c8; }

/* --------------------------------------------------------------------------
   Reveal: keep content visible even if a browser, crawler, or screenshot tool
   never fires IntersectionObserver. Motion stays subtle and nonessential.
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 1; transform: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.sun-rise { transform-origin: 50% 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc-card { transition: none; }
}

/* --------------------------------------------------------------------------
   Print — seniors print these pages. Keep answers visible, drop chrome.
   -------------------------------------------------------------------------- */
@media print {
  .utility, .nav, .nav-toggle, .skip-link, .verify-panel, .cta-band, .horizon { display: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static; }
  .site-footer { background: none; color: #000; }
  .site-footer a, .site-footer h3 { color: #000; }
  .faq summary::after { display: none; }
  a[href^="tel:"] { color: #000; text-decoration: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
/* tablet through small desktop: let the nav wrap to its own row so the header
   never overflows — 8 links + two buttons don't fit on one row until ~1500px */
@media (min-width: 681px) and (max-width: 1500px) {
  .site-header .wrap { flex-wrap: wrap; row-gap: 0; }
  .nav { order: 3; flex-basis: 100%; justify-content: flex-start; gap: 1.1rem; padding-bottom: 0.4rem; }
}
@media (max-width: 960px) {
  .hero-grid, .doctor-grid, .medicare-hero-grid, .split, .contact-layout, .map-layout { grid-template-columns: 1fr; }
  .steps, .svc-grid, .visit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .arch-photo img { height: 22rem; }
  h1 { font-size: var(--step-4); }
}
@media (max-width: 680px) {
  .utility .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.85rem;
  }
  .u-addr {
    min-width: 0;
    min-height: 34px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    font-weight: 700;
  }
  .u-addr::after {
    content: "Brandon office";
    font-size: 0.82rem;
  }
  .u-ico { font-size: 0.82rem; }
  .u-dir, .u-suite, .u-city, .u-book { display: none; }
  .u-hours {
    min-height: 34px;
    gap: 0.32rem;
    white-space: nowrap;
    font-weight: 700;
  }
  .u-hours .u-text { font-size: 0; }
  .u-hours .u-text::after {
    content: "Hours";
    font-size: 0.78rem;
  }
  .u-hours.is-open .u-text::after { content: "Open"; }
  .u-hours.is-closed .u-text::after { content: "Closed"; }
  .textsize-btn {
    min-width: 40px;
    min-height: 34px;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
  }
  .textsize-btn::after {
    content: "Aa";
    font-size: 0.78rem;
  }
  .site-header .wrap {
    gap: 0.55rem;
    padding: 0.5rem 0.85rem;
  }
  .brand img { height: 3rem; }
  .nav-toggle {
    min-width: 46px;
    min-height: 46px;
    border-radius: 12px;
    font-size: 1.18rem;
  }
  .header-call {
    min-height: 46px;
    padding: 0.58rem 0.8rem;
    gap: 0.35rem;
  }
  .header-call .label { display: inline; }
  .header-call .num { display: none; }
  .hero { padding-block: 1.45rem 0; }
  .page-hero { padding-block: 1.45rem 0; }
  .page-hero .wrap { padding-bottom: 2.05rem; }
  .eyebrow {
    margin-bottom: 0.65rem;
    letter-spacing: 0.11em;
  }
  .hero .lede,
  .page-hero .lede {
    font-size: 1.05rem;
    line-height: 1.55;
  }
  .hero .hero-ctas { display: none; }
  .medicare-hero-grid { padding-bottom: 2.2rem !important; }
  .steps, .svc-grid, .visit-grid, .review-grid, .footer-grid, .plan-grid { grid-template-columns: 1fr; }
  .meter-flex { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--shell); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem 1.4rem; gap: 0.2rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.9rem 0.2rem; font-size: var(--step-0); border-bottom: 1px solid var(--line); }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 2px solid var(--ink); border-radius: 10px;
    min-width: 48px; min-height: 48px; font-size: 1.3rem; cursor: pointer; color: var(--ink);
  }
  .nav-toggle { min-width: 46px; min-height: 46px; border-radius: 12px; font-size: 1.18rem; }
  .contact-aside { order: -1; }
  .map-frame, .map-visual { display: none; }
  .section { padding-block: 3.1rem; }
}
