/* ============================================================
   Elektro Nafisi — elektro-nafisi.de
   Farben: Navy #1A2E5A · Orange #FF6B00
   Schrift: Archivo (lokal, DSGVO-konform)
   Signatur: "Kabellinie" — orange Leitung mit Anschlusspunkt
   ============================================================ */

/* ---------- Fonts (lokal gehostet) ---------- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/archivo-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/archivo-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/archivo-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/archivo-latin-900-normal.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --navy: #1a2e5a;
  --navy-deep: #10203f;
  --navy-ink: #14213d;
  --blue: #2e6bc6;
  --blue-dark: #24548f;
  --orange: #ff6b00;
  --orange-dark: #e05e00;
  --orange-soft: #ffe6d2;
  --paper: #f6f7fa;
  --sky: #f5f8fc;
  --surface-1: #eef2f8;
  --surface-2: #d1ddee;
  --white: #ffffff;
  --muted: #56617a;
  --line: #dde3ee;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(16, 32, 63, 0.05);
  --shadow-hover: 0 20px 50px rgba(16, 32, 63, 0.09);
  --ease: cubic-bezier(.25, .7, .3, 1);
  --maxw: 1120px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-glow { transform: none !important; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
body {
  margin: 0;
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy-ink);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--blue); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Grid-Blowout-Fix: verhindert, dass Bilder/Karten in Grid-Spalten
   diese über ihre vorgesehene Breite hinaus aufblähen. */
.hero .container > *,
.services-grid > *,
.why-grid > *,
.gallery > *,
.footer-grid > *,
.about-grid > *,
.contact-grid > *,
.form-row > *,
.hero-media,
.hero-media > * {
  min-width: 0;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 .5em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- Signatur: Klemmen-Etikett (Eyebrow) ----------
   Angelehnt an die weißen Adermarkierungen im Verteiler. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
  flex: none;
}

/* ---------- Signatur: Kabellinie unter Headlines ---------- */
.cableline {
  position: relative;
  display: block;
  width: 64px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  margin: 18px 0 0;
}
.cableline::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
}
.on-dark .cableline::after { background: var(--surface-1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand .logo { width: 44px; height: 44px; flex: none; }
.brand-name { font-weight: 900; font-size: 1.18rem; letter-spacing: -0.01em; line-height: 1.05; }
.brand-sub { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  color: var(--navy-ink);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .5s var(--ease), color .5s var(--ease);
}
.main-nav a:hover { border-bottom-color: var(--blue); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 11px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background-color .5s var(--ease);
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 7px 10px;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--sky) 0%, var(--surface-1) 100%);
  color: var(--navy-ink);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -15% -10%;
  background: radial-gradient(900px 420px at 85% -10%, rgba(255, 107, 0, 0.09), transparent 60%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: .55em;
}
.hero h1 .accent { color: var(--orange); }
.hero .lead { font-size: 1.15rem; line-height: 1.7; color: var(--muted); max-width: 34rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,0,.28); }
.btn-ghost { border-color: var(--line); color: var(--navy-ink); }
.btn-ghost:hover { background: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--blue); color: var(--white); }
.btn-navy:hover { background: var(--blue-dark); transform: translateY(-2px); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding: 0; list-style: none; }
.hero-badges li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 500; color: var(--muted);
}
.hero-badges svg { flex: none; }

.hero-media { position: relative; width: 100%; max-width: 440px; margin-inline: auto; }
.hero-media .photo-main {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.hero-media .photo-chip {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
  border-radius: var(--radius);
  border: 5px solid var(--navy-deep);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

/* ---------- Sections allgemein ---------- */
.section { padding: 150px 0; }
.section.alt { background: var(--surface-1); }
.section-head { max-width: 46rem; margin-bottom: 64px; }
.section-head p { color: var(--muted); }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 0, .4);
}
.service-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.service-card p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- Hinweisleiste Phase 1 ---------- */
.notice {
  margin-top: 30px;
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-left: 6px solid var(--navy);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--muted);
}

