/* Allstate Dental - fast, modern, mobile-first */

:root {
  --c-primary: #02B8BF;       /* teal accent */
  --c-primary-dark: #01959b;
  --c-heading: #116089;       /* deep navy */
  --c-heading-2: #0d4e70;
  --c-mint: #07BC83;          /* CTA green */
  --c-mint-dark: #069b6c;
  --c-text: #2a3441;
  --c-muted: #5a6573;
  --c-line: #e2e7ed;
  --c-bg: #ffffff;
  --c-bg-soft: #f6f9fc;
  --c-bg-cool: #eef4f8;
  --c-warning: #b90000;
  --c-on-dark: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 39, 64, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 39, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 39, 64, 0.14);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;

  --container: 1200px;
  --header-h: 70px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: calc(var(--header-h) + 36px);
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--c-heading); text-decoration: none; }
a:hover, a:focus-visible { color: var(--c-primary); }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--c-heading);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute; top: -40px; left: 8px; z-index: 9999;
  background: var(--c-heading); color: #fff; padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { top: 8px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--c-heading); color: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--c-heading-2); color: #fff; transform: translateY(-1px); }
.btn--accent { background: var(--c-mint); color: #fff; }
.btn--accent:hover, .btn--accent:focus-visible { background: var(--c-mint-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-heading); border-color: rgba(17,96,137,.25); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: rgba(17,96,137,.08); border-color: var(--c-heading); color: var(--c-heading); }
.btn--white { background: #fff; color: var(--c-heading); }
.btn--white:hover, .btn--white:focus-visible { background: #f0f4f8; color: var(--c-heading-2); transform: translateY(-1px); }

/* ===== Top bar ===== */
.topbar {
  background: var(--c-heading);
  color: #fff;
  font-size: 14px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 36px;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 100%; }
.topbar__phone { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.topbar__phone:hover, .topbar__phone:focus-visible { color: #b8e6e8; }
.topbar__phone strong { font-weight: 700; }
.topbar__cta { padding: 6px 14px; font-size: 13px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  z-index: 50;
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--c-heading);
  flex: 0 0 auto;
}
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__line1 { color: var(--c-heading); font-weight: 800; letter-spacing: -.02em; }
.brand__line2 { color: var(--c-mint); font-weight: 800; letter-spacing: -.02em; font-size: .85em; }

.nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--c-heading);
  font-weight: 600;
  font-size: 15px;
  transition: background-color .15s ease;
}
.nav > li > a:hover, .nav > li > a:focus-visible { background: var(--c-bg-soft); color: var(--c-primary); }
.nav__phone { color: var(--c-heading) !important; }
.nav__book { margin-left: 6px; padding: 10px 18px !important; }

.nav__toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-heading);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.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); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: var(--c-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.04);
}
.hero__slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1.2s ease-in-out, transform 8s ease-out; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8, 30, 50, 0.55) 0%, rgba(8, 30, 50, 0.7) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 64px 20px 80px;
  max-width: 760px;
}
.hero__kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  background: rgba(2,184,191,0.18);
  border: 1px solid rgba(2,184,191,0.5);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a8eef1;
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
  margin: 0 0 16px;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero__accent { color: var(--c-mint); }
.hero__lede { font-size: clamp(17px, 1.6vw, 19px); color: #e9eef3; margin: 0 0 28px; max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__chips {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__chips li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero__nav {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  transition: background-color .15s;
}
.hero__nav:hover { background: rgba(255,255,255,0.3); }
.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }

/* ===== Trust bar ===== */
.trustbar { background: var(--c-bg-soft); padding: 24px 0; border-bottom: 1px solid var(--c-line); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: center;
}
.trustbar__item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: var(--c-text); }
.trustbar__item div { line-height: 1.35; text-align: left; }
.trustbar__icon { font-size: 22px; }

/* ===== Welcome ===== */
.welcome { padding: 80px 0; }
.welcome__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.welcome__eyebrow, .section-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-primary);
}
.welcome__title, .section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--c-heading);
  margin: 0 0 18px;
}
.welcome__body p { font-size: 17px; color: var(--c-text); }

/* ===== Sections common ===== */
.section-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.section-sub { color: var(--c-muted); font-size: 17px; }

