/* ==========================================================================
   TOKUR BAU — Theme 2.0
   Anthrazit + Gold · modern, seriös, mobil-first
   ========================================================================== */

:root {
  --bg: #14161a;
  --bg-2: #1a1d22;
  --bg-3: #22262c;
  --panel: #1d2026;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eceae4;
  --muted: #a3a7ad;
  --gold: #c9a227;
  --gold-soft: #e0c256;
  --gold-dim: rgba(201, 162, 39, 0.14);
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

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

::selection { background: var(--gold); color: #14161a; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-2); }

/* --------------------------------------------------------------------------
   Typographic helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 22px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 32px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--gold {
  background: var(--gold);
  color: #14161a;
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.28);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(15, 16, 19, 0.55), transparent);
}

.header.is-scrolled {
  background: rgba(18, 20, 24, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand__mark { width: 42px; height: 42px; color: var(--gold); }

/* Originalgetreues Logo (SVG-Nachzeichnung von png_logo.png) */
.brand__logo {
  height: 66px;
  width: auto;
  display: block;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.04); }
.footer .brand__logo { height: 118px; }

.brand__name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
}
.brand__name span { color: var(--gold); }

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 34px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__item.is-active > .nav__link { color: var(--gold); }

.nav__link:hover::after,
.nav__item.is-active > .nav__link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link .caret { width: 11px; height: 11px; transition: transform 0.3s; }

/* Dropdown */
.nav__item { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  translate: -50% 0;
  min-width: 250px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item:hover .caret { transform: rotate(180deg); }

.dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s;
  border-left: 2px solid transparent;
}

.dropdown a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border-left-color: var(--gold);
  padding-left: 29px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 11px 20px;
  transition: all 0.3s;
  white-space: nowrap;
}
.header__phone svg { width: 15px; height: 15px; color: var(--gold); }
.header__phone:hover { border-color: var(--gold); color: var(--gold); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 8px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; scale: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (Startseite)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  filter: saturate(0.72) contrast(1.05) brightness(0.9);
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}

@keyframes kenburns {
  from { scale: 1; }
  to { scale: 1.08; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(15, 16, 19, 0.95) 8%, rgba(15, 16, 19, 0.72) 45%, rgba(15, 16, 19, 0.35) 100%),
    linear-gradient(rgba(15, 16, 19, 0.25), rgba(20, 22, 26, 0.9) 92%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  max-width: 780px;
}

.hero__title {
  font-size: clamp(38px, 6.2vw, 68px);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__text {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(236, 234, 228, 0.82);
  max-width: 560px;
  margin-bottom: 42px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Load-in animation */
.hero [data-hero-anim] {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s var(--ease) forwards;
}
.hero [data-hero-anim="1"] { animation-delay: 0.15s; }
.hero [data-hero-anim="2"] { animation-delay: 0.32s; }
.hero [data-hero-anim="3"] { animation-delay: 0.5s; }
.hero [data-hero-anim="4"] { animation-delay: 0.68s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Slide dots */
.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 46px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 34px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.hero__dot.is-active { background: var(--gold); }

/* Scroll hint */
.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  width: 1.5px;
  height: 52px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.35; transform: scaleY(0.72); }
}

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__item::after {
  content: "";
  width: 7px;
  height: 7px;
  rotate: 45deg;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Über uns
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-media {
  position: relative;
  padding: 0 26px 26px 0;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 26px 0 0 26px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.55;
}

.about-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.8) contrast(1.05);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}

.about-media__badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  background: var(--gold);
  color: #14161a;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 20px 26px;
  border-radius: var(--radius) 0 var(--radius) 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.about-media__badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.75;
}

.about-copy p { color: var(--muted); margin-bottom: 18px; }

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.value {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 19px;
  transition: all 0.35s var(--ease);
}

.value:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
  background: var(--panel);
}

.value__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border-radius: 8px;
  color: var(--gold);
}
.value__icon svg { width: 22px; height: 22px; }

