/* ============================================================
   ARISTO MOTORS — Stylesheet
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --card: #1A1A1A;
  --elevated: #222222;
  --fg: #FFFFFF;
  --fg-dim: #A0A0A0;
  --fg-dimmer: #666666;
  --border: #2A2A2A;
  --border-subtle: #1F1F1F;

  --gold: #B8860B;
  --gold-light: #D5A52D;
  --gold-dark: #7D5C08;
  --whatsapp: #25D366;

  --font-sans: "Inter Tight", "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --t-fast: 160ms cubic-bezier(.4,0,.2,1);
  --t-med: 280ms cubic-bezier(.4,0,.2,1);
  --t-slow: 520ms cubic-bezier(.4,0,.2,1);

  --topbar-h: 36px;
  --nav-h: 128px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow--dim { color: var(--fg-dimmer); }

.gold { color: var(--gold); }
.dim { color: var(--fg-dim); }
.mono { font-family: var(--font-mono); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.4,0,.2,1), transform 700ms cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Top bar ---------- */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--border-subtle);
  height: var(--topbar-h);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__right { color: var(--fg); }
.topbar__sep {
  width: 4px; height: 4px;
  background: var(--fg-dimmer);
  border-radius: 50%;
}
.topbar__tag { color: var(--gold); }

@media (max-width: 720px) {
  .topbar { font-size: 0.65rem; }
  .topbar__left .topbar__hours { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-logo {
  height: 88px;
  width: auto;
  transition: transform var(--t-fast);
}
.brand:hover .brand-logo { transform: scale(1.02); }
.brand__fallback {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  color: var(--fg);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 14px 18px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--fg); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: var(--fg-dim);
  padding: 14px 18px;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.nav__dropdown-toggle::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  transition: transform var(--t-fast);
}
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown:focus-within .nav__dropdown-toggle { color: var(--fg); }
.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown:focus-within .nav__dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 180ms;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
/* Invisible hover-bridge between trigger and menu so the mouse can move into the dropdown without closing it */
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto 0;
  height: 10px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav__dropdown-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--fg);
  transition: background var(--t-fast);
}
.nav__dropdown-item:hover { background: var(--elevated); }
.nav__dropdown-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.nav__dropdown-text {
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.nav__cta svg { width: 18px; height: 18px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  color: var(--fg);
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--t-fast), top var(--t-fast);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 84px;
  }
  .brand-logo { height: 56px; }
  .footer-logo { height: 72px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 380ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu__close {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--fg);
  font-size: 1.4rem;
  line-height: 1;
}
.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu__sub {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 16px;
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__sub-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--fg-dim);
}
.mobile-menu__sub-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.mobile-menu__cta {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.is-locked { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--gold);
  color: var(--bg);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--wa {
  background: var(--whatsapp);
  color: #052e16;
}
.btn--wa:hover { background: #1fb858; transform: translateY(-1px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Floating actions ---------- */
.fab {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 240ms ease, transform 240ms ease;
}
body.has-cookie-banner .fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.fab__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fab__btn:hover { transform: translateY(-2px) scale(1.05); }
.fab__btn--wa { background: var(--whatsapp); color: #fff; }
.fab__btn--phone { background: var(--gold); color: var(--bg); }
.fab__btn svg { width: 24px; height: 24px; }

/* ---------- Hero (Home) ---------- */
.hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(48px, 6vw, 96px);
  border-bottom: 1px solid var(--border-subtle);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; }
}
.hero__copy { max-width: 720px; }
.hero__h1 {
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  letter-spacing: -0.035em;
  margin: 18px 0 26px;
  line-height: 0.98;
}
.hero__h1 span { color: var(--gold); display: block; }
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
}
.hero__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--gold);
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 520px;
  margin-inline: auto;
}
.hero__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.05);
  transition: transform var(--t-slow), filter var(--t-med);
}
.hero__art:hover img { transform: scale(1.02); }

/* Index-Hero: enger Porträt-Crop auf Christinas Gesicht */
.hero__art--close img {
  object-position: 75% center;
  transform: scale(1.6);
  transform-origin: center 25%;
}
.hero__art--close:hover img { transform: scale(1.65); }