/* ===== Services ===== */
.services { padding: 80px 0; background: var(--c-bg-cool); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.svc-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--c-text);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--c-line);
}
.svc-card:hover, .svc-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--c-text); }
.svc-card picture { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-soft); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; }
.svc-card h3 {
  font-size: 18px;
  margin: 16px 18px 6px;
  color: var(--c-heading);
  text-decoration: underline;
  text-decoration-color: rgba(2,184,191,.4);
  text-underline-offset: 4px;
}
.svc-card p { margin: 0 18px 14px; font-size: 14.5px; color: var(--c-muted); }
.svc-card__more {
  display: block;
  padding: 12px 18px 18px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 14px;
}

/* ===== Emergency CTA ===== */
.emergency {
  background: linear-gradient(135deg, var(--c-warning), #e02222);
  color: #fff;
  padding: 56px 0;
}
.emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.emergency__text { flex: 1 1 380px; }
.emergency__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.emergency__title { font-size: clamp(24px, 3.4vw, 36px); margin: 0 0 8px; color: #fff; }
.emergency__sub { font-size: 16px; margin: 0; color: rgba(255,255,255,0.92); }

/* ===== Meet Dr Luba ===== */
.meet { padding: 80px 0; }
.meet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.meet__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.meet__body p { font-size: 17px; color: var(--c-text); }
.meet__bullets { list-style: none; padding: 0; margin: 16px 0 24px; }
.meet__bullets li { padding: 8px 0; font-weight: 600; color: var(--c-heading); }

/* ===== Office Tour ===== */
.tour { padding: 80px 0; background: var(--c-bg-soft); }
.tour__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 480px;
}
.tour__shot { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; display: flex; flex-direction: column; }
.tour__shot img { width: 100%; flex: 1 1 auto; min-height: 0; object-fit: cover; }
.tour__shot--lg { grid-row: span 2; }
.tour__shot figcaption { padding: 10px 14px; font-size: 14px; color: var(--c-muted); font-weight: 600; flex: 0 0 auto; }
.tour__shot figcaption { padding: 10px 14px; font-size: 14px; color: var(--c-muted); font-weight: 600; }

/* ===== Insurance ===== */
.insurance { padding: 80px 0; }
.insurance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.ins-pill {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--c-heading);
}
.ins-pill img { width: 60px; height: 40px; object-fit: contain; flex: 0 0 auto; }
.financing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--c-heading), #0d6c98);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.financing h3 { color: #fff; margin: 0 0 6px; font-size: 22px; }
.financing p { margin: 0; color: rgba(255,255,255,0.9); }
.financing__logos img { height: 60px; width: auto; background: #fff; padding: 10px; border-radius: 12px; }

/* ===== Reviews ===== */
.reviews { padding: 80px 0; background: var(--c-bg-cool); }
.reviews__carousel { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.review { display: none; padding: 0 12px; }
.review.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.review__quote {
  font-family: var(--display);
  font-size: 90px;
  line-height: 1;
  color: var(--c-primary);
  opacity: .35;
  margin: 0 auto 8px;
}
.review blockquote {
  font-size: 19px;
  font-style: italic;
  color: var(--c-text);
  margin: 0 0 16px;
  line-height: 1.6;
}
.review__author { font-weight: 700; color: var(--c-heading); }
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(17,96,137,0.2);
  border: 0;
  cursor: pointer;
  padding: 0;
}
.reviews__dots button.is-active { background: var(--c-primary); width: 24px; border-radius: 999px; }
.reviews__more { text-align: center; margin-top: 24px; }

/* ===== Booking ===== */
.booking {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--c-bg-cool), var(--c-bg));
}
.booking__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.booking__eyebrow {
  margin: 0 0 4px;
  font-size: 13px; font-weight: 700;
  color: var(--c-primary); text-transform: uppercase; letter-spacing: .12em;
}
.booking__title { font-size: clamp(24px, 3vw, 32px); margin: 0 0 8px; }
.booking__lede { color: var(--c-muted); margin: 0 0 18px; }
.booking__list {
  list-style: none;
  padding: 16px;
  margin: 0 0 20px;
  background: var(--c-bg-soft);
  border-radius: var(--radius);
}
.booking__list li { padding: 4px 0; font-size: 14.5px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label { font-weight: 600; font-size: 14px; color: var(--c-heading); }
.form-row input, .form-row select, .form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(2,184,191,.15);
}
.booking__small { font-size: 13px; color: var(--c-muted); margin: 12px 0 0; text-align: center; }
.booking__ok { background: #e8f9ee; color: #0a6c3a; padding: 12px 16px; border-radius: 10px; margin-top: 14px; }
.booking__side {
  background: var(--c-heading);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.booking__side h3 { color: #fff; margin: 0 0 16px; font-size: 20px; }
.hours { list-style: none; padding: 0; margin: 0 0 22px; }
.hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 15px; }
.hours li:last-child { border-bottom: 0; }
.booking__side .btn { margin-bottom: 10px; }
.booking__side .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.booking__side .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--c-bg-soft); }
.faq__inner { max-width: 760px; margin: 0 auto; }
.qa {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.qa[open] { box-shadow: var(--shadow-sm); }
.qa summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--c-heading);
  padding: 18px 22px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--c-primary);
  font-weight: 400;
  transition: transform .2s;
}
.qa[open] summary::after { content: "−"; }
.qa p { padding: 0 22px 18px; margin: 0; color: var(--c-text); }

