/* ============================================================
   Zahnmedizin Wackerl — Zahnarzt Dachau
   Design: edel-redaktionell · Tinten-Petrol · Porzellan · Messing
   ============================================================ */

:root {
  --ink: #16262b;
  --ink-soft: #223840;
  --petrol: #3e5459;
  --petrol-light: #5d777d;
  --porcelain: #f4f2ec;
  --paper: #fdfcf8;
  --ice: #d8e6ec;
  --brass: #b3874a;
  --brass-deep: #96703a;
  --line: rgba(22, 38, 43, .14);
  --line-light: rgba(253, 252, 248, .18);
  --text: #2b3b40;
  --text-muted: #5c6f74;
  --radius: 18px;
  --shadow-lg: 0 30px 60px -18px rgba(22, 38, 43, .28);
  --shadow-md: 0 16px 40px -16px rgba(22, 38, 43, .22);
  --ease: cubic-bezier(.22, .8, .3, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.hero-grid > *, .praxis-grid > *, .team-grid > *,
.contact-grid > *, .services-grid > *, .steps > *,
.quotes > *, .jobs > * { min-width: 0; }

::selection { background: var(--brass); color: #fff; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--ink); line-height: 1.12; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass-deep);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }

.section-head h2 { font-size: clamp(34px, 4.6vw, 52px); margin: 14px 0 18px; letter-spacing: -.01em; }
.section-head h2 em { font-style: italic; color: var(--petrol); }
.section-head p.lead { max-width: 620px; color: var(--text-muted); font-size: 18px; }

/* ---------- Skip-Link & Fokus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 12px; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(22, 38, 43, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(22, 38, 43, .28);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.brand svg { width: 34px; height: 40px; flex: none; }
.brand-name { font-family: var(--font-display); font-size: 20px; letter-spacing: .01em; white-space: nowrap; }
.brand-name span { color: var(--ice); font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: rgba(253, 252, 248, .82); font-size: 15px; font-weight: 500;
  position: relative; padding: 4px 0; transition: color .25s;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brass); color: #fff !important;
  padding: 12px 22px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 8px 22px -8px rgba(179, 135, 74, .6);
  cursor: pointer;
}
.btn-call:hover { background: var(--brass-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(179, 135, 74, .55); }
.btn-call::after { display: none; }
.btn-call svg { width: 16px; height: 16px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--paper);
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(93, 119, 125, .55), transparent 60%),
    radial-gradient(900px 700px at -12% 110%, rgba(179, 135, 74, .16), transparent 55%),
    linear-gradient(160deg, #1a2d33 0%, var(--ink) 58%, #101c20 100%);
  padding: 168px 0 0;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(253,252,248,.045) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-bottom: 92px;
}
.hero .eyebrow { color: var(--ice); }
.hero .eyebrow::before { background: var(--ice); }
.hero h1 {
  font-size: clamp(42px, 5.6vw, 72px); color: var(--paper);
  margin: 22px 0 24px; letter-spacing: -.015em;
}
.hero h1 em { font-style: italic; color: var(--ice); }
.hero p.sub { font-size: 19px; color: rgba(253, 252, 248, .78); max-width: 540px; margin-bottom: 36px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brass); color: #fff; padding: 17px 32px;
  border-radius: 100px; font-weight: 600; font-size: 16px;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 14px 34px -10px rgba(179, 135, 74, .65);
}
.btn-primary:hover { background: var(--brass-deep); transform: translateY(-3px); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--paper); padding: 16px 28px; border-radius: 100px;
  border: 1px solid rgba(253, 252, 248, .35); font-weight: 500; font-size: 16px;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(253, 252, 248, .08); transform: translateY(-3px); }

.hero-facts { display: flex; gap: 38px; margin-top: 48px; flex-wrap: wrap; }
.fact .num { font-family: var(--font-display); font-size: 34px; color: var(--ice); line-height: 1; }
.fact .num sup { font-size: 18px; color: var(--brass); }
.fact .lbl { font-size: 13.5px; color: rgba(253, 252, 248, .6); margin-top: 6px; letter-spacing: .04em; }

.hero-visual { position: relative; }
.hero-visual .photo-main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero-visual .photo-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-visual .photo-chip {
  position: absolute; left: -34px; bottom: -30px; width: 190px; height: 190px;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 5px solid var(--paper); transform: rotate(-3deg);
}
.hero-visual .photo-chip img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; right: -14px; top: -26px;
  background: var(--paper); color: var(--ink);
  border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
  display: flex; align-items: center; gap: 12px;
}
.hero-card svg { width: 26px; height: 26px; color: var(--brass); flex: none; }
.hero-card strong { font-size: 14.5px; display: block; line-height: 1.3; }
.hero-card span { font-size: 12.5px; color: var(--text-muted); }

/* Trust-Band */
.trust-band {
  position: relative; border-top: 1px solid var(--line-light);
  background: rgba(16, 28, 32, .55);
}
.trust-band ul {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 14px 32px; padding: 20px 0; font-size: 14.5px;
  color: rgba(253, 252, 248, .72);
}
.trust-band li { display: flex; align-items: center; gap: 10px; }
.trust-band svg { width: 15px; height: 15px; color: var(--brass); flex: none; }

/* ---------- Sektionen allgemein ---------- */
section { padding: 108px 0; }
.section-head { margin-bottom: 58px; }

/* ---------- Leistungen ---------- */
#leistungen { background: var(--porcelain); position: relative; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.service-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card .img-wrap { overflow: hidden; aspect-ratio: 3 / 2; }
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card .card-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 22.5px; margin-bottom: 10px; }
.service-card p { font-size: 15.5px; color: var(--text-muted); flex: 1; }
.service-card .tag {
  align-self: flex-start; margin-bottom: 14px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass-deep); background: rgba(179, 135, 74, .1);
  padding: 5px 12px; border-radius: 100px;
}
.service-card.wide { grid-column: span 2; flex-direction: row; }
.service-card.wide .img-wrap { flex: 1; aspect-ratio: auto; min-height: 100%; }
.service-card.wide .card-body { flex: 1.1; justify-content: center; }

/* ---------- Ablauf ---------- */
#ablauf { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
#ablauf::before {
  content: "W"; position: absolute; right: -60px; top: -80px;
  font-family: var(--font-display); font-style: italic;
  font-size: 480px; line-height: 1; color: rgba(253, 252, 248, .035);
  pointer-events: none;
}
#ablauf .section-head h2 { color: var(--paper); }
#ablauf .section-head h2 em { color: var(--ice); }
#ablauf .section-head p.lead { color: rgba(253, 252, 248, .65); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  position: relative; padding: 34px 28px 30px;
  background: rgba(253, 252, 248, .045);
  border: 1px solid var(--line-light); border-radius: var(--radius);
  transition: background .35s, transform .35s var(--ease);
}
.step:hover { background: rgba(253, 252, 248, .09); transform: translateY(-6px); }
.step .step-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 52px; color: var(--brass); line-height: 1; margin-bottom: 18px;
}
.step h3 { color: var(--paper); font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15px; color: rgba(253, 252, 248, .62); }