/* Service-page heroes: car photos in B&W → color on hover */
.hero--service .hero__art img {
  filter: grayscale(1) contrast(1.05);
}
.hero--service .hero__art:hover img {
  filter: grayscale(0) saturate(0.95) contrast(1.05);
}
.hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.hero__art-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  z-index: 2;
}
.hero__art-caption span { color: var(--gold); }

/* ---------- Hero (Service) ---------- */
.hero--service {
  padding: clamp(56px, 7vw, 100px) 0;
}
.hero--service .hero__h1 { font-size: clamp(2.2rem, 6.4vw, 5rem); }

/* ---------- Section base ---------- */
.section {
  padding: clamp(64px, 8vw, 128px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.section--surface { background: var(--surface); }
.section__head {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-top: 14px;
  line-height: 1.02;
}
.section__title span { color: var(--gold); }
.section__lead {
  margin-top: 18px;
  color: var(--fg-dim);
  font-size: 1.05rem;
  max-width: 620px;
}

/* ---------- Services grid (home) ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}
@media (min-width: 720px)  { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), border-color var(--t-med);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform var(--t-slow), filter var(--t-med);
}
.service-card:hover .service-card__media img {
  transform: scale(1.05);
  filter: grayscale(0) saturate(0.95) contrast(1.05);
}
.service-card__num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.service-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card__title {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}
.cross .service-card__title { font-size: 1.15rem; }
.service-card__text {
  color: var(--fg-dim);
  font-size: 0.95rem;
}
.service-card__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}
.service-card:hover .service-card__link { gap: 14px; }
.service-card__link::after { content: "→"; }

/* ---------- Steps (So arbeiten wir) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  counter-reset: step;
}
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.step__title {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step__text { color: var(--fg-dim); font-size: 0.98rem; }

/* ---------- Team (Wer wir sind) ---------- */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 720px) { .team { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.team-card__body { padding: 28px 28px 32px; }
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card__name {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  margin: 10px 0 14px;
}
.team-card__text { color: var(--fg-dim); margin-bottom: 22px; }
.team-card__quote {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  font-style: italic;
  color: var(--fg);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* ---------- Gallery (magazine grid) ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.6vw, 18px);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(520px, 60vw, 760px);
  }
  .gallery__item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
@media (min-width: 720px) { .gallery__item { aspect-ratio: auto; height: 100%; } }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform var(--t-slow), filter var(--t-med);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0) saturate(0.95) contrast(1.05);
}

/* Gallery slots with rotating images */
.gallery__item--rotate { position: relative; }
.gallery__item--rotate > img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out, transform var(--t-slow), filter var(--t-med);
}
.gallery__item--rotate > img.is-active {
  opacity: 1;
  z-index: 2;
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 26px 0;
  color: var(--fg);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 12px; }
.faq__item[aria-expanded="true"] .faq__icon { border-color: var(--gold); background: var(--gold); }
.faq__item[aria-expanded="true"] .faq__icon::before,
.faq__item[aria-expanded="true"] .faq__icon::after { background: var(--bg); }
.faq__item[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq__a-inner {
  padding: 0 0 28px;
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.6;
}

/* ---------- Honesty box ---------- */
.honesty {
  margin-top: clamp(36px, 5vw, 48px);
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}
.honesty::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(ellipse at top left, rgba(212,175,55,0.07), transparent 60%);
  pointer-events: none;
}
.honesty__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}
.honesty__text {
  color: var(--fg);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  max-width: 880px;
}

/* ---------- Service-page "Was wir machen" grid ---------- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 24px);
}
@media (min-width: 720px) { .what-grid { grid-template-columns: repeat(2, 1fr); } }

.what-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.what-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.what-item__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.what-item__title {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.what-item__text { color: var(--fg-dim); font-size: 0.98rem; }

/* ---------- Cross-sell cards (service pages) ---------- */
.cross {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}
@media (min-width: 720px)  { .cross { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cross { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.05fr; } }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
}
.contact-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--fg);
  transition: padding-left var(--t-fast);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row:hover { padding-left: 4px; }