/* ===== Visit / Map ===== */
.visit { padding: 80px 0; }
.visit__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.visit__map iframe {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.visit__info p { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; margin: 0 0 12px; }
.visit__info svg { flex: 0 0 auto; margin-top: 2px; }
.visit__info a { font-weight: 600; }
.visit__addr { font-weight: 700; color: var(--c-heading); }

/* ===== Footer ===== */
.footer {
  background: #0a1e2d;
  color: #cfd8e0;
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h4 { color: #fff; margin: 0 0 12px; font-size: 16px; }
.footer p, .footer a { color: #cfd8e0; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer__about { margin-top: 12px; }
.footer__links, .footer__hours { list-style: none; padding: 0; margin: 0; }
.footer__links li, .footer__hours li { padding: 4px 0; }
.footer__hours li { display: flex; justify-content: space-between; }
.brand--footer img { width: 40px; height: 40px; border-radius: 8px; }
.brand--footer .brand__line1 { color: #fff; }
.footer__base {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #8a98a5;
}

/* ===== Floating call button ===== */
.floater {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-mint);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 70;
  transition: transform .2s, background-color .2s;
}
.floater:hover, .floater:focus-visible { background: var(--c-mint-dark); color: #fff; transform: scale(1.05); }
.floater::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .hero__nav { display: flex; }
}

/* Tablet */
@media (max-width: 1023px) {
  .meet__grid { grid-template-columns: 1fr; gap: 28px; }
  .meet__media img { aspect-ratio: 16/10; }
  .booking__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map iframe { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tour__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; min-height: 0; }
  .tour__shot--lg { grid-row: span 2; grid-column: span 2; }
  .tour__shot--lg img { aspect-ratio: 16/9; }
}

/* Mobile */
@media (max-width: 760px) {
  body { padding-top: calc(var(--header-h) + 36px); }
  .nav__toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-top: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.is-open { max-height: 540px; }
  .nav > li { width: 100%; }
  .nav > li > a { padding: 12px 14px; width: 100%; justify-content: flex-start; }
  .nav__book { margin-left: 0 !important; }
  .brand__text { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .topbar__phone span { display: none; }
  .topbar__phone::after { content: "(973) 482-3492"; }
  .topbar__cta { padding: 4px 10px; font-size: 12px; }
  .hero { min-height: 480px; }
  .hero__content { padding: 48px 20px 60px; }
  .hero__chips { margin-top: 24px; }
  .hero__chips li { font-size: 12px; padding: 5px 10px; }
  .emergency__inner { flex-direction: column; align-items: stretch; }
  .financing { padding: 24px; }
  .booking__card, .booking__side { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .floater { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

@media (max-width: 380px) {
  .hero__chips { gap: 6px; }
  .hero__chips li { font-size: 11px; padding: 4px 9px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero__slide.is-active { transform: none; }
}

/* Print */
@media print {
  .topbar, .navbar, .floater, .hero__nav, .reviews__dots, .booking__side { display: none !important; }
  body { padding-top: 0; }
  .hero { min-height: 0; }
}