/* ============================================================
   GERARD-X — Fahrzeugpflege & Innenraumreinigung
   Eigenständiges Stylesheet, keine externen Ressourcen (DSGVO-freundlich)
   ============================================================ */

:root {
  --bg:        #0c0d10;
  --bg-2:      #101217;
  --surface:   #171a20;
  --surface-2: #1e2129;
  --line:      rgba(255, 255, 255, .09);
  --line-2:    rgba(255, 255, 255, .16);
  --text:      #eef0f3;
  --muted:     #9aa1ab;
  --accent:    #e6a94b;
  --accent-2:  #f4cd86;
  --accent-ink:#241a08;
  --ok:        #4ccB8f;
  --err:       #ff6b6b;
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1160px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, .7);
  color-scheme: dark;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.01em;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: .8;
}

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 68px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  margin: 16px 0 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--alt { background: var(--bg-2); }

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 101;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  transition: transform .1s linear;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  text-align: center;
}
/* Glanz-Sweep über den Button */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-18deg);
  z-index: -1;
  opacity: 0;
}
.btn:hover::after { animation: sheen .8s var(--ease); }
@keyframes sheen {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 30px -12px rgba(230, 169, 75, .6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(230, 169, 75, .8); }
.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line-2);
  color: var(--text);
}
.btn--ghost::after { background: linear-gradient(100deg, transparent, rgba(230, 169, 75, .25), transparent); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--accent); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { --pad-y: 17px; padding-left: 34px; padding-right: 34px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10, 11, 14, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  transition: height .3s var(--ease);
}
.site-header.is-stuck .wrap { height: 58px; }
.brand {
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: font-size .3s var(--ease);
}
.site-header.is-stuck .brand { font-size: .98rem; }
.brand .dot {
  color: var(--accent);
  display: inline-block;
  transition: transform .3s var(--ease);
}
.brand:hover .dot { transform: rotate(90deg) scale(1.3); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: .93rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav .btn { color: var(--accent-ink); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px; height: 2px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle.is-open span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 14, .96) 0%, rgba(10, 11, 14, .8) 38%, rgba(10, 11, 14, .35) 70%, rgba(10, 11, 14, .55) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 45%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 660px; }

/* Gestaffelter Auftritt der Hero-Inhalte */
.hero__inner > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroUp .9s var(--ease) forwards;
}
.hero__inner > :nth-child(1) { animation-delay: .15s; }
.hero__inner > :nth-child(2) { animation-delay: .28s; }
.hero__inner > :nth-child(3) { animation-delay: .41s; }
.hero__inner > :nth-child(4) { animation-delay: .54s; }
.hero__inner > :nth-child(5) { animation-delay: .67s; }
@keyframes heroUp {
  to { opacity: 1; transform: none; }
}

/* Scroll-Hinweis */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroUp .9s var(--ease) .9s forwards;
}
.hero__cue .track {
  width: 1px;
  height: 46px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.hero__cue .track::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: linear-gradient(var(--accent), transparent);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(0); }
  100% { transform: translateY(300%); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.2rem);
  margin: 22px 0 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: #cfd3da;
  max-width: 33em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
.hero__meta b { color: var(--text); font-weight: 700; }

/* ---------- Laufband ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 0 17px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 169, 75, .4);
  box-shadow: 0 24px 50px -26px rgba(230, 169, 75, .35);
}
.pillar .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(230, 169, 75, .12);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.pillar:hover .ico { transform: scale(1.1) rotate(-6deg); background: rgba(230, 169, 75, .2); }
.pillar h3 { font-size: 1.16rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: .97rem; }

/* ---------- Preise ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* Cursor-Spotlight */
.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(230, 169, 75, .16), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 169, 75, .45);
  box-shadow: 0 30px 60px -30px rgba(230, 169, 75, .4);
}
.plan:hover::after { opacity: 1; }
.plan > * { position: relative; z-index: 1; }
.plan__price.is-counted { animation: pricePop .5s var(--ease); }
@keyframes pricePop {
  0% { transform: scale(.9); }
  55% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.plan--featured {
  border-color: rgba(230, 169, 75, .5);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(230, 169, 75, .08), transparent 55%), var(--surface);
}
.plan__tag {
  position: absolute;
  top: -13px; left: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan__name { font-size: .82rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.plan__price { font-size: 2.7rem; font-weight: 800; letter-spacing: -.02em; }
.plan__price span { font-size: .95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan__desc { color: var(--muted); font-size: .95rem; margin-top: -8px; }
.plan__time {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; color: var(--muted);
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
}
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: .93rem; }
.plan ul li { position: relative; padding-left: 26px; color: #d3d7de; }
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 15px; height: 15px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.plan ul li.muted { color: var(--muted); }
.plan ul li.muted::before { opacity: .45; }
.plan .btn { margin-top: auto; }

.plan-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

/* ---------- Add-ons ---------- */
.addons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.addon:hover {
  border-color: rgba(230, 169, 75, .4);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -22px rgba(230, 169, 75, .35);
}
.addon .name { font-weight: 600; font-size: .96rem; transition: transform .25s var(--ease); }
.addon:hover .name { transform: translateX(3px); }
.addon .price { color: var(--accent); font-weight: 800; font-size: 1.1rem; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 1.9rem;
  font-weight: 800;
  color: rgba(230, 169, 75, .28);
  letter-spacing: -.03em;
  transition: color .35s var(--ease), transform .35s var(--ease);
  display: block;
}
.step:hover { transform: translateY(-5px); border-color: rgba(230, 169, 75, .35); }
.step:hover::before { color: var(--accent); transform: translateX(4px); }
.step h3 { font-size: 1.08rem; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: .93rem; }
/* Verbindungslinie zwischen den Schritten */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px; right: -11px;
  width: 22px; height: 1px;
  background: var(--line-2);
}

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery figure {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(6) { grid-column: span 2; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
  filter: saturate(.92);
}
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 7, 9, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox button {
  position: absolute;
  top: 22px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 4px; right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(230, 169, 75, .16);
  font-family: Georgia, "Times New Roman", serif;
}
.quote:hover { transform: translateY(-5px); border-color: rgba(230, 169, 75, .35); }
.quote .stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.quote.is-in .stars { animation: starsIn .5s var(--ease) both; }
@keyframes starsIn {
  from { opacity: 0; letter-spacing: 10px; }
  to   { opacity: 1; letter-spacing: 3px; }
}
.quote p { font-size: 1rem; color: #d8dbe1; }
.quote .who { margin-top: 16px; font-size: .88rem; color: var(--muted); font-weight: 600; }

/* ---------- Booking ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.booking-aside h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin: 16px 0 16px; }
.booking-aside p { color: var(--muted); }
.booking-aside ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.booking-aside li { display: flex; gap: 12px; font-size: .96rem; }
.booking-aside li svg { flex: none; color: var(--accent); margin-top: 3px; }
.booking-contact {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--muted);
}
.booking-contact a { color: var(--text); font-weight: 600; }

form.booking {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.row2 { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 169, 75, .16);
}
.field textarea { resize: vertical; min-height: 96px; }
#package.just-set { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230, 169, 75, .18); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa1ab'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.consent a { color: var(--text); text-decoration: underline; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .92rem;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(76, 203, 143, .12); border: 1px solid rgba(76, 203, 143, .4); color: #9ff0c9; }
.form-status.err { background: rgba(255, 107, 107, .1); border: 1px solid rgba(255, 107, 107, .4); color: #ffc2c2; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.06rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin-top: 12px; font-size: .98rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 62px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: #c9cdd4; font-size: .95rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* ---------- Legal pages ---------- */
.legal { padding: 130px 0 90px; }
.legal .wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 12px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal p, .legal li { color: #c9cdd4; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }
.legal .back { display: inline-block; margin-bottom: 30px; color: var(--muted); font-size: .9rem; }
.legal .placeholder {
  background: rgba(230, 169, 75, .1);
  border: 1px dashed rgba(230, 169, 75, .5);
  border-radius: 8px;
  padding: 2px 6px;
  color: var(--accent-2);
  font-size: .95em;
}

/* ---------- Reveal beim Scrollen ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--rd, 0s);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* animierte Linie in den Abschnitts-Überschriften */
.section-head .eyebrow::before { transition: width .6s var(--ease) .15s; }
.section-head[data-reveal] .eyebrow::before { width: 0; }
.section-head[data-reveal].is-in .eyebrow::before { width: 26px; }

/* ---------- Zurück-nach-oben ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(20, 22, 27, .9);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }

/* ---------- FAQ: sanftes Öffnen ---------- */
.faq details[open] > *:not(summary) { animation: faqReveal .38s var(--ease); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq summary { transition: color .2s var(--ease); }
.faq summary:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .pillars, .plans, .quotes { grid-template-columns: 1fr; }
  .addons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .booking-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery figure:nth-child(1) { grid-column: span 2; }
  .gallery figure:nth-child(6) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .site-header.is-stuck { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header:has(.nav.is-open) { background: var(--bg); }
  .nav {
    position: fixed;
    inset: 74px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 14px 24px 24px;
    overflow-y: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-toggle { z-index: 2; }
  .nav a { padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; padding: 14px; }
  .nav-toggle { display: block; }
  form.booking { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 110px; }
  .hero__cue { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee__track { animation-duration: 22s; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__inner > *, .hero__cue { opacity: 1 !important; animation: none !important; }
  .hero__media img { animation: none !important; transform: scale(1.04); }
  .marquee__track { animation: none !important; }
  .hero__cue .track::after { animation: none !important; }
  .scroll-progress { display: none; }
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