.contact-row__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--elevated);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  margin-bottom: 4px;
}
.contact-row__value { font-weight: 600; font-size: 1rem; }
.contact-row__arrow {
  color: var(--fg-dimmer);
  transition: color var(--t-fast), transform var(--t-fast);
}
.contact-row:hover .contact-row__arrow { color: var(--gold); transform: translateX(4px); }

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  padding: clamp(64px, 8vw, 96px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 720px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-logo {
  height: 104px;
  width: auto;
  margin-bottom: 24px;
}
.footer__tagline {
  color: var(--fg-dim);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.5;
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  color: var(--fg-dim);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.footer__list a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--fg-dimmer);
  text-transform: uppercase;
}

/* ---------- Section with background image ---------- */
.section--bg {
  position: relative;
  isolation: isolate;
  background: var(--surface);
  overflow: hidden;
}
.section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.8) contrast(1.05) brightness(0.4);
}
.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(20,20,20,0.75) 50%, rgba(10,10,10,0.92) 100%);
}

/* ---------- Editorial full-width band ---------- */
.editorial {
  position: relative;
  padding: clamp(96px, 14vw, 200px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  isolation: isolate;
}
.editorial__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.editorial__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.2) saturate(0.85) contrast(1.05) brightness(0.7);
}
.editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 50%, rgba(10,10,10,0.55) 100%);
}
.editorial__inner {
  max-width: 880px;
}
.editorial__inner--center { margin-inline: auto; text-align: center; }
.editorial__quote {
  font-size: clamp(2.1rem, 5.5vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 18px 0 24px;
  font-weight: 700;
}
.editorial__quote span { color: var(--gold); display: block; }
.editorial__by {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------- Detail band (thin atmospheric strip) ---------- */
.detail-band {
  position: relative;
  height: clamp(220px, 28vw, 360px);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.detail-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.85) contrast(1.05) brightness(0.85);
}
.detail-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.15) 50%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.detail-band__label {
  position: absolute;
  left: var(--gutter);
  bottom: 22px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.detail-band__label span { color: var(--gold); }

/* ---------- Personal section (portrait + quote + CTA) ---------- */
.personal {
  padding: clamp(72px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg);
}
.personal__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 1024px) {
  .personal__inner { grid-template-columns: 0.9fr 1.1fr; }
}
.personal__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}
.personal__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.personal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 60%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.personal__media-caption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  z-index: 2;
}
.personal__media-caption span { color: var(--gold); }
.personal__copy { max-width: 620px; }
.personal__quote {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 24px;
  font-weight: 700;
}
.personal__quote span { color: var(--gold); display: block; }
.personal__by {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.personal__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Legal pages (Impressum, Datenschutz) ---------- */
.legal {
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 11vw, 160px);
  border-bottom: 1px solid var(--border-subtle);
}
.legal__inner {
  max-width: 760px;
}
.legal__title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  letter-spacing: -0.035em;
  margin: 18px 0 12px;
  line-height: 1.0;
}
.legal__sub,
.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  margin-bottom: 36px;
}
.legal__lead {
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.65;
  margin: 22px 0 8px;
  max-width: 680px;
}
.legal h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 50px 0 10px;
  color: var(--fg);
  display: flex;
  align-items: baseline;
}
.legal h3 {
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin: 30px 0 6px;
  color: var(--fg);
}
.legal p {
  color: var(--fg-dim);
  margin: 12px 0;
  font-size: 1rem;
  line-height: 1.65;
}
.legal ul {
  margin: 14px 0 16px;
  padding-left: 22px;
  color: var(--fg-dim);
  list-style: disc;
}
.legal li {
  margin: 6px 0;
  line-height: 1.6;
}
.legal strong {
  color: var(--fg);
  font-weight: 600;
}
.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 134, 11, 0.5);
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.legal a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.legal__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 18px 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
}
.legal__num {
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.55em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
  transform: translateY(110%);
  opacity: 0;
  transition: transform 420ms cubic-bezier(.4,0,.2,1), opacity 420ms cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -12px 36px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 380px;
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(184, 134, 11, 0.5);
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.cookie-banner__text a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.cookie-banner__btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.cookie-banner__btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3);
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner__text {
    font-size: 0.86rem;
  }
  .cookie-banner__btn {
    width: 100%;
    padding: 15px;
  }
}

/* ---------- Small helpers ---------- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 18px;
  display: block;
}
.text-balance { text-wrap: balance; }
