/* The Dentist West Midlands — design system. ONE stylesheet for every page.
 * Brand: navy #0a2279 (logo text), blue #0f6abf / #2f5aae (logo swoosh), call green #15803d.
 * Change a token here and it changes everywhere. */

@font-face { font-family: "Inter"; font-style: normal; font-display: swap; font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations"), url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2"); }

:root {
  --navy: #0a2279; --navy-2: #071a5e; --blue: #0f6abf; --blue-2: #2f5aae; --sky: #eaf2fc; --sky-2: #f5f9fe;
  --green: #15803d; --green-2: #116c33; --ink: #0f172a; --ink-2: #334155; --muted: #5b6b82; --line: #dbe4f0; --white: #fff;
  --gold: #f5b301; --danger: #b42318; --ok: #067647;
  --r: 16px; --r-sm: 10px; --shadow: 0 10px 30px rgba(10, 34, 121, .08); --shadow-lg: 0 18px 48px rgba(10, 34, 121, .14);
  --wrap: 1160px; --narrow: 780px; --gut: clamp(16px, 4vw, 28px);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.65; color: var(--ink); background: var(--white); font-feature-settings: "cv11", "ss01"; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 750; }
h1 { font-size: clamp(32px, 4.2vw, 50px); letter-spacing: -.03em; }
h2 { font-size: clamp(25px, 2.8vw, 34px); }
h3 { font-size: clamp(19px, 2vw, 22px); letter-spacing: -.01em; }
h4 { font-size: 18px; }
p, ul, ol, table, figure, blockquote { margin: 0 0 1.1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }
.wrap.narrow { max-width: calc(var(--narrow) + 2 * var(--gut)); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border-radius: 12px;
  font: 700 16px/1.2 var(--font); text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .12s, background .12s, box-shadow .12s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 6px 16px rgba(10, 34, 121, .25); }