/* ---------- Arbeiten / Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery figcaption {
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 9px;
}
.gallery figcaption::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-grid .photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.quali-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.quali-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; }
.quali-list svg { flex: none; margin-top: 3px; color: var(--blue); }

/* ---------- Warum wir ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  color: var(--navy-ink);
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 107, 198, .3);
}
.why-card h3 { color: var(--navy-ink); display: flex; align-items: center; gap: 10px; }
.why-card h3 svg { color: var(--orange); flex: none; }
.why-card p { font-size: .93rem; margin: 0; color: var(--muted); }
.on-dark { background: var(--surface-1); color: var(--navy-ink); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 50rem; display: grid; gap: 12px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .5s var(--ease);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 56px 24px 28px;
  font-weight: 700;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--orange);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details[open] summary { border-bottom: 1.5px solid var(--line); }
.faq-body { padding: 0 28px 26px; color: var(--muted); font-size: .96rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-lines { list-style: none; margin: 0 0 6px; padding: 0; display: grid; gap: 16px; }
.contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.contact-lines .icon {
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--blue);
  display: grid; place-items: center;
}
.contact-lines a { font-weight: 700; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines .label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--navy-ink);
}
.field input:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.field-consent { margin-bottom: 18px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--orange);
}
.consent-label a { color: var(--blue); font-weight: 700; }
.hp { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

/* ---------- Bewertungen ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.review-card .stars { color: var(--orange); font-size: 24px; letter-spacing: 4px; }
.review-card .quote { margin: 14px 0 18px; line-height: 1.75; flex-grow: 1; }
.review-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.review-card .role { opacity: .7; }
.review-card .source { opacity: .7; font-size: .9em; }
.review-cta { text-align: center; margin-top: 32px; }
.review-carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.review-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 12px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track .review-card { flex: 0 0 calc(50% - 14px); scroll-snap-align: start; position: relative; }
.review-google { position: absolute; top: 16px; right: 20px; }
.review-google img { display: block; height: 32px; width: auto; }
.review-google img.is-broken { display: none; }
.quote-clamp { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.quote-toggle {
  display: inline-block;
  margin: -8px 0 18px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--orange);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.quote-toggle:hover { text-decoration: underline; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
}
.carousel-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.carousel-arrow-prev { left: -20px; }
.carousel-arrow-next { right: -20px; }
.carousel-dots { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 20px auto 0; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); padding: 0; cursor: pointer; }
.carousel-dot.is-active { background: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sky);
  color: var(--navy-ink);
  padding: 100px 0 40px;
  font-size: .92rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 40px;
}
.site-footer h3 { color: var(--navy); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { text-decoration: none; transition: color .5s var(--ease); }
.site-footer a:hover { color: var(--blue-dark); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer p { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 80px; max-width: 46rem; }
.legal h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; }
.legal h2 { font-size: 1.25rem; margin-top: 2em; }
.legal p, .legal li { color: var(--muted); }
.legal strong { color: var(--navy-ink); }

/* ---------- Werkschau: Album-Seite ---------- */
.werkschau-hero {
  background: linear-gradient(160deg, var(--sky) 0%, var(--surface-1) 100%);
  color: var(--navy-ink);
  padding: 56px 0 44px;
}
.werkschau-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: .3em; }
.werkschau-hero p { color: var(--muted); max-width: 40rem; margin: 0; }
.werkschau-cat { margin: 8px 0 14px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.werkschau-cat span { color: var(--orange); }
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 46px;
}
.album-grid > * { min-width: 0; }
.album-item {
  border: none;
  background: var(--white);
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
  font: inherit;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.album-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.album-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .2s ease;
}
.album-item:hover img { transform: scale(1.04); }
.album-item figcaption {
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 16, 32, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: #e8ecf7;
  font-size: .95rem;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

@media (max-width: 980px) { .album-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .album-grid { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 80px; }
  .hero-media { max-width: 480px; }
  .hero-media .photo-chip { left: auto; right: -12px; bottom: -24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 104px 0; }
  .site-footer { padding: 84px 0 36px; }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 22px 20px;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { text-align: center; margin-top: 10px; border-radius: 12px; }
  .nav-toggle { display: block; }
  .services-grid, .why-grid, .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 64px 0 32px; }
  .review-track .review-card { flex: 0 0 100%; }
  .carousel-arrow-prev { left: 4px; }
  .carousel-arrow-next { right: 4px; }
  .review-google { top: 4px; }
  .review-google img { height: 26px; }
  .service-card, .why-card, .review-card { padding: 30px 26px; }
  .contact-card, .contact-form { padding: 28px; }
}