/* ---------- Praxis ---------- */
#praxis { background: var(--paper); }
.praxis-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.praxis-copy h2 { font-size: clamp(32px, 4vw, 46px); margin: 14px 0 20px; }
.praxis-copy h2 em { font-style: italic; color: var(--petrol); }
.praxis-copy p { color: var(--text-muted); margin-bottom: 18px; }
.praxis-points { margin: 26px 0 34px; display: grid; gap: 14px; }
.praxis-points li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--text); }
.praxis-points svg { width: 20px; height: 20px; color: var(--brass); flex: none; margin-top: 3px; }
.praxis-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 16px;
}
.praxis-gallery figure {
  border-radius: 14px; overflow: hidden; position: relative; margin: 0;
}
.praxis-gallery figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.praxis-gallery figure:hover img { transform: scale(1.07); }
.praxis-gallery .tall { grid-row: span 2; }

/* ---------- Team ---------- */
#team { background: var(--porcelain); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.team-photo { position: sticky; top: 120px; }
.team-photo .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.team-photo img { filter: grayscale(1); width: 100%; }
.team-photo figcaption {
  margin-top: 18px; font-size: 14px; color: var(--text-muted);
  font-style: italic; text-align: center; font-family: var(--font-display);
}
.doc-card {
  background: var(--paper); border-radius: var(--radius);
  border: 1px solid var(--line); padding: 34px 36px; margin-bottom: 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.doc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doc-card h3 { font-size: 25px; }
.doc-card .role { color: var(--brass-deep); font-size: 13.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 6px 0 16px; }
.doc-card ul { display: grid; gap: 9px; }
.doc-card li { display: flex; gap: 12px; font-size: 15px; color: var(--text-muted); }
.doc-card li::before { content: "—"; color: var(--brass); flex: none; }

/* ---------- Stimmen ---------- */
#stimmen { background: var(--paper); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: var(--porcelain); border-radius: var(--radius);
  padding: 34px 32px; position: relative;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote .qmark {
  font-family: var(--font-display); font-style: italic; font-size: 64px;
  color: var(--brass); line-height: .6; margin-bottom: 20px;
}
.quote h3 { font-size: 19.5px; margin-bottom: 12px; }
.quote p { font-size: 15px; color: var(--text-muted); flex: 1; }
.quote .stars { color: var(--brass); letter-spacing: 3px; margin-top: 20px; font-size: 15px; }
.quote .src { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Karriere ---------- */
#karriere {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(93, 119, 125, .5), transparent 60%),
    linear-gradient(150deg, #1a2d33, var(--ink));
  color: var(--paper);
}
#karriere .section-head h2 { color: var(--paper); }
#karriere .section-head h2 em { color: var(--ice); }
#karriere .section-head p.lead { color: rgba(253, 252, 248, .65); }
.jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.job {
  background: rgba(253, 252, 248, .05); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 36px 38px;
  transition: background .35s, transform .35s var(--ease);
}
.job:hover { background: rgba(253, 252, 248, .09); transform: translateY(-6px); }
.job h3 { color: var(--paper); font-size: 23px; margin-bottom: 6px; }
.job .job-type { color: var(--brass); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.job ul { margin: 20px 0 26px; display: grid; gap: 9px; }
.job li { display: flex; gap: 12px; font-size: 15px; color: rgba(253, 252, 248, .7); }
.job li svg { width: 16px; height: 16px; color: var(--brass); flex: none; margin-top: 4px; }
.job a { font-weight: 600; color: var(--ice); display: inline-flex; align-items: center; gap: 8px; }
.job a:hover { color: #fff; }

/* ---------- Kontakt ---------- */
#kontakt { background: var(--porcelain); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.hours-card {
  background: var(--paper); border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-md);
}
.hours-card .hc-head {
  background: var(--ink); color: var(--paper); padding: 24px 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hours-card .hc-head h3 { color: var(--paper); font-size: 21px; }
.hours-card .hc-head svg { width: 22px; height: 22px; color: var(--brass); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 15px 34px; font-size: 15.5px; border-top: 1px solid var(--line); }
.hours-table tr td:last-child { text-align: right; color: var(--text-muted); white-space: nowrap; }
.hours-table tr.today td { background: rgba(179, 135, 74, .07); font-weight: 600; color: var(--ink); }
.hours-note { padding: 14px 34px 24px; font-size: 13.5px; color: var(--text-muted); font-style: italic; }

.contact-list { display: grid; gap: 18px; margin: 30px 0 38px; }
.contact-list a.item, .contact-list .item {
  display: flex; gap: 18px; align-items: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-list a.item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-list .ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--ink); color: var(--brass);
  display: grid; place-items: center;
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: 16.5px; color: var(--ink); }
.contact-list span { font-size: 13.5px; color: var(--text-muted); }

/* ---------- CTA-Finale ---------- */
.final-cta {
  background: var(--ink); border-radius: 26px; color: var(--paper);
  padding: 64px 60px; margin-top: 88px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(179, 135, 74, .25), transparent 60%);
}
.final-cta h2 { position: relative; color: var(--paper); font-size: clamp(28px, 3.4vw, 40px); max-width: 520px; }
.final-cta h2 em { color: var(--ice); }
.final-cta .cta-box { position: relative; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #101c20; color: rgba(253, 252, 248, .6); padding: 56px 0 40px; font-size: 14.5px; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-note { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(253, 252, 248, .38); }

/* ---------- Floating Call (mobil) ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--brass); color: #fff;
  display: none; place-items: center;
  box-shadow: 0 16px 34px -8px rgba(179, 135, 74, .75);
  animation: pulse 2.6s infinite;
}
.float-call svg { width: 24px; height: 24px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 34px -8px rgba(179,135,74,.75), 0 0 0 0 rgba(179,135,74,.45); }
  55% { box-shadow: 0 16px 34px -8px rgba(179,135,74,.75), 0 0 0 16px rgba(179,135,74,0); }
}

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

.hero .rise { opacity: 0; transform: translateY(30px); animation: rise .9s var(--ease) forwards; }
.hero .rise-1 { animation-delay: .1s; } .hero .rise-2 { animation-delay: .25s; }
.hero .rise-3 { animation-delay: .4s; } .hero .rise-4 { animation-delay: .55s; }
.hero .rise-5 { animation-delay: .7s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .hero .rise { opacity: 1; transform: none; }
}

/* ---------- Unterseiten (Impressum etc.) ---------- */
.legal-page { padding: 170px 0 90px; max-width: 780px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 34px; }
.legal-page h2 { font-size: 24px; margin: 40px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.legal-page a { color: var(--brass-deep); text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-visual { max-width: 620px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .praxis-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .team-photo { position: static; max-width: 560px; }
  .quotes { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section { padding: 76px 0; }
  .main-nav {
    position: fixed; inset: 0; background: var(--ink);
    flex-direction: column; justify-content: center; gap: 34px;
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 22px; font-family: var(--font-display); }
  .nav-toggle {
    display: block; z-index: 110; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; position: relative;
  }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after {
    content: ""; position: absolute; left: 8px; right: 8px; height: 2px;
    background: #fff; border-radius: 2px; transition: all .35s var(--ease);
  }
  .nav-toggle::before { top: 14px; } .nav-toggle span { top: 21px; } .nav-toggle::after { top: 28px; }
  .nav-toggle.open::before { top: 21px; transform: rotate(45deg); }
  .nav-toggle.open span { opacity: 0; }
  .nav-toggle.open::after { top: 21px; transform: rotate(-45deg); }
  .header-inner .btn-call { display: none; }
  .hero { padding-top: 128px; }
  .hero-card { right: 0; top: -20px; }
  .hero-visual .photo-chip { left: -8px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; flex-direction: column; }
  .service-card.wide .img-wrap { aspect-ratio: 3 / 2; }
  .steps { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .jobs { grid-template-columns: 1fr; }
  .praxis-gallery { grid-auto-rows: 120px; }
  .final-cta { padding: 44px 28px; }
  .float-call { display: grid; }
  .hours-table td { padding: 13px 22px; }
  .hours-card .hc-head, .hours-note { padding-left: 22px; padding-right: 22px; }
}
