/* =========================================================
   VINCI | Büro für Gestaltung — Stylesheet
   Mobile First · DSGVO-konform (lokale Schriften, keine CDNs)
   ========================================================= */

/* ---------- Lokale Schriften (self-hosted, kein Google CDN) ---------- */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --ink: #15140f;
  --ink-soft: #2b2924;
  --paper: #f6f3ec;
  --paper-2: #efeae0;
  --card: #ffffff;
  --muted: #6c675e;
  --line: rgba(21, 20, 15, 0.12);
  --line-strong: rgba(21, 20, 15, 0.22);
  --accent: #cf4f2a;
  --accent-soft: #e96a45;
  --accent-tint: rgba(207, 79, 42, 0.08);
  --wowo: #22b8e0;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(21, 20, 15, 0.04), 0 4px 14px rgba(21, 20, 15, 0.05);
  --shadow: 0 8px 30px rgba(21, 20, 15, 0.08), 0 2px 8px rgba(21, 20, 15, 0.04);
  --shadow-lg: 0 24px 60px rgba(21, 20, 15, 0.14);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(64px, 11vw, 130px);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 50px;
  padding: 0 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s,
    box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(207, 79, 42, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--accent);
  color: #fff;
}

.btn .arrow {
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 10px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  z-index: 120;
}
.logo img {
  height: 46px;
  width: auto;
  mix-blend-mode: multiply; /* lässt das weiße Logo-Rechteck auf hellem Grund verschwinden */
  transition: height 0.4s;
}
.site-header.scrolled .logo img {
  height: 40px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 120;
  transition: background 0.3s;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-Menü-Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease), opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 9vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  display: block;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.open a {
  animation: menuItemIn 0.5s var(--ease) forwards;
}
.mobile-menu.open a:nth-child(1) {
  animation-delay: 0.08s;
}
.mobile-menu .m-cta {
  margin-top: 28px;
  opacity: 0;
}
.mobile-menu.open .m-cta {
  animation: menuItemIn 0.5s var(--ease) 0.36s forwards;
}
@keyframes menuItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-menu li:nth-child(2) a {
  animation-delay: 0.14s;
}
.mobile-menu li:nth-child(3) a {
  animation-delay: 0.2s;
}
.mobile-menu li:nth-child(4) a {
  animation-delay: 0.26s;
}
.mobile-menu li:nth-child(5) a {
  animation-delay: 0.32s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(130px, 22vw, 200px);
  padding-bottom: clamp(60px, 10vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(
    circle,
    var(--accent-tint),
    transparent 65%
  );
  z-index: -1;
}
.hero__grid {
  display: grid;
  gap: 40px;
}
.hero__title {
  margin-top: 22px;
}
.hero__title .accent {
  font-style: italic;
  color: var(--accent);
}
.hero__lead {
  margin-top: 24px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 56ch;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stats {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat .lbl {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Trust / Marquee ---------- */
.trust {
  padding-block: clamp(40px, 6vw, 60px);
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}
.trust p {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  font-weight: 600;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}
.trust__logos span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.3s;
  letter-spacing: 0.02em;
}
.trust__logos span:hover {
  opacity: 1;
}

/* ---------- Services ---------- */
.services {
  background: var(--paper);
}
.accordion {
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-head {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px) 0;
  text-align: left;
  color: var(--ink);
}
.acc-head .idx {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 34px;
}
.acc-head h3 {
  flex: 1;
  font-family: var(--serif);
  transition: color 0.3s;
}
.acc-item.active .acc-head h3 {
  color: var(--accent);
}
.acc-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.acc-icon::before {
  width: 26px;
  height: 2px;
}
.acc-icon::after {
  width: 2px;
  height: 26px;
}
.acc-item.active .acc-icon::after {
  transform: rotate(90deg);
}
.acc-item.active .acc-icon::before,
.acc-item.active .acc-icon::after {
  background: var(--accent);
}
.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.acc-body__inner {
  padding: 0 0 30px 52px;
  max-width: 760px;
}
.acc-body__inner p {
  color: var(--muted);
  margin-bottom: 16px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list li {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ---------- About ---------- */
.about {
  background: var(--ink);
  color: var(--paper);
}
.about h2,
.about h3 {
  color: var(--paper);
}
.about__grid {
  display: grid;
  gap: 44px;
}
.about__lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  line-height: 1.3;
  font-weight: 400;
  color: var(--paper);
}
.about__lead .accent {
  color: var(--accent-soft);
  font-style: italic;
}
.about__text p {
  color: rgba(246, 243, 236, 0.72);
  margin-bottom: 18px;
}
.team {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.team__member {
  border: 1px solid rgba(246, 243, 236, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(246, 243, 236, 0.04);
  transition: background 0.3s, transform 0.4s var(--ease);
}
.team__member:hover {
  background: rgba(246, 243, 236, 0.09);
  transform: translateY(-3px);
}
.team__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.team__member strong {
  display: block;
  font-size: 1.05rem;
  color: var(--paper);
}
.team__member span {
  font-size: 0.85rem;
  color: rgba(246, 243, 236, 0.6);
}

/* ---------- Why us ---------- */
.why {
  background: var(--paper);
}
.cards {
  display: grid;
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card__icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  margin-bottom: 12px;
}
.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Process ---------- */
.process {
  background: var(--paper-2);
}
.steps {
  display: grid;
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.4s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--accent-tint);
  position: absolute;
  top: 14px;
  right: 22px;
  line-height: 1;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  position: relative;
}
.step p {
  color: var(--muted);
  font-size: 0.96rem;
  position: relative;
}

/* ---------- Standort ---------- */
.location {
  background: var(--paper);
}
.location__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.location__info .info-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .ic svg {
  width: 20px;
  height: 20px;
}
.info-row strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-row a,
.info-row span {
  color: var(--ink);
  font-weight: 500;
}
.info-row a:hover {
  color: var(--accent);
}

/* Statischer Karten-Platzhalter (kein Google-Maps-Embed) */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(135deg, #e7e2d6, #dcd6c7);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 20, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 15, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-card__roads::before,
.map-card__roads::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
.map-card__roads::before {
  width: 140%;
  height: 26px;
  top: 42%;
  left: -20%;
  transform: rotate(-12deg);
}
.map-card__roads::after {
  width: 26px;
  height: 140%;
  left: 58%;
  top: -20%;
  transform: rotate(8deg);
}
.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin__dot {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(207, 79, 42, 0.4);
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-6px);
  }
}
.map-pin__label {
  background: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.map-card__note {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  border-radius: 8px;
}
.location__actions {
  margin-top: 24px;
}

/* ---------- Kontakt ---------- */
.contact {
  background: var(--ink);
  color: var(--paper);
}
.contact h2 {
  color: var(--paper);
}
.contact__grid {
  display: grid;
  gap: 44px;
}
.contact__intro p {
  color: rgba(246, 243, 236, 0.72);
  margin-top: 18px;
  font-size: 1.08rem;
}
.contact__direct {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.contact__direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-weight: 500;
}
.contact__direct a:hover {
  color: var(--accent-soft);
}
.contact__direct svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}

/* Form */
.form {
  background: rgba(246, 243, 236, 0.05);
  border: 1px solid rgba(246, 243, 236, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(246, 243, 236, 0.85);
}
.field label .req {
  color: var(--accent-soft);
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(246, 243, 236, 0.2);
  background: rgba(21, 20, 15, 0.35);
  color: var(--paper);
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(246, 243, 236, 0.4);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  background: rgba(21, 20, 15, 0.55);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1.5px solid rgba(246, 243, 236, 0.4);
  border-radius: 7px;
  background: rgba(21, 20, 15, 0.35);
  cursor: pointer;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
  margin-top: 2px;
}
.consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.consent label {
  font-size: 0.88rem;
  color: rgba(246, 243, 236, 0.7);
  line-height: 1.5;
}
.consent label a {
  color: var(--accent-soft);
  text-decoration: underline;
}
.form .btn {
  width: 100%;
}
.form__status {
  margin-top: 16px;
  font-size: 0.9rem;
  min-height: 1.2em;
  text-align: center;
}
.form__status.error {
  color: var(--accent-soft);
}
.form__status.success {
  color: #7fd1a6;
}
.field-error {
  display: block;
  color: var(--accent-soft);
  font-size: 0.78rem;
  margin-top: 6px;
  min-height: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #100f0b;
  color: rgba(246, 243, 236, 0.7);
  padding-top: clamp(54px, 8vw, 80px);
}
.footer__top {
  display: grid;
  gap: 38px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(246, 243, 236, 0.12);
}
.footer__brand .f-word {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--paper);
}
.footer__brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(246, 243, 236, 0.55);
  max-width: 34ch;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
  margin-bottom: 16px;
}
.footer__col ul {
  display: grid;
  gap: 11px;
}
.footer__col a,
.footer__col li {
  font-size: 0.94rem;
  color: rgba(246, 243, 236, 0.72);
  transition: color 0.25s;
}
.footer__col a:hover {
  color: var(--accent-soft);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
  padding-block: 26px;
  font-size: 0.85rem;
  color: rgba(246, 243, 236, 0.5);
}
.powered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.powered a {
  color: var(--wowo);
  font-weight: 600;
}
.powered a:hover {
  text-decoration: underline;
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

/* ---------- Legal pages ---------- */
.legal {
  padding-top: clamp(130px, 20vw, 180px);
  padding-bottom: clamp(60px, 10vw, 110px);
}
.legal .container {
  max-width: 820px;
}
.legal h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 38px 0 14px;
}
.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal ul {
  list-style: disc;
  padding-left: 22px;
}
.legal .placeholder {
  background: var(--accent-tint);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.92em;
}
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--accent);
}
.legal__note {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

/* =========================================================
   Responsive — Mobile First Breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 18px;
  }
  .burger {
    display: none;
  }
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
  }
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .location__grid {
    grid-template-columns: 1fr 1.05fr;
  }
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  .map-card {
    min-height: 420px;
  }
}

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