/* =========================================================
   Schäfer Bau – Stylesheet (Farbschema: Rot / Schwarz / Blau)
   Designkonzept „Engineered Precision":
   fette, enge Headlines · viel Weißraum · Hairline-Borders ·
   weiche gestaffelte Schatten · Rot als scharfer Akzent ·
   Blau als strukturelle Sekundärfarbe · dezente Bewegung
   ========================================================= */

:root {
  /* Marke (Werte unverändert) + Abstufungen */
  --color-black: #16181d;
  --color-black-2: #1e2128;
  --color-black-3: #262a33;
  --color-red: #c1272d;
  --color-red-dark: #9e1f24;
  --color-red-deep: #7f181d;
  --color-red-soft: #ff6b6b;   /* Akzent auf dunklen Flächen (6.4:1 auf Schwarz) */
  --color-red-tint: #fbeeee;
  --color-blue: #4568b0;
  --color-blue-dark: #36538c;
  --color-blue-deep: #25395f;
  --color-blue-soft: #6987c3;
  --color-blue-tint: #edf1f8;

  /* Neutrale Töne */
  --color-light: #f6f7f9;
  --color-white: #ffffff;
  --color-text: #23262c;
  --color-muted: #5b6472;
  --color-line: #e4e7ec;
  --color-line-dark: rgba(255, 255, 255, 0.10);

  /* Layout */
  --max-width: 1180px;
  --max-width-narrow: 800px;
  --section-pad: clamp(72px, 6vw + 40px, 120px);

  /* Form */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Elevation (gestaffelt, weich) */
  --shadow-sm: 0 1px 2px rgba(22, 24, 29, 0.05), 0 3px 10px rgba(22, 24, 29, 0.05);
  --shadow: 0 2px 6px rgba(22, 24, 29, 0.05), 0 14px 34px rgba(22, 24, 29, 0.10);
  --shadow-lg: 0 4px 12px rgba(22, 24, 29, 0.08), 0 28px 64px rgba(22, 24, 29, 0.16);

  /* Typografie */
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --fs-h1: clamp(2.4rem, 1.4rem + 3.4vw, 3.5rem);
  --fs-h1-sm: clamp(2rem, 1.3rem + 2.2vw, 2.8rem);
  --fs-h2: clamp(1.7rem, 1.25rem + 1.5vw, 2.3rem);
  --fs-h3: 1.2rem;
  --fs-eyebrow: 0.8rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--max-width-narrow); }

h1, h2, h3, h4 {
  color: var(--color-black);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}
.hero :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible,
.lightbox :focus-visible {
  outline-color: var(--color-white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-red);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-blue { background: var(--color-blue); border-color: var(--color-blue); }
.btn-blue:hover { background: var(--color-blue-dark); border-color: var(--color-blue-dark); }
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--color-red);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-black);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav > ul > li > a {
  position: relative;
  display: block;
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  transition: color 0.2s;
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--color-red); }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 230px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 8px;
  animation: dropIn 0.18s var(--ease);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  color: var(--color-text);
  padding: 10px 14px;
  display: block;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--color-blue-tint); color: var(--color-blue); }
.dropdown a.active { background: var(--color-blue-tint); color: var(--color-blue); font-weight: 600; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, var(--max-width));
  justify-content: center;
  justify-items: start;
  align-content: center;
  text-align: left;
  background-color: var(--color-black);
  background-image: radial-gradient(1000px 400px at 85% -10%, rgba(69, 104, 176, 0.25), transparent);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 96px 24px 84px;
}
/* Akzentbalken unterhalb des Heros: Rot → Blau */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-blue));
}
.hero-small { padding: clamp(64px, 8vw, 96px) 24px; }
/* Startseite: Baustellen-Foto als Hintergrund der Hero-Section */
.hero:not(.hero-small) {
  background-image:
    linear-gradient(75deg, rgba(22, 24, 29, 0.86) 0%, rgba(22, 24, 29, 0.55) 55%, rgba(37, 57, 95, 0.35) 100%),
    url("../assets/images/hero.jpg");
  min-height: min(78vh, 720px);
  padding: 120px 24px 110px;
}
.hero h1 {
  font-size: var(--fs-h1);
  margin: 0 0 20px;
  max-width: 17ch;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
}
.hero-small h1 { font-size: var(--fs-h1-sm); max-width: 24ch; }
.hero .eyebrow {
  color: var(--color-red-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  margin-bottom: 16px;
  display: block;
}
.hero p.lead {
  max-width: 56ch;
  margin: 0 0 34px;
  font-size: 1.1rem;
  color: #e9e9e9;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.breadcrumb {
  color: #cfd3d8;
  font-size: 0.9rem;
  margin-top: 12px;
}
.breadcrumb a { transition: color 0.15s; }
.breadcrumb a:hover { color: var(--color-red-soft); }

/* Dauerhaft sichtbarer KI-Transparenzhinweis auf dem Titelbild (EU-KI-VO Art. 50) */
.hero .ai-note {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(22, 24, 29, 0.62);
  color: #eceef1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  animation: none;
}

/* Sanfter Stagger-Einstieg der Hero-Inhalte */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero > * { animation: heroRise 0.7s var(--ease) both; }
.hero > *:nth-child(2) { animation-delay: 0.1s; }
.hero > *:nth-child(3) { animation-delay: 0.2s; }
.hero > *:nth-child(4) { animation-delay: 0.3s; }

/* ---------- Sections ---------- */
section { padding: var(--section-pad) 0; }
.section-tight { padding: calc(var(--section-pad) * 0.6) 0; }
.section-alt { background: var(--color-white); }
.section-dark { background: var(--color-black); color: var(--color-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow {
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: var(--fs-eyebrow);
}
.section-dark .section-head .eyebrow { color: var(--color-red-soft); }
.section-head h2 { font-size: var(--fs-h2); margin: 12px 0 16px; }
.section-head p { color: var(--color-muted); }
.section-dark .section-head p { color: #c7ccd1; }

/* ---------- Grid / Cards ---------- */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(193, 39, 45, 0.35);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--color-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-blue);
  transition: background 0.25s, color 0.25s;
}
.card:hover .icon { background: var(--color-blue); color: var(--color-white); }
.card h3 { margin: 0 0 10px; font-size: var(--fs-h3); }
.card p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.split .eyebrow {
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-eyebrow);
}
.split h2 { font-size: var(--fs-h2); margin: 12px 0 18px; }
.split p { color: var(--color-muted); }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-images img:first-child { margin-top: 40px; }

.stats { display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap; }
.stats div {
  border-left: 3px solid var(--color-red);
  padding-left: 14px;
}
.stats div:nth-child(2) { border-left-color: var(--color-blue); }
.stats div strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: var(--color-red);
}
.stats div:nth-child(2) strong { color: var(--color-blue); }
.stats div span { color: var(--color-muted); font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.3s;
}
.gallery figure:hover { box-shadow: var(--shadow); }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.gallery figure:hover img { transform: scale(1.04); filter: brightness(1.03); }