.btn--primary:hover { background: var(--navy-2); color: #fff; }
.btn--call { background: var(--green); color: #fff; }
.btn--call:hover { background: var(--green-2); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { color: var(--navy-2); }
.link-btn { background: none; border: 0; color: var(--blue); text-decoration: underline; font: inherit; cursor: pointer; padding: 8px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .97); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.logo img { width: 155px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav ul a { display: block; white-space: nowrap; padding: 8px 9px; border-radius: 8px; color: var(--ink); font-weight: 600; font-size: 15.5px; text-decoration: none; }
.main-nav ul a:hover, .main-nav ul a[aria-current] { background: var(--sky); color: var(--navy); }
.main-nav .ext { font-size: 12px; color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 750; color: var(--navy); text-decoration: none; white-space: nowrap; }
.nav-actions .btn { min-height: 42px; padding: 9px 16px; font-size: 15px; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; padding: 12px 11px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s; }
@media (max-width: 1240px) {
  .burger { display: flex; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; padding: 12px var(--gut) 20px; max-height: calc(100vh - 72px); overflow: auto; }
  .nav-open .main-nav { display: flex; }
  .main-nav ul { flex-direction: column; }
  .main-nav ul a { padding: 12px 8px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-actions { justify-content: space-between; padding-top: 12px; }
  .nav-open .burger span:first-child { transform: translateY(9px) rotate(45deg); }
  .nav-open .burger span:last-child { transform: translateY(-9px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero { background: linear-gradient(135deg, #e9f1fc 0%, #f7fbff 55%, #eef3fb 100%); padding: clamp(28px, 5vw, 60px) 0 clamp(28px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.hero--img .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.hero h1 { margin-bottom: 14px; }
.hero .lead { font-size: clamp(18px, 1.7vw, 20px); color: var(--ink-2); max-width: 44em; margin: 0; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin: 0 0 10px; }
.hero-media { margin: 0; position: relative; }
.hero-media img { width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; background: var(--sky); }
.price-card { position: relative; margin: -60px 18px 0; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 16px 18px; border: 1px solid var(--line); }
.price-card__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--muted); margin: 0 0 6px; }
.price-card ul { list-style: none; margin: 0 0 8px; padding: 0; }
.price-card li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.price-card li strong { color: var(--navy); white-space: nowrap; }
.price-card a { font-size: 14px; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 18px 0 0; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 14px; font-weight: 650; color: var(--ink-2); }
.chips .chip-rating a { color: var(--navy); text-decoration: none; }
.chips .chip-rating a::first-letter { color: var(--gold); }
.post-meta { color: var(--muted); font-size: 15px; margin: 12px 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 12px; font-size: 14px; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: 6px; }
.crumbs a { color: var(--muted); }
@media (max-width: 900px) { .hero--img .hero-grid { grid-template-columns: 1fr; } .hero-media { order: -1; } .hero-media img { aspect-ratio: 16 / 9; } .price-card { margin: -40px 10px 0; } }
@media (max-width: 560px) { .cta-row .btn { flex: 1 1 100%; } }

/* ---------- page body / prose ---------- */
.page-body { padding: clamp(28px, 5vw, 56px) 0 8px; }
.prose > * + h2 { margin-top: 1.8em; }
.prose > * + h3 { margin-top: 1.4em; }
.prose h2 { padding-top: .2em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .35em 0; }
.prose li::marker { color: var(--blue); }
.prose img { border-radius: var(--r-sm); margin: 1.2em auto; max-width: min(100%, 680px); max-height: 520px; width: auto; object-fit: contain; }
.prose .cards img, .prose .two-col img { max-width: 100%; max-height: none; width: 100%; margin: 0 0 12px; }
.prose .two-col img { margin: 0; }
.prose figure img { margin: 0; }
.prose figcaption { font-size: 14px; color: var(--muted); margin-top: 6px; }
.prose blockquote { border-left: 4px solid var(--blue); background: var(--sky-2); padding: 14px 18px; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; display: block; overflow-x: auto; }
.prose table th, .prose table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose table th { background: var(--sky); color: var(--navy); font-weight: 700; }
.prose table td:last-child { white-space: nowrap; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose .lead-p { font-size: 19px; color: var(--ink-2); }
.prose > .cards, .prose > .steps, .prose > .two-col, .prose > .callout, .prose > .yt, .prose > .gallery, .prose > .booking-widget { margin: 1.6em 0; }

/* cards (feature grids from the old pages, related treatments) */
.cards, .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.card > :last-child { margin-bottom: 0; }
.card h3, .card h4 { font-size: 19px; margin-bottom: .4em; }
.card p { font-size: 16px; color: var(--ink-2); }
.card img { border-radius: 10px; margin: 0 0 12px; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.card .btn { white-space: normal; text-align: center; }
.card--link .more { margin-top: auto; font-weight: 700; color: var(--blue); font-size: 15px; }

/* numbered steps */
ol.steps { list-style: none; counter-reset: s; padding: 0; }
ol.steps > li { counter-increment: s; position: relative; padding: 2px 0 16px 58px; margin: 0; }
ol.steps > li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.callout { background: var(--sky); border: 1px solid #cfe0f6; border-radius: var(--r); padding: 20px 22px; }
.callout > :last-child { margin-bottom: 0; }
.callout--warn { background: #fff8e6; border-color: #f5d98a; }

/* video (click to play) */
.yt { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; background: var(--navy) center / cover no-repeat; cursor: pointer; max-width: 760px; }
.yt::after { content: ""; position: absolute; inset: 0; margin: auto; width: 76px; height: 54px; border-radius: 14px; background: rgba(255, 255, 255, .92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a2279' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 30px no-repeat; }
.yt.is-playing::after { display: none; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin: 1.6em 0; }
.video-grid .yt { max-width: none; aspect-ratio: 9 / 12; }
.video-self { border-radius: var(--r); max-width: 760px; background: #000; }

/* gallery + lightbox */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.gallery figure { margin: 0; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin: 0; border-radius: 0; transition: transform .2s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery figcaption { padding: 8px 12px; font-size: 14px; color: var(--ink-2); }
.lightbox { position: fixed; inset: 0; background: rgba(5, 15, 45, .88); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; border-radius: 10px; }
.lightbox button { position: absolute; top: 14px; right: 18px; font-size: 40px; color: #fff; background: none; border: 0; cursor: pointer; }

/* ---------- sections ---------- */
.sec { padding: clamp(36px, 6vw, 64px) 0; }
.sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 10px 24px; margin-bottom: 20px; }
.sec-head h2 { margin: 0; }
.sec-head p { margin: 0; }
.reviews-sec { background: var(--sky-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; margin-bottom: 8px; }
.review blockquote { margin: 0 0 14px; padding: 0; border: 0; background: none; font-size: 16px; color: var(--ink-2); }
.review blockquote p { margin: 0 0 8px; }
.review details summary { cursor: pointer; color: var(--blue); font-weight: 650; font-size: 15px; }
.review details[open] > p { margin-top: 8px; }
.review details[open] ~ p, .review blockquote:has(details[open]) > p:first-child { display: none; }
.review figcaption { margin-top: auto; display: flex; flex-direction: column; font-size: 14px; color: var(--muted); }
.review figcaption strong { color: var(--ink); font-size: 15px; }
.reviews-more { margin: 18px 0 0; font-weight: 650; }
.rating-badge { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: var(--ink); font-size: 15px; }
.rb-stars { color: var(--gold); letter-spacing: 1px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font: 600 14px var(--font); cursor: pointer; color: var(--ink-2); }
.chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }

.faq-sec { background: #fff; }
.faq details { border: 1px solid var(--line); border-radius: 12px; margin: 0 0 10px; background: #fff; }
.faq summary { cursor: pointer; padding: 16px 48px 16px 18px; font-weight: 700; color: var(--navy); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--blue); }
.faq details[open] summary::after { content: "–"; }
.faq-a { padding: 0 18px 14px; color: var(--ink-2); }
.faq-a > :last-child { margin-bottom: 0; }
.related-sec { background: var(--sky-2); }

.cta-band { background: linear-gradient(120deg, var(--navy) 0%, #12339a 100%); color: #fff; padding: clamp(32px, 5vw, 52px) 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { margin: 0; color: #dbe6ff; }
.cta-band .cta-row { margin: 0; }

.enquiry-sec { background: #fff; }
.enquiry { background: var(--sky-2); border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 34px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 650; font-size: 15px; color: var(--ink); }
.form input, .form textarea, .form select { font: 400 16px var(--font); padding: 12px 14px; border: 1px solid #b9c7da; border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
.form input:focus, .form textarea:focus { border-color: var(--blue); outline: 3px solid rgba(15, 106, 191, .2); }
.form-note { font-size: 14px; color: var(--muted); margin: 12px 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; font-weight: 600; }
.alert--ok { background: #ecfdf3; border: 1px solid #abefc6; color: var(--ok); }
.alert--err { background: #fef3f2; border: 1px solid #fecdca; color: var(--danger); }

/* price list */
.price-section { margin: 0 0 32px; }
.price-section h2 { font-size: 24px; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.price-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }

/* blog index */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; list-style: none; padding: 0; }
.post-list .card--link h3 { font-size: 18px; }
.post-list time { font-size: 14px; color: var(--muted); }
.post-topic { margin-top: 2em; }

/* ---------- footer ---------- */
.site-footer { background: #0b1437; color: #cdd6ee; padding: 48px 0 90px; font-size: 15px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { background: #fff; padding: 8px 10px; border-radius: 10px; margin-bottom: 14px; }
.footer-col h2 { color: #fff; font-size: 16px; margin: 0 0 10px; letter-spacing: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 8px; }
.footer-col a { color: #cdd6ee; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.site-footer .rating-badge { color: #fff; }
.footer-map { margin-top: 28px; }
.map { border-radius: 14px; overflow: hidden; background: #16224d; }
.map iframe { width: 100%; height: 300px; border: 0; }
.map-load { width: 100%; min-height: 120px; border: 0; background: #16224d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2C8 2 5 5 5 9c0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") 22px center / 32px no-repeat; color: #fff; cursor: pointer; text-align: left; padding: 20px 20px 20px 70px; font: 700 17px var(--font); display: flex; flex-direction: column; gap: 4px; }
.map-load small { font-weight: 400; color: #cdd6ee; font-size: 14px; }
.footer-legal { margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 18px; font-size: 13.5px; color: #9fb0d6; }
.footer-legal a { color: #cdd6ee; }
.footer-bedside { font-size: 14px; }

/* sticky mobile bar */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: 1fr 1.3fr 1fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(10, 34, 121, .08); }
.sticky-bar a { display: flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 12px; font-weight: 750; text-decoration: none; font-size: 15px; }
.sb-call { background: var(--green); color: #fff; }
.sb-book { background: var(--navy); color: #fff; }
.sb-msg { border: 2px solid var(--navy); color: var(--navy); }
@media (max-width: 900px) { .sticky-bar { display: grid; } .site-footer { padding-bottom: 100px; } }

/* consent banner */
.consent { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 120; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 16px 0; max-width: 980px; margin: 0 auto; }
.consent[hidden] { display: none; }
.consent-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.consent p { margin: 0; flex: 1 1 380px; font-size: 15px; color: var(--ink-2); }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.consent-actions .btn { min-height: 42px; padding: 8px 16px; font-size: 15px; }
.consent-choose { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.consent-choose[hidden] { display: none; }
@media (max-width: 900px) { .consent { bottom: 80px; } }

/* booking widget + medical history form: bring into the brand */
.booking-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; box-shadow: var(--shadow); }
.booking-widget .appts-scope { font-family: var(--font) !important; max-width: none; }
.booking-widget .appts-scope .appt-date-heading { border-bottom-color: var(--blue) !important; }
.booking-widget .appts-scope .appt-date-heading .day-name { color: var(--navy) !important; }
.booking-widget .appts-scope .appt-time-btn { font-family: var(--font) !important; min-height: 44px; }
.booking-widget .appts-scope .appt-time-btn:hover { border-color: var(--navy) !important; color: var(--navy) !important; background: var(--sky) !important; }
.dhs-mh-wrap { font-family: var(--font) !important; }
.bankref { font-weight: 800; color: var(--navy); background: var(--sky); padding: 2px 8px; border-radius: 6px; letter-spacing: .04em; }

/* 404 / system */
.system-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }

@media print { .site-header, .site-footer, .sticky-bar, .consent, .cta-band, .enquiry-sec { display: none !important; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
