/* =========================================================================
   Solara Dental — Silver Lake, Los Angeles
   Visual identity per Gemini design brief:
   bg #FFFDF8 · surface #FDF7ED · primary #6B9BA8 · accent #F7C76F
   text #3D3831 · muted #A5C2CA · Inter (headings) / Public Sans (body)
   ========================================================================= */

:root {
  --bg:      #FFFDF8;
  --surface: #FDF7ED;
  --primary: #6B9BA8;
  --primary-dark: #4E7C89;
  --accent:  #F7C76F;
  --accent-dark: #E6AF44;
  --text:    #3D3831;
  --muted:   #A5C2CA;
  --muted-soft: #EFE7DA;

  --ink-70: rgba(61, 56, 49, 0.70);
  --ink-55: rgba(61, 56, 49, 0.55);

  --font-head: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 12px rgba(61, 56, 49, 0.05);
  --shadow-md: 0 12px 30px rgba(61, 56, 49, 0.09);
  --shadow-lg: 0 26px 60px rgba(61, 56, 49, 0.14);

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.4rem); }
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section--surface { background: var(--surface); }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--ink-70); max-width: 60ch; }
.center .lead { margin-inline: auto; }

/* Diagonal "light rays" motif from the brief */
.rays {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(247, 199, 111, 0.00) 0px,
    rgba(247, 199, 111, 0.00) 26px,
    rgba(247, 199, 111, 0.055) 26px,
    rgba(247, 199, 111, 0.055) 30px,
    rgba(107, 155, 168, 0.045) 30px,
    rgba(107, 155, 168, 0.045) 33px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.92rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent);
  color: #4a3a13;
  box-shadow: 0 8px 20px rgba(247, 199, 111, 0.45);
}
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 12px 26px rgba(230, 175, 68, 0.55); }
.btn--secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(107, 155, 168, 0.32);
}
.btn--secondary:hover { background: var(--primary-dark); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(61, 56, 49, 0.22);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--muted-soft); }
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--accent) 0%, var(--accent-dark) 70%);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 4px 12px rgba(230, 175, 68, 0.4);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand span { color: var(--primary-dark); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__links { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.98rem; color: var(--text);
  position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 600; color: var(--primary-dark); }
.nav__phone svg { width: 17px; height: 17px; }

.navtoggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.navtoggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; padding: 0.5rem 1rem; text-align: center; }
.topbar a { color: var(--accent); font-weight: 700; }
.topbar .dot { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(102deg, rgba(43, 47, 46, 0.82) 0%, rgba(43, 47, 46, 0.55) 42%, rgba(43, 47, 46, 0.12) 78%, rgba(43, 47, 46, 0) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6rem); }
.hero__content { max-width: 640px; color: #fff; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255, 253, 248, 0.14); border: 1px solid rgba(255,255,255,0.28);
  padding: 0.42rem 0.95rem; border-radius: 999px; margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}
.hero__eyebrow svg { width: 15px; height: 15px; color: var(--accent); }
.hero h1 { color: #fff; margin-bottom: 0.7rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 52ch; margin-bottom: 1.9rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 253, 248, 0.13); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  padding: 0.45rem 0.9rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero__chip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.hero__stars { color: var(--accent); letter-spacing: 1px; }

/* ---------- Trust / stat bar ---------- */
.trustbar { background: var(--text); color: var(--bg); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 2.3rem; text-align: center; }
.trustbar__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--accent); line-height: 1; }
.trustbar__label { font-size: 0.9rem; color: rgba(255,253,248,0.75); margin-top: 0.4rem; }
.trustbar__item { position: relative; }
.trustbar__item + .trustbar__item::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,0.14);
}

/* ---------- Section heading block ---------- */
.sec-head { max-width: 62ch; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; }

/* ---------- Services ---------- */
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc {
  background: var(--bg); border: 1px solid var(--muted-soft);
  border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--muted); }
.svc__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(140deg, rgba(107,155,168,0.16), rgba(247,199,111,0.22));
  display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--primary-dark);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { margin-bottom: 0.5rem; }
.svc p { color: var(--ink-70); font-size: 0.98rem; margin-bottom: 0.9rem; }
.svc__diff {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--primary-dark); font-weight: 600;
  border-top: 1px dashed var(--muted); padding-top: 0.9rem;
}
.svc__diff svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--accent-dark); }

/* ---------- Split feature (founder / story) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; min-height: 340px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__badge {
  position: absolute; background: var(--bg); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1rem 1.2rem; display: flex; gap: 0.8rem; align-items: center;
}
.split__badge--br { right: -14px; bottom: -18px; }
.split__badge--bl { left: -14px; bottom: -18px; }
.split__badge svg { width: 30px; height: 30px; color: var(--primary); flex: none; }
.split__badge b { font-family: var(--font-head); display: block; font-size: 1.05rem; }
.split__badge span { font-size: 0.82rem; color: var(--ink-55); }
.quote {
  font-family: var(--font-head); font-weight: 500; font-size: 1.3rem; line-height: 1.5;
  color: var(--text); border-left: 3px solid var(--accent); padding-left: 1.3rem; margin: 1.4rem 0;
}
.signature { font-family: var(--font-head); }
.signature b { display: block; font-size: 1.05rem; }
.signature span { color: var(--ink-55); font-size: 0.92rem; }
.checklist { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--primary); margin-top: 2px; }

/* ---------- Comfort menu ---------- */
.comfort-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.comfort {
  background: var(--bg); border: 1px solid var(--muted-soft); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; text-align: center; box-shadow: var(--shadow-sm);
}
.comfort svg { width: 30px; height: 30px; color: var(--primary); margin-bottom: 0.7rem; }
.comfort b { font-family: var(--font-head); display: block; margin-bottom: 0.2rem; }
.comfort p { font-size: 0.86rem; color: var(--ink-55); margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: var(--bg); border: 1px solid var(--muted-soft); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi__stars { color: var(--accent-dark); letter-spacing: 2px; margin-bottom: 0.9rem; }
.testi__quote { font-size: 1rem; color: var(--text); margin-bottom: 1.3rem; flex: 1; }
.testi__quote strong { color: var(--primary-dark); }
.testi__who { display: flex; align-items: center; gap: 0.8rem; }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--primary), var(--muted));
  display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700;
}
.testi__name { font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; }
.testi__meta { font-size: 0.82rem; color: var(--ink-55); }