.value h4 {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Prinzipien (Kosten / Termin / Qualität)
   -------------------------------------------------------------------------- */

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.principle {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 34px 38px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.principle:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.35); box-shadow: var(--shadow); }
.principle:hover::before { transform: scaleX(1); }

.principle__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: color 0.4s;
}
.principle:hover .principle__num { color: var(--gold-dim); }

.principle h3 {
  font-size: 21px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.principle h3::before {
  content: "";
  width: 9px;
  height: 9px;
  rotate: 45deg;
  background: var(--gold);
  flex-shrink: 0;
}

.principle p { color: var(--muted); font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Leistungen — cards
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  border: 1px solid var(--line);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.05) brightness(0.85);
  transition: scale 0.7s var(--ease), filter 0.5s;
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 19, 23, 0.06) 30%, rgba(15, 16, 19, 0.93) 82%);
  z-index: 0;
  transition: background 0.4s;
}

.service-card:hover img { scale: 1.07; filter: saturate(0.85) contrast(1.05) brightness(0.95); }

.service-card__body {
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  padding: 26px 26px 24px;
}

.service-card__line {
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
  transition: width 0.45s var(--ease);
}
.service-card:hover .service-card__line { width: 62px; }

.service-card h3 { font-size: 21px; margin-bottom: 8px; }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.service-card__cta svg { width: 15px; height: 15px; }
.service-card:hover .service-card__cta { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  background:
    linear-gradient(rgba(20, 22, 26, 0.88), rgba(20, 22, 26, 0.88)),
    url("../img/hero-1.jpeg") center/cover fixed;
  border-block: 1px solid var(--line);
  padding: 90px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 18px; }
.cta-band p { color: var(--muted); max-width: 620px; margin: 0 auto 36px; }

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  margin-top: 56px;
  align-items: start;
}

.contact-cards { display: grid; gap: 14px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all 0.35s var(--ease);
}

.contact-card:hover { border-color: rgba(201, 162, 39, 0.4); transform: translateX(6px); }

.contact-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border-radius: 8px;
  color: var(--gold);
}
.contact-card__icon svg { width: 21px; height: 21px; }

.contact-card h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.contact-card p, .contact-card a { font-size: 16.5px; font-weight: 600; line-height: 1.5; }
.contact-card a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: #101215;
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 60px;
}

.footer__brand p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
  max-width: 320px;
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer h4::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

.footer ul { list-style: none; display: grid; gap: 11px; }

.footer ul a, .footer ul li {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.25s, padding-left 0.25s;
}
.footer ul a:hover { color: var(--gold); padding-left: 5px; }

.footer address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  display: grid;
  gap: 10px;
}
.footer address a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
}

.footer__legal { display: flex; gap: 26px; }
.footer__legal a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Unterseiten — page hero
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: 210px 0 110px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.6) brightness(0.8);
  scale: 1.05;
  animation: pageHeroZoom 8s var(--ease) forwards;
}

@keyframes pageHeroZoom { to { scale: 1; } }

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(15, 16, 19, 0.95) 10%, rgba(15, 16, 19, 0.6) 100%),
    linear-gradient(rgba(15, 16, 19, 0.3), rgba(20, 22, 26, 1) 96%);
}

.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--text); }

/* Titel im gleichen Stil wie der Breadcrumb: Versalien + Sperrung */
.page-hero h1 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Unterseiten — service layout
   -------------------------------------------------------------------------- */

.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}

.service-content .service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 42px;
  position: relative;
}

.service-content .service-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.service-content .service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(15, 16, 19, 0.5));
  pointer-events: none;
}

.service-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 42px 0 18px;
}
.service-content h2:first-of-type { margin-top: 0; }

.service-content p { color: var(--muted); margin-bottom: 18px; }

.service-content .lead {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 26px 0 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 6px;
  background:
    var(--gold-dim)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23c9a227" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>')
    center / 12px no-repeat;
}

