:root {
  --navy: #102f49;
  --navy-deep: #09243a;
  --ink: #15364d;
  --muted: #536979;
  --blue: #28718e;
  --sky: #edf6fa;
  --pale: #f5f8fa;
  --warm: #fbfaf7;
  --red: #bd3525;
  --red-pale: #fff1ed;
  --lime: #e2f56d;
  --line: #d8e3e9;
  --white: #fff;
  --shadow: 0 24px 60px rgba(15, 47, 73, .14);
  --radius: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  color-scheme: light;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body { margin: 0; min-width: 320px; font-size: 1rem; line-height: 1.5; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, a { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #b66e00; outline-offset: 4px; }
main:focus { outline: none; }
.wrap { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow { margin-bottom: 18px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .11em; line-height: 1.35; }
.section-heading h2, .urgent-heading h2, .faq-heading h2, .contact-layout h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.section-heading > p:last-child { margin-top: 20px; max-width: 720px; color: var(--muted); font-size: 1.1rem; line-height: 1.65; }
.section-note { margin-top: 24px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 17px 22px;
  border: 0;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1.25;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 24px rgba(15, 47, 73, .16); }
.button > span { font-size: 1.2rem; }
.button-primary, .button-navy { background: var(--navy); color: var(--white); }
.button-secondary { border: 1px solid #b9cbd5; background: var(--white); color: var(--navy); }
.button-red { background: var(--red); color: var(--white); }
.button-light { background: var(--lime); color: var(--navy-deep); }

/* Moving announcement */
.announcement-shell { padding-top: 8px; background: var(--white); }
.topbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  width: min(1380px, calc(100% - 16px));
  overflow: hidden;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
}
.ticker-viewport { min-width: 0; overflow: hidden; }
.topbar-track { display: flex; width: max-content; will-change: transform; animation: topbar-stream 19s linear infinite; }
.topbar.is-paused .topbar-track { animation-play-state: paused; }
.topbar-message {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 10px 3.8rem;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.4;
}
.topbar-message::after { content: "•"; margin-left: 3.8rem; color: var(--lime); font-size: .9rem; }
.ticker-toggle {
  position: relative;
  z-index: 2;
  min-width: 46px;
  min-height: 40px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.25);
  background: var(--navy-deep);
  color: var(--white);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
}
.ticker-toggle:focus-visible { outline-offset: -4px; }
@keyframes topbar-stream { from { transform: translate3d(0,0,0); } to { transform: translate3d(-25%,0,0); } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.header { display: flex; align-items: center; justify-content: space-between; gap: 26px; min-height: 92px; }
.brand { position: relative; display: block; flex: 0 0 210px; width: 210px; height: 76px; overflow: hidden; }
.brand img { position: absolute; top: -69px; left: -6px; width: 224px; max-width: none; height: 224px; }
.primary-nav { display: flex; align-items: center; gap: 23px; font-size: .82rem; font-weight: 800; white-space: nowrap; }
.primary-nav a { min-height: 44px; padding-block: 13px; }
.primary-nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-call { flex-shrink: 0; text-align: right; white-space: nowrap; }
.header-call span { display: block; color: var(--muted); font-size: .69rem; font-weight: 700; letter-spacing: .09em; }
.header-call strong { display: block; font-size: 1.04rem; line-height: 1.25; }
.header-cta { min-height: 44px; padding: 13px 16px; border-radius: 5px; background: var(--navy); color: var(--white); font-size: .74rem; font-weight: 900; white-space: nowrap; }
.mobile-service-nav { display: none; }

/* Denture-first hero */
.hero { overflow: hidden; padding-block: clamp(56px, 7vw, 88px); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff 0%, #f4fafc 63%, #e7f2f7 100%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr); gap: clamp(46px, 6vw, 80px); align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 {
  max-width: 720px;
  color: var(--navy);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(3.25rem, 5.5vw, 5.15rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}
.hero-copy h1 span { color: var(--blue); }
.hero-lead { max-width: 650px; margin-top: 25px; color: var(--muted); font-size: 1.19rem; line-height: 1.64; }
.hero-insurance { display: flex; gap: 10px; align-items: flex-start; margin-top: 19px; color: var(--navy); font-size: .96rem; font-weight: 800; }
.hero-insurance span { display: inline-grid; place-items: center; flex: 0 0 23px; width: 23px; height: 23px; border-radius: 50%; background: var(--lime); }
.insurance-qualifier { max-width: 620px; margin-top: 7px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.hero-actions .button-primary { min-width: 288px; }
.request-note { max-width: 650px; margin-top: 15px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.hero-visual { position: relative; min-height: 570px; }
.hero-visual > img { height: 570px; border-radius: 16px; box-shadow: var(--shadow); object-fit: cover; object-position: center; }
.hero-price-card {
  position: absolute;
  bottom: 24px;
  left: -28px;
  width: min(310px, calc(100% - 36px));
  padding: 22px 24px 20px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(12,38,59,.22);
}
.hero-price-card > span { display: block; color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.hero-price-card strong { display: block; margin-top: 3px; color: var(--navy); font-size: 4.25rem; letter-spacing: -.065em; line-height: 1; }
.hero-price-card sup { position: relative; top: -.9em; margin-left: 3px; font-size: .28em; letter-spacing: 0; }
.hero-price-card small { display: block; margin-top: 7px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.image-disclosure { position: absolute; right: 10px; top: 10px; padding: 3px 7px; border-radius: 3px; background: rgba(8,30,47,.7); color: #fff; font-size: .62rem; }

/* Proof and journey switch */
.proof-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); padding: 0; list-style: none; }
.proof-grid li { min-width: 0; padding: 20px 25px; border-right: 1px solid var(--line); }
.proof-grid li:first-child { padding-left: 0; }
.proof-grid li:last-child { padding-right: 0; border-right: 0; }
.proof-grid strong { display: block; color: var(--navy); font-size: .91rem; line-height: 1.35; }
.proof-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: .77rem; line-height: 1.45; }
.care-path { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding-block: 28px; }
.path-card { position: relative; display: grid; min-height: 132px; padding: 24px 66px 23px 25px; border: 1px solid var(--line); border-radius: 9px; transition: transform .18s ease, box-shadow .18s ease; }
.path-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,47,73,.11); }
.path-card-denture { background: var(--sky); }
.path-card-urgent { background: var(--red-pale); }
.path-card > span { color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.path-card-urgent > span { color: var(--red); }
.path-card strong { margin-top: 4px; font-size: 1.22rem; letter-spacing: -.02em; line-height: 1.3; }
.path-card small { margin-top: 4px; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.path-card b { position: absolute; right: 25px; top: 50%; font-size: 1.6rem; transform: translateY(-50%); }

/* Process */
.process-section { padding-block: clamp(60px, 7vw, 86px); background: var(--pale); }
.process-heading { max-width: 820px; }
.process-heading h2 { max-width: 760px; font-size: clamp(2.45rem, 4.4vw, 4rem); }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin: 42px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { min-height: 235px; padding: 29px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.process-grid li > span { display: inline-grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--navy); color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .06em; }
.process-grid h3 { margin-top: 25px; font-size: 1.25rem; letter-spacing: -.02em; }
.process-grid p { margin-top: 10px; color: var(--muted); font-size: .91rem; line-height: 1.6; }

/* Denture offers */
.denture-options { padding-block: clamp(64px, 8vw, 96px); }
.options-heading { max-width: 870px; }
.options-heading h2 { max-width: 850px; font-size: clamp(2.55rem, 4.6vw, 4.15rem); }
.custom-offer { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(42px,6vw,76px); align-items: center; margin-top: 48px; padding: clamp(34px,5vw,58px); border-radius: 14px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.offer-badge { display: inline-flex; padding: 8px 10px; border-radius: 4px; background: var(--lime); color: var(--navy-deep); font-size: .67rem; font-weight: 900; letter-spacing: .1em; }
.option-label { margin-top: 22px; color: #b9dceb; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.custom-copy h3, .snap-copy h3 { margin-top: 10px; font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.07; }
.custom-copy > p:last-of-type { max-width: 590px; margin-top: 20px; color: #deebf2; font-size: 1.02rem; line-height: 1.65; }
.check-list { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #edf5f8; font-size: .9rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--lime); color: var(--navy); font-size: .7rem; font-weight: 900; }
.offer-price { padding: 31px; border-radius: 10px; background: var(--white); color: var(--navy); }
.offer-price > span { color: var(--blue); font-size: .71rem; font-weight: 900; letter-spacing: .1em; }
.offer-price > strong { display: block; margin: 4px 0 22px; font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(5rem,8vw,7.2rem); letter-spacing: -.07em; line-height: 1; }
.offer-price strong small { font-size: .52em; vertical-align: top; }
.offer-price sup { position: relative; top: -.9em; margin-left: 3px; font-size: .18em; letter-spacing: 0; }
.offer-price .button { width: 100%; }
.offer-price > p { margin-top: 14px; color: var(--muted); font-size: .73rem; line-height: 1.5; }
.snap-offer { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(42px,6vw,74px); align-items: center; margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.snap-figure { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.snap-model { padding: 18px; object-fit: contain; }
.snap-figure figcaption { padding: 23px 27px; border-top: 1px solid var(--line); background: var(--sky); }
.snap-figure figcaption > strong { display: block; font-size: 1.06rem; letter-spacing: -.015em; }
.snap-figure figcaption > span { display: block; margin-top: 5px; font-size: .86rem; line-height: 1.5; }
.snap-figure figcaption > small { display: block; margin-top: 15px; color: var(--muted); font-size: .69rem; line-height: 1.5; }
.snap-figure figcaption > small a { text-decoration: underline; text-underline-offset: 2px; }
.housing-explainer { display: grid; grid-template-columns: 115px 1fr; gap: 17px; align-items: center; margin-top: 19px; padding-top: 19px; border-top: 1px solid #d5e3ea; }
.housing-detail { position: relative; width: 115px; height: 94px; overflow: hidden; border-radius: 5px; background: var(--white); }
.housing-detail img { position: absolute; top: -28px; left: -18px; width: 265px; max-width: none; height: 145px; object-fit: fill; }
.housing-explainer p { color: var(--muted); font-size: .78rem; line-height: 1.48; }
.housing-explainer b { display: block; margin-bottom: 5px; color: var(--ink); font-size: .86rem; }
.snap-copy .option-label { margin-top: 0; color: var(--blue); }
.snap-copy > p:not(.option-label):not(.offer-note) { margin-top: 19px; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.package-price { margin-top: 29px; padding-block: 23px; border-block: 1px solid var(--line); }
.package-price > span { display: block; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.package-price > strong { display: block; margin-top: 4px; color: var(--navy); font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(4.5rem,7vw,6.4rem); letter-spacing: -.065em; line-height: 1; }
.package-price strong small { font-size: .52em; vertical-align: top; }
.package-price sup { position: relative; top: -.8em; margin-left: 3px; font-size: .2em; letter-spacing: 0; }
.snap-copy .button { width: 100%; margin-top: 23px; }
.offer-note { margin-top: 13px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.single-option { display: flex; justify-content: space-between; align-items: center; gap: 35px; margin-top: 48px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 10px; background: var(--pale); }
.single-option .option-label { margin-top: 0; color: var(--blue); }
.single-option h3 { margin-top: 7px; font-size: 1.55rem; letter-spacing: -.025em; }
.single-option > div > p:last-child { margin-top: 7px; color: var(--muted); font-size: .84rem; }
.single-price { flex: 0 0 auto; }
.single-price > span { display: block; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .09em; }
.single-price > strong { display: block; font-size: 3.25rem; letter-spacing: -.055em; line-height: 1.15; }
.single-price sup { font-size: .35em; vertical-align: top; }
.single-price a { display: flex; justify-content: space-between; gap: 25px; min-height: 44px; padding-block: 10px; border-bottom: 2px solid var(--navy); font-size: .72rem; font-weight: 900; }
.treatment-coverage-note { margin-top: 16px; color: var(--muted); font-size: .73rem; line-height: 1.5; }

/* Insurance */
.insurance-section { padding-block: clamp(56px,7vw,78px); border-block: 1px solid #cce1e9; background: #eaf5f8; }
.insurance-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(45px,7vw,85px); align-items: center; }
.insurance-layout h2 { max-width: 670px; font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(2.35rem,4.1vw,3.7rem); letter-spacing: -.045em; line-height: 1.05; }
.insurance-layout > div > p:last-child { max-width: 670px; margin-top: 20px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.insurance-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.insurance-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; min-height: 78px; padding: 15px 17px; border: 1px solid #cadee6; border-radius: 8px; background: rgba(255,255,255,.72); }
.insurance-list li > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); color: var(--navy); font-weight: 900; }
.insurance-list strong { display: block; font-size: .94rem; }
.insurance-list small { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; }
.insurance-note { margin-top: 24px; color: var(--muted); font-size: .73rem; line-height: 1.5; }

/* Reviews and practice proof */
.reviews-section { padding-block: clamp(62px,8vw,92px); }
.reviews-heading h2 { max-width: 780px; font-size: clamp(2.45rem,4.4vw,4rem); }
.review-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 41px; }
.review-grid blockquote { min-height: 235px; padding: 31px 32px; border: 1px solid var(--line); border-radius: 10px; background: var(--warm); }
.review-grid blockquote > p { color: var(--navy); font-size: clamp(1.28rem,2vw,1.65rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.45; }
.review-grid blockquote footer { display: grid; gap: 3px; margin-top: 29px; padding-top: 20px; border-top: 1px solid var(--line); }
.review-grid blockquote footer strong { font-size: .86rem; }
.review-grid blockquote footer a { color: var(--muted); font-size: .71rem; text-decoration: underline; text-underline-offset: 2px; }
.review-footer { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 19px; }
.review-footer p { color: var(--muted); font-size: .72rem; }
.review-footer a { min-height: 44px; padding-block: 11px; border-bottom: 2px solid var(--navy); font-size: .72rem; font-weight: 900; }
.practice-section { padding-block: clamp(58px,7vw,82px); border-top: 1px solid var(--line); background: var(--pale); }
.practice-layout { display: grid; grid-template-columns: minmax(380px,.92fr) minmax(0,1.08fr); gap: clamp(46px,7vw,82px); align-items: center; }
.practice-gallery { min-width: 0; }
.practice-photos { display: grid; grid-template-columns: 1.32fr .84fr; grid-template-rows: repeat(2,minmax(0,1fr)); gap: 10px; height: 470px; }
.practice-photos img { height: 100%; min-width: 0; min-height: 0; border-radius: 9px; object-fit: cover; }
.practice-photo-large { grid-row: 1 / 3; }
.practice-photo-child { object-position: center 18%; }
.practice-gallery figcaption { margin-top: 9px; color: var(--muted); font-size: .67rem; line-height: 1.4; }
.practice-copy h2 { max-width: 650px; font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(2.35rem,4vw,3.6rem); letter-spacing: -.045em; line-height: 1.04; }
.practice-copy > p:not(.eyebrow) { max-width: 670px; margin-top: 23px; color: var(--muted); font-size: 1.03rem; line-height: 1.65; }
.practice-benefits { display: grid; gap: 17px; margin: 29px 0 0; padding: 0; list-style: none; }
.practice-benefits li { padding-left: 18px; border-left: 3px solid var(--lime); }
.practice-benefits strong { display: block; font-size: .93rem; }
.practice-benefits span { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; line-height: 1.5; }

/* Urgent care */
.urgent-section { padding-block: clamp(64px,8vw,92px); background: var(--navy-deep); color: var(--white); }
.urgent-heading { max-width: 850px; }
.urgent-heading .eyebrow { color: #b9dceb; }
.urgent-heading h2 { font-size: clamp(2.55rem,4.7vw,4.25rem); }
.urgent-heading > p:last-child { max-width: 650px; margin-top: 18px; color: #d7e5ed; font-size: 1.04rem; line-height: 1.6; }
.urgent-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 42px; }
.urgent-grid article { display: flex; flex-direction: column; min-height: 515px; padding: clamp(28px,4vw,42px); border-radius: 12px; background: var(--white); color: var(--ink); }
.card-kicker { color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .11em; }
.urgent-grid article:last-child .card-kicker { color: var(--blue); }
.urgent-grid h3 { margin-top: 14px; color: var(--navy); font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: clamp(2rem,3.4vw,3rem); font-weight: 900; letter-spacing: -.05em; line-height: 1.05; }
.urgent-grid article > p:not(.card-kicker) { margin-top: 18px; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.urgent-price { margin-top: auto; padding-top: 26px; }
.urgent-price span { display: block; color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .09em; }
.urgent-price strong { display: block; margin-top: 2px; color: var(--red); font-family: "Arial Black", Arial, Helvetica, sans-serif; font-size: 4.8rem; letter-spacing: -.065em; line-height: 1; }
.urgent-price sup { position: relative; top: -.9em; margin-left: 3px; font-size: .2em; letter-spacing: 0; }
.rite-badge { margin-top: auto; padding: 20px 0; border-block: 1px solid var(--line); }
.rite-badge strong { display: block; color: var(--blue); font-size: 1.35rem; letter-spacing: -.02em; }
.rite-badge span { display: block; margin-top: 3px; color: var(--muted); font-size: .79rem; }
.urgent-grid .button { width: 100%; margin-top: 22px; }
.urgent-grid article > small { display: block; margin-top: 14px; color: var(--muted); font-size: .7rem; line-height: 1.5; }

/* FAQ */
.faq-section { padding-block: clamp(64px,8vw,94px); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,8vw,96px); align-items: start; }
.faq-heading { position: sticky; top: 155px; }
.faq-heading h2 { font-size: clamp(2.35rem,3.8vw,3.45rem); }
.faq-heading > p:last-child { margin-top: 20px; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.faq-heading a { color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 72px; padding: 23px 48px 20px 0; cursor: pointer; color: var(--navy); font-size: 1.02rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.65rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 710px; padding: 0 42px 24px 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* Contact and footer */
.contact-section { background: var(--navy); color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px,8vw,92px); align-items: center; padding-block: clamp(58px,7vw,82px); }
.contact-layout .eyebrow { color: #bed9e7; }
.contact-layout h2 { max-width: 690px; font-size: clamp(2.55rem,4.8vw,4.35rem); }
.contact-layout > div:first-child > p:not(.eyebrow) { max-width: 620px; margin-top: 20px; color: #deebf2; font-size: 1.02rem; line-height: 1.65; }
.contact-layout address { margin-top: 25px; color: #c5d9e5; font-size: .9rem; font-style: normal; line-height: 1.55; }
.directions { display: inline-flex; gap: 14px; align-items: center; min-height: 40px; margin-top: 10px; font-size: .72rem; font-weight: 900; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.contact-phone { font-size: clamp(1.8rem,3.2vw,2.75rem); font-weight: 900; letter-spacing: -.035em; white-space: nowrap; }
.contact-actions .button { width: min(100%, 430px); }
.contact-helper { max-width: 430px; color: #c5d9e5; font-size: .72rem; line-height: 1.5; }
.email { color: #e0ebf2; font-size: .82rem; overflow-wrap: anywhere; }
.footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 22px; color: var(--muted); font-size: .72rem; }
.footer a { min-height: 40px; padding-block: 10px; font-weight: 800; }
.mobile-cta { display: none; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 12px 18px; border-radius: 4px; background: var(--white); color: var(--navy); font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

@media (max-width: 1110px) {
  .wrap { width: calc(100% - 48px); }
  .header { gap: 18px; }
  .brand { flex-basis: 190px; width: 190px; }
  .brand img { left: -10px; }
  .primary-nav { gap: 16px; font-size: .77rem; }
  .header-actions { gap: 11px; }
  .header-cta { padding-inline: 13px; }
  .hero-layout { grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 44px; }
  .hero-visual, .hero-visual > img { min-height: 520px; height: 520px; }
  .practice-layout { grid-template-columns: minmax(330px,.9fr) 1.1fr; gap: 48px; }
  .practice-photos { height: 430px; }
}

@media (max-width: 930px) {
  html { scroll-padding-top: 145px; }
  .primary-nav { display: none; }
  .header { min-height: 80px; }
  .header-actions { margin-left: auto; }
  .mobile-service-nav { display: flex; gap: 24px; overflow-x: auto; min-height: 46px; padding-block: 2px; scrollbar-width: none; white-space: nowrap; }
  .mobile-service-nav::-webkit-scrollbar { display: none; }
  .mobile-service-nav a { display: inline-flex; align-items: center; min-height: 42px; font-size: .75rem; font-weight: 800; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(760px,100%); min-height: 490px; }
  .hero-visual > img { height: 490px; min-height: 490px; }
  .hero-price-card { left: 22px; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
  .process-grid li { padding: 25px 22px; }
  .custom-offer { grid-template-columns: 1fr; }
  .offer-price { width: min(440px,100%); }
  .snap-offer { grid-template-columns: 1fr; }
  .snap-figure { width: min(680px,100%); }
  .snap-copy { max-width: 680px; }
  .insurance-layout { grid-template-columns: 1fr; }
  .insurance-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .insurance-list li { grid-template-columns: 1fr; align-content: start; min-height: 145px; }
  .practice-layout { grid-template-columns: 1fr; }
  .practice-gallery { width: min(720px,100%); }
  .practice-photos { height: 500px; }
  .practice-copy { max-width: 740px; }
}

@media (max-width: 760px) {
  .proof-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-grid li, .proof-grid li:first-child, .proof-grid li:last-child { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof-grid li:nth-child(2n) { border-right: 0; }
  .proof-grid li:nth-child(n+3) { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .insurance-list { grid-template-columns: 1fr; }
  .insurance-list li { grid-template-columns: 42px 1fr; min-height: 76px; }
  .review-grid { grid-template-columns: 1fr; }
  .urgent-grid { grid-template-columns: 1fr; }
  .urgent-grid article { min-height: 0; }
  .urgent-price, .rite-badge { margin-top: 28px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  html { scroll-padding-top: 132px; }
  .announcement-shell { padding-top: 6px; }
  .topbar { width: calc(100% - 12px); grid-template-columns: minmax(0,1fr) 44px; }
  .topbar-message { padding: 8px 2.3rem; font-size: .65rem; letter-spacing: .04em; }
  .topbar-message::after { margin-left: 2.3rem; }
  .ticker-toggle { min-width: 44px; min-height: 44px; }
  .header { min-height: 72px; }
  .brand { flex: 0 0 151px; width: 151px; height: 64px; }
  .brand img { top: -51px; left: -6px; width: 170px; height: 170px; }
  .header-cta { display: none; }
  .header-call span { font-size: .61rem; }
  .header-call strong { font-size: .9rem; }
  .mobile-service-nav { gap: 21px; min-height: 43px; }
  .hero { padding-block: 43px 48px; }
  .hero-layout { gap: 33px; }
  .hero-copy h1 { font-size: clamp(2.5rem,11.7vw,3.65rem); line-height: 1; }
  .hero-lead { margin-top: 19px; font-size: 1.02rem; line-height: 1.58; }
  .hero-insurance { font-size: .86rem; line-height: 1.5; }
  .hero-actions { display: grid; margin-top: 24px; }
  .hero-actions .button { width: 100%; min-width: 0; }
  .request-note { font-size: .72rem; }
  .hero-visual, .hero-visual > img { min-height: 0; height: clamp(350px, 90vw, 440px); }
  .hero-price-card { bottom: 16px; left: 14px; padding: 17px 18px 15px; }
  .hero-price-card strong { font-size: 3.55rem; }
  .proof-grid strong { font-size: .82rem; }
  .proof-grid span { font-size: .69rem; }
  .care-path { grid-template-columns: 1fr; gap: 11px; padding-block: 20px; }
  .path-card { min-height: 116px; padding-block: 20px; }
  .process-section, .denture-options, .insurance-section, .reviews-section, .practice-section, .urgent-section, .faq-section { padding-block: 54px; }
  .section-heading h2, .process-heading h2, .options-heading h2, .reviews-heading h2 { font-size: clamp(2.2rem,10vw,3.2rem); }
  .section-heading > p:last-child { font-size: 1rem; }
  .process-grid { margin-top: 31px; }
  .custom-offer { gap: 31px; margin-top: 34px; padding: 29px 23px; }
  .custom-copy h3, .snap-copy h3 { font-size: 2.05rem; }
  .offer-price { padding: 25px 21px; }
  .offer-price > strong { font-size: clamp(5rem,26vw,7rem); }
  .snap-offer { gap: 31px; margin-top: 48px; padding-top: 48px; }
  .snap-model { padding: 11px; }
  .snap-figure figcaption { padding: 20px; }
  .housing-explainer { grid-template-columns: 100px 1fr; gap: 13px; }
  .housing-detail { width: 100px; height: 88px; }
  .package-price > strong { font-size: clamp(4.3rem,22vw,6rem); }
  .single-option { display: block; margin-top: 35px; padding: 24px; }
  .single-price { margin-top: 22px; }
  .single-price > strong { font-size: 3rem; }
  .insurance-layout { gap: 31px; }
  .insurance-layout h2, .practice-copy h2, .urgent-heading h2, .faq-heading h2 { font-size: clamp(2.2rem,9.8vw,3.2rem); }
  .review-grid { margin-top: 30px; }
  .review-grid blockquote { min-height: 0; padding: 25px 23px; }
  .review-footer { align-items: flex-start; flex-direction: column; gap: 7px; }
  .practice-photos { height: clamp(320px, 80vw, 460px); gap: 7px; }
  .practice-copy > p:not(.eyebrow) { font-size: .95rem; }
  .urgent-grid { margin-top: 32px; }
  .urgent-grid article { padding: 28px 23px; }
  .urgent-grid h3 { font-size: clamp(2.1rem,9.5vw,3rem); }
  .urgent-price strong { font-size: 4.4rem; }
  .faq-list summary { min-height: 68px; padding-right: 40px; font-size: .94rem; }
  .contact-layout { gap: 35px; padding-block: 52px; }
  .contact-layout h2 { font-size: clamp(2.35rem,10.2vw,3.25rem); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  html { scroll-padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: 25px; }
  .mobile-cta { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8px; position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 -8px 24px rgba(15,47,73,.1); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; border-radius: 5px; background: var(--navy); color: var(--white); font-size: .75rem; font-weight: 900; }
  .mobile-cta a:first-child { flex-direction: column; gap: 0; background: var(--red); }
  .mobile-cta a:first-child span { font-size: .68rem; font-weight: 500; }
  .mobile-cta a:last-child span { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  .wrap { width: calc(100% - 26px); }
  .brand { flex-basis: 139px; width: 139px; }
  .brand img { left: -6px; }
  .header-call strong { font-size: .81rem; }
  .hero-copy h1 { font-size: 2.38rem; }
  .proof-grid li, .proof-grid li:first-child, .proof-grid li:last-child { padding: 14px 12px; }
  .path-card { padding-right: 52px; }
  .path-card b { right: 18px; }
  .housing-explainer { grid-template-columns: 1fr; }
  .practice-photos { height: 290px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .topbar-track { animation: none; transform: none; }
  .topbar-message[aria-hidden="true"] { display: none; }
  .topbar-track, .topbar-message { width: 100%; }
  .topbar-message { justify-content: center; padding-inline: 12px; white-space: normal; text-align: center; }
  .topbar-message::after { display: none; }
  .ticker-toggle { display: none; }
  .topbar { grid-template-columns: 1fr; }
}