/* ---------- Emergency band ---------- */
.emergency {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: center;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.emergency::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(247,199,111,0.35), transparent 70%);
}
.emergency h2 { color: #fff; position: relative; }
.emergency p { color: rgba(255,255,255,0.9); margin-bottom: 0; position: relative; }
.emergency__act { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }
.emergency .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.emergency .btn--ghost:hover { background: rgba(255,255,255,0.12); color:#fff; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.member { text-align: center; }
.member__photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 1rem;
  aspect-ratio: 3/3.4; background: var(--surface);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.member .role { color: var(--primary-dark); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.member p { font-size: 0.9rem; color: var(--ink-55); margin: 0; }

/* team as one shared photo variant */
.team-culture { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; margin-top: 3rem; }
.team-culture img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ---------- Insurance / affordability ---------- */
.insure { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.plan-card {
  background: var(--bg); border: 2px solid var(--accent); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow-md); position: relative;
}
.plan-card__tag {
  position: absolute; top: -14px; left: 2.2rem; background: var(--accent); color: #4a3a13;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem; border-radius: 999px; text-transform: uppercase;
}
.plan-card h3 { font-size: 1.5rem; }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--primary-dark); line-height: 1; margin: 0.4rem 0 0.2rem; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--ink-55); }
.logos { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.logos span {
  background: var(--surface); border: 1px solid var(--muted-soft); border-radius: 999px;
  padding: 0.45rem 1rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--ink-70);
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--muted-soft); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--text);
  padding: 1.35rem 3rem 1.35rem 0; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: 0.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--primary); transition: transform .25s ease; font-weight: 400;
}
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { color: var(--ink-70); padding-bottom: 1.35rem; margin: 0; }

/* ---------- Location ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: stretch; }
.loc__card { background: var(--bg); border: 1px solid var(--muted-soft); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.hours { list-style: none; margin: 0.5rem 0 1.6rem; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px dashed var(--muted-soft); font-size: 0.98rem; }
.hours li:last-child { border-bottom: 0; }
.hours .day { font-family: var(--font-head); font-weight: 600; }
.hours .closed { color: var(--ink-55); }
.hours .open-badge { color: var(--primary-dark); font-weight: 700; }
.loc__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; position: relative; }
.loc__map iframe { width: 100%; height: 100%; border: 0; min-height: 340px; display:block; }
.contact-line { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.8rem; font-size: 1rem; }
.contact-line svg { width: 20px; height: 20px; color: var(--primary); flex: none; }
.served { font-size: 0.92rem; color: var(--ink-55); margin-top: 1.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.5rem); box-shadow: var(--shadow-sm); border: 1px solid var(--muted-soft);
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .hero__cta { justify-content: center; margin-top: 1.8rem; margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--text); color: rgba(255,253,248,0.78); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer .brand span { color: var(--accent); }
.footer p { font-size: 0.94rem; }
.footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.6rem; padding-top: 1.6rem; font-size: 0.85rem;
}
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; }
.footer__social a:hover { background: var(--primary); border-color: var(--primary); }
.footer__social svg { width: 16px; height: 16px; }

/* ---------- Floating call button (mobile) ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 10px 24px rgba(230,175,68,0.5); place-items: center; color: #4a3a13;
}
.fab svg { width: 26px; height: 26px; }

/* ---------- Reveal animation (content visible by default; JS enhances) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .grid-services, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .comfort-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav__links, .nav__phone span, .header .btn--secondary { display: none; }
  .navtoggle { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 84vw); background: var(--bg);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 5.5rem 1.6rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .3s ease; z-index: 200; overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav__links { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .nav__links a { padding: 0.9rem 0; border-bottom: 1px solid var(--muted-soft); font-size: 1.05rem; }
  .nav__actions { flex-direction: column; align-items: stretch; margin-top: 1.2rem; }
  .nav__actions .btn { width: 100%; }
  .header .btn--secondary { display: inline-flex; }
  .nav__phone { display: inline-flex; justify-content: center; }
  .nav__phone span { display: inline; }
  .navtoggle { z-index: 201; }
  .fab { display: grid; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .trustbar__item:nth-child(2)::before, .trustbar__item:nth-child(4)::before { display: none; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .emergency { grid-template-columns: 1fr; }
  .team-culture, .insure, .loc { grid-template-columns: 1fr; }
  .hero__sub { font-size: 1.08rem; }
  .split__badge { position: static; margin-top: 1rem; display: inline-flex; }
}

@media (max-width: 520px) {
  .grid-services, .testi-grid, .team-grid, .comfort-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .svc:hover { transform: none; }
}