.check-list li span { color: var(--muted); font-weight: 400; }

/* Sidebar */
.service-aside { position: sticky; top: 110px; display: grid; gap: 22px; }

.aside-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.aside-box h3 {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aside-box h3::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.aside-nav { list-style: none; display: grid; }

.aside-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 2px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.aside-nav li:last-child a { border-bottom: none; }

.aside-nav a::after {
  content: "→";
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}

.aside-nav a:hover, .aside-nav a.is-current { color: var(--text); padding-left: 8px; }
.aside-nav a:hover::after { opacity: 1; transform: translateX(0); }
.aside-nav a.is-current { color: var(--gold); }

.aside-box--cta {
  background: linear-gradient(150deg, var(--bg-3), var(--panel));
  border-color: rgba(201, 162, 39, 0.35);
  text-align: left;
}
.aside-box--cta p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.aside-box--cta .btn { width: 100%; justify-content: center; }
.aside-box--cta .aside-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.aside-box--cta .aside-tel:hover { color: var(--gold); }
.aside-box--cta .aside-tel svg { width: 15px; height: 15px; color: var(--gold); }

/* --------------------------------------------------------------------------
   Legal pages (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.legal { max-width: 800px; }

.legal h2 {
  font-size: 22px;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal h2 .num { color: var(--gold); font-size: 15px; letter-spacing: 0.1em; }

.legal p, .legal li { color: var(--muted); margin-bottom: 14px; }
.legal ul { padding-left: 2px; list-style: none; display: grid; gap: 8px; margin-bottom: 18px; }
.legal ul li {
  display: flex;
  gap: 12px;
  margin: 0;
}
.legal ul li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  rotate: 45deg;
  background: var(--gold);
}
.legal strong { color: var(--text); }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 10px;
}
.legal-card p { margin-bottom: 4px; }
.legal-card strong { font-family: var(--font-head); font-size: 17px; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

/* Nur aktiv, wenn JS läuft (html.js) — ohne JS bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal--left { transform: translateX(-36px); }
.js .reveal--right { transform: translateX(36px); }
.js .reveal--left.is-visible, .js .reveal--right.is-visible { transform: none; }

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #14161a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  translate: 0 14px;
  transition: all 0.35s var(--ease);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.to-top.is-visible { opacity: 1; visibility: visible; translate: 0 0; }
.to-top:hover { background: var(--gold-soft); }
.to-top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .header__inner { height: 74px; }
  html { scroll-padding-top: 80px; }

  .header__phone { display: none; }
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
    background: rgba(16, 18, 21, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 30px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
  }

  .nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }

  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__item:last-child { border-bottom: none; }

  .nav__link {
    padding: 17px 0;
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }
  .nav__link::after { display: none; }

  .nav.is-open .nav__item {
    animation: navItemIn 0.5s var(--ease) both;
  }
  .nav.is-open .nav__item:nth-child(1) { animation-delay: 0.05s; }
  .nav.is-open .nav__item:nth-child(2) { animation-delay: 0.1s; }
  .nav.is-open .nav__item:nth-child(3) { animation-delay: 0.15s; }
  .nav.is-open .nav__item:nth-child(4) { animation-delay: 0.2s; }

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

  .dropdown {
    position: static;
    translate: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    background: transparent;
    padding: 0 0 12px 6px;
    min-width: 0;
  }

  .nav__item.is-expanded .dropdown { display: block; }
  .nav__item.is-expanded .caret { transform: rotate(180deg); }

  .dropdown a { padding: 10px 16px; }
  .dropdown a:hover { padding-left: 16px; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .brand__logo { height: 54px; }
  .footer .brand__logo { height: 96px; }
  .section { padding: 78px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-card { aspect-ratio: 4 / 3.6; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-band { background-attachment: scroll; }
  .footer__bottom { justify-content: center; text-align: center; }
  .brand__tag { display: none; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero [data-hero-anim] { opacity: 1; transform: none; }
}