.ref-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ref-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 360px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ref-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.ref-card:hover img { transform: scale(1.05); }
.ref-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 24, 29, 0) 35%, rgba(22, 24, 29, 0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--color-white);
}
.ref-card .overlay span.count {
  color: var(--color-red-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ref-card .overlay h3 { margin: 6px 0 10px; font-size: 1.3rem; color: var(--color-white); }
.ref-card .overlay h3::after {
  content: "\2192";
  display: inline-block;
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.ref-card:hover .overlay h3::after { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 13, 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s var(--ease); }
.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.08); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.7rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.08); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Services list page ---------- */
.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 40px 24px;
  border-bottom: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: background 0.25s;
}
.service-block:last-child { border-bottom: none; }
.service-block:hover { background: var(--color-white); }
.service-block .num {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(69, 104, 176, 0.28);
  font-variant-numeric: tabular-nums;
}
@supports (-webkit-text-stroke: 1px black) {
  .service-block .num {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(69, 104, 176, 0.55);
  }
}
.service-block h3 { margin: 0 0 8px; font-size: 1.25rem; }
.service-block p { margin: 0; color: var(--color-muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius);
  background: var(--color-red-tint);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--color-muted); }
.contact-info-item a { transition: color 0.15s; }
.contact-info-item a:hover { color: var(--color-blue); }

.contact-cta { align-self: start; }
.contact-cta .hero-actions { margin-top: 24px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-blue), var(--color-blue-dark));
  color: var(--color-white);
  padding: clamp(64px, 7vw, 96px) 0;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 20% 0%, rgba(105, 135, 195, 0.4), transparent);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { margin: 0 0 12px; font-size: var(--fs-h2); color: var(--color-white); }
.cta-band p { color: var(--color-blue-tint); margin: 0 0 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: #c7ccd1;
  padding: 72px 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-line-dark);
}
.footer-grid h4 {
  color: var(--color-white);
  margin: 0 0 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { transition: color 0.15s; }
.footer-grid a:hover { color: var(--color-red-soft); }
.footer-logo { color: var(--color-white); font-weight: 800; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.footer-logo b { color: var(--color-red-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom ul { display: flex; gap: 18px; }

.ai-notice {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--color-line-dark);
  padding: 16px 0;
  font-size: 0.78rem;
  color: #9aa1a8;
  text-align: center;
  line-height: 1.5;
}
.ai-notice .container { max-width: 900px; }

/* content pages headings spacing */
section h3 { margin-top: 28px; }

/* ---------- Legal pages (Datenschutz / Impressum) ---------- */
.legal h2 {
  margin-top: 56px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.4rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 26px; font-size: 1.1rem; }
.legal h4 { margin-top: 20px; font-size: 1rem; color: var(--color-blue); }
.legal p { margin: 10px 0; }
.legal-list {
  list-style: decimal;
  margin: 10px 0 10px 0;
  padding-left: 1.6em;
}
.legal-list li { margin: 6px 0; padding-left: 4px; }

/* ---------- Scroll-Reveals (Klassen werden von js/main.js gesetzt) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

/* ---------- Responsive (einziger Breakpoint, synchron mit js/main.js) ---------- */
@media (max-width: 900px) {
  .split, .contact-grid, .footer-grid, .ref-categories { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split-images { order: 2; }
  .nav-toggle { display: block; }
  .logo img { height: 48px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    display: none;
    padding: 12px 20px 22px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav > ul > li > a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active { background: var(--color-red-tint); color: var(--color-red); }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    margin-top: 0;
    border: none;
    background: var(--color-light);
    animation: none;
  }
  .hero .ai-note { right: 16px; bottom: 14px; font-size: 0.65rem; padding: 5px 11px; }
  .service-block { grid-template-columns: 64px 1fr; gap: 18px; padding: 32px 16px; }
  .form-row { grid-template-columns: 1fr; }
}

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