/* ============================================================
   KAD Dahlewitz – Stylesheet
   Klassische Automobile Dahlewitz | Olaf Muhl
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --bg:          #0e0f14;
  --bg-2:        #13141b;
  --bg-card:     #181921;
  --bg-card-hov: #1e2030;
  --gold:        #c9a85c;
  --gold-light:  #e2c278;
  --gold-dim:    #7a6230;
  --text:        #e4e4dc;
  --text-muted:  #7a7a8c;
  --text-soft:   #b0b0be;
  --border:      #22243280;
  --border-solid:#222432;
  --border-gold: rgba(201,168,92,.25);
  --nav-h:       72px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 32px rgba(0,0,0,.6);
  --shadow-gold: 0 0 40px rgba(201,168,92,.14);
  --transition:  .3s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--text-soft); }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); font-size: .9rem; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.section { padding: 90px 0; }
.section--dark  { background: var(--bg); }
.section--dark2 { background: var(--bg-2); }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  margin-bottom: 1rem;
  color: var(--text);
}
.section-title span { color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  max-width: 580px;
  color: var(--text-soft);
  margin-bottom: 3rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-inline: auto; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.2rem 0 1.8rem;
}
.section-header--center .divider { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0f;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,92,.35);
}
.btn-outline {
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,92,.08);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-soft);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(9,9,12,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.nav__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(1.1);
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text);
}
.nav__logo-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: .8rem; }

/* Mobile hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(9,9,12,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 2rem;
  z-index: 998;
  flex-direction: column;
  gap: 1.2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg--fallback {
  background: linear-gradient(135deg, #0d0e15 0%, #111422 40%, #0e0f18 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.65) 50%,
    rgba(0,0,0,.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(201,168,92,.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero__title .line-gold { color: var(--gold); display: block; }
.hero__text {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(220,220,215,.75);
  margin-bottom: 2.4rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(180,180,175,.7);
  letter-spacing: .04em;
  margin-top: .25rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--border);
  gap: 0;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stats-bar__label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

/* ── About ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  gap: .5rem;
}
.about__image-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: #0a0a0f;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about__image-badge strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about__image-badge span {
  font-size: .75rem;
  letter-spacing: .06em;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.about__highlight:hover { border-color: var(--border-gold); }
.about__highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about__highlight h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .2rem;
}
.about__highlight p {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Services Grid ───────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.service-card__title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.service-card__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-card__list li {
  font-size: .85rem;
  color: var(--text-soft);
  padding-left: 1.1rem;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .75rem;
}
.service-card--featured {
  background: linear-gradient(135deg, #15141d, #1a1928);
  border-color: var(--border-gold);
}

/* ── Why Us ──────────────────────────────────────────────── */
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.whyus-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}
.whyus-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.whyus-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.whyus-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.whyus-item p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Opening Hours ───────────────────────────────────────── */
.hours__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours__header {
  background: linear-gradient(90deg, var(--gold), #a07828);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hours__header-icon { font-size: 1.8rem; }
.hours__header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #0a0a0f;
  font-weight: 600;
}
.hours__header p {
  font-size: .8rem;
  color: rgba(0,0,0,.6);
}
.hours__rows { padding: 1.5rem 2rem; }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.hours__row:last-child { border-bottom: none; }
.hours__day {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--text-soft);
  letter-spacing: .03em;
}
.hours__time {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--gold);
  font-weight: 500;
}
.hours__note {
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: rgba(201,168,92,.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact__info-item:hover { border-color: var(--border-gold); }
.contact__info-item a { color: var(--text-soft); transition: color var(--transition); }
.contact__info-item a:hover { color: var(--gold); }
.contact__info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact__info-label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
  font-weight: 500;
}
.contact__info-value {
  font-size: .95rem;
  color: var(--text-soft);
}

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  margin-bottom: 1.2rem;
}
.form__label {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-weight: 500;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,92,.12);
}
.form__textarea { min-height: 130px; resize: vertical; }
.form__select { cursor: pointer; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.form__check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form__check label {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form__check a { color: var(--gold); text-decoration: underline; }

/* ── Map ─────────────────────────────────────────────────── */
.map-section { padding: 0; }
.map-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  filter: grayscale(1) invert(0.92) contrast(0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Leistungen Detail Page ──────────────────────────────── */
.leistungen__hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.leistungen__grid {
  display: grid;
  gap: 1rem;
}
.leistung-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  align-items: start;
  transition: border-color var(--transition);
}
.leistung-block:hover { border-color: var(--border-gold); }
.leistung-block__icon {
  font-size: 2.2rem;
  padding-top: .2rem;
}
.leistung-block__title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.leistung-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .5rem;
  margin-top: .5rem;
}
.leistung-block__tag {
  padding: .3rem .9rem;
  background: rgba(201,168,92,.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--gold-light);
}
.leistung-block__note {
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Page Hero (sub-pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.page-hero--img {
  background: none;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.70) 60%,
    rgba(0,0,0,.85) 100%
  );
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.page-hero__breadcrumb a:hover { color: var(--gold); }

/* ── Repdoc Booking ──────────────────────────────────────── */
.booking-card {
  background: linear-gradient(135deg, #13121e 0%, #1a1829 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), var(--gold));
}
.booking-card__icon { font-size: 2.8rem; margin-bottom: 1rem; }
.booking-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.booking-card__text {
  font-size: .95rem;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}
.booking-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.booking-step {
  text-align: center;
  padding: 1.8rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.booking-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.booking-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.booking-step__icon { font-size: 1.8rem; margin-bottom: .75rem; }
.booking-step h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.booking-step p { font-size: .83rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .booking-steps { grid-template-columns: 1fr; }
}

/* ── Impressum / Datenschutz ─────────────────────────────── */
.legal__content {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 0;
}
.legal__content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2.5rem 0 .75rem;
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content p, .legal__content li {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.legal__content ul { margin-left: 1.5rem; list-style: disc; }
.legal__content a { color: var(--gold); text-decoration: underline; }
.legal__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(105deg, #13121e 0%, #0f0e1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #06060a;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.footer__brand-logo img {
  width: 48px; height: 48px;
  object-fit: contain;
  opacity: .85;
}
.footer__brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.footer__brand-sub {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__col-title {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.footer__contact-item span:first-child { flex-shrink: 0; }
.footer__contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a { color: var(--text-muted); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ── Animations / Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utility ─────────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .whyus__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about__grid     { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger           { display: flex; }

  .hero__stats           { gap: 1.5rem; }

  .stats-bar__grid       { grid-template-columns: 1fr; }
  .stats-bar__item       { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar__item:last-child { border-bottom: none; }

  .about__grid           { grid-template-columns: 1fr; gap: 2rem; }
  .about__image-badge    { right: 0; bottom: -1rem; }
  .about__highlights     { grid-template-columns: 1fr; }

  .services__grid        { grid-template-columns: 1fr; }
  .whyus__grid           { grid-template-columns: 1fr 1fr; }

  .contact__grid         { grid-template-columns: 1fr; }

  .form__row             { grid-template-columns: 1fr; }

  .footer__grid          { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom        { flex-direction: column; text-align: center; }

  .leistung-block        { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .whyus__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .slideshow__btn { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HERO LOGO DESKTOP
════════════════════════════════════════════════════════════ */
.hero__logo-visual {
  display: none;
}
@media (min-width: 900px) {
  .hero .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
  .hero__logo-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }
  .hero__logo-visual img {
    width: clamp(220px, 22vw, 340px);
    height: auto;
    opacity: .92;
    filter: drop-shadow(0 0 40px rgba(201,168,92,.25));
    animation: heroBadgePulse 4s ease-in-out infinite;
  }
  @keyframes heroBadgePulse {
    0%,100% { filter: drop-shadow(0 0 30px rgba(201,168,92,.2)); }
    50%      { filter: drop-shadow(0 0 55px rgba(201,168,92,.42)); }
  }
}

/* ── Footer Logo groß ─────────────────────────────────────── */
.footer__logo-large {
  display: block;
  width: 120px;
  height: auto;
  opacity: .75;
  margin-bottom: 1.5rem;
  transition: opacity var(--transition);
}
.footer__logo-large:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   SLIDESHOW
════════════════════════════════════════════════════════════ */
.slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-solid);
  box-shadow: var(--shadow);
  background: var(--bg-card);
  aspect-ratio: 16/9;
}
.slideshow__track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slideshow__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.slideshow__slide.active img { transform: scale(1.04); }
.slideshow__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .8rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.slideshow__dots {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 5;
}
.slideshow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slideshow__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.slideshow__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,15,20,.7);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}
.slideshow__btn:hover {
  background: rgba(201,168,92,.15);
  transform: translateY(-50%) scale(1.08);
}
.slideshow__btn--prev { left: .8rem; }
.slideshow__btn--next { right: .8rem; }

/* slideshow section layout */
.slideshow-section { padding-top: 0; }
.slideshow-section .section-label { padding-top: 60px; }

/* ══════════════════════════════════════════════════════════
   DSGVO COOKIE BANNER
════════════════════════════════════════════════════════════ */
.dsgvo-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(14,15,20,.97);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(20px);
  padding: 1.4rem 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.dsgvo-banner.visible { transform: translateY(0); }
.dsgvo-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.dsgvo-banner__icon { font-size: 2rem; flex-shrink: 0; }
.dsgvo-banner__text {
  flex: 1;
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.6;
  min-width: 240px;
}
.dsgvo-banner__text a { color: var(--gold); text-decoration: underline; }
.dsgvo-banner__text strong { color: var(--text); }
.dsgvo-banner__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-accept {
  background: var(--gold);
  color: #0a0a0f;
  padding: .6rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-accept:hover { background: var(--gold-light); }
.btn-reject {
  background: transparent;
  color: var(--text-muted);
  padding: .6rem 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: .05em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border-solid);
  transition: var(--transition);
}
.btn-reject:hover { border-color: var(--text-muted); color: var(--text); }
@media (max-width: 768px) {
  .dsgvo-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .dsgvo-banner__actions { width: 100%; }
  .btn-accept, .btn-reject { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   ADMIN PAGE
════════════════════════════════════════════════════════════ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem;
}
.admin-login__card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.admin-login__logo {
  width: 80px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 12px rgba(201,168,92,.3));
}
.admin-login__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.admin-login__sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; }
.admin-login__error {
  display: none;
  background: rgba(220,50,50,.12);
  border: 1px solid rgba(220,50,50,.3);
  color: #f87171;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem;
}

/* Admin Dashboard */
.admin-page {
  min-height: 100vh;
  background: var(--bg);
  display: none;
  flex-direction: column;
}
.admin-topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-solid);
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.admin-topbar__brand img { width: 32px; height: 32px; object-fit: contain; }
.admin-topbar__brand span { color: var(--gold); }
.admin-topbar__actions { display: flex; align-items: center; gap: 1rem; }
.admin-topbar__user { font-size: .82rem; color: var(--text-muted); }
.admin-topbar__logout {
  font-size: .82rem;
  color: var(--gold);
  cursor: pointer;
  border: 1px solid var(--border-gold);
  padding: .35rem .9rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  transition: var(--transition);
  background: none;
}
.admin-topbar__logout:hover { background: rgba(201,168,92,.1); }

.admin-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  flex: 1;
}
.admin-sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--border-solid);
  padding: 1.5rem 0;
}
.admin-sidebar__label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .5rem 1.5rem;
  margin-top: .5rem;
}
.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  color: var(--text-soft);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.admin-sidebar__link:hover { background: rgba(201,168,92,.05); color: var(--text); }
.admin-sidebar__link.active {
  background: rgba(201,168,92,.08);
  color: var(--gold);
  border-left-color: var(--gold);
}
.admin-sidebar__icon { font-size: 1.1rem; }

.admin-main { padding: 2.5rem; overflow-y: auto; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-panel__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.admin-panel__sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; }

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.admin-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.admin-stat__val {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.admin-stat__label { font-size: .8rem; color: var(--text-muted); margin-top: .3rem; }
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
}
.admin-badge--ok   { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }
.admin-badge--warn { background: rgba(234,179,8,.12);  color: #facc15; border: 1px solid rgba(234,179,8,.2); }
.admin-badge--err  { background: rgba(239,68,68,.12);  color: #f87171; border: 1px solid rgba(239,68,68,.2); }
.admin-save-msg {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: .85rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .admin-content { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats   { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   REPDOC IFRAME
════════════════════════════════════════════════════════════ */
.repdoc-frame-wrap {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.repdoc-frame-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.4rem;
  background: linear-gradient(90deg, rgba(201,168,92,.12), rgba(201,168,92,.04));
  border-bottom: 1px solid rgba(201,168,92,.18);
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .04em;
}

.repdoc-frame-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  background: rgba(201,168,92,.08);
  border: 1px solid rgba(201,168,92,.15);
  border-radius: 20px;
  padding: .2rem .65rem;
  letter-spacing: .03em;
}

.repdoc-frame-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  min-height: 380px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(201,168,92,.02) 20px,
    rgba(201,168,92,.02) 40px
  );
}

@media (max-width: 600px) {
  .repdoc-frame-badge { display: none; }
}

/* ══════════════════════════════════════════════════════════
   GOOGLE BOOKING CARD
════════════════════════════════════════════════════════════ */
.google-booking-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.google-booking-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, rgba(201,168,92,.10), rgba(201,168,92,.03));
  border-bottom: 1px solid rgba(201,168,92,.15);
}

.google-booking-card__logo {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.google-booking-card__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.google-booking-card__provider {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .04em;
}

.google-booking-card__badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--text-muted);
  background: rgba(201,168,92,.08);
  border: 1px solid rgba(201,168,92,.15);
  border-radius: 20px;
  padding: .2rem .75rem;
  flex-shrink: 0;
}

.google-booking-card__body {
  padding: 2rem 2.5rem;
  text-align: center;
}

.google-booking-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
}

.google-booking-card__text {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.google-booking-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.5rem;
  max-width: 420px;
  margin: 0 auto 2rem;
  text-align: left;
}

.google-booking-card__feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-soft);
}

.google-booking-card__feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.google-booking-card__btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(135deg, var(--gold), #b8933f);
  color: #0a0a0f;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 24px rgba(201,168,92,.25);
}

.google-booking-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,92,.35);
  opacity: .92;
}

.google-booking-card__hint {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .google-booking-card__body { padding: 1.5rem 1.25rem; }
  .google-booking-card__features { grid-template-columns: 1fr; gap: .5rem; }
  .google-booking-card__btn { width: 100%; justify-content: center; font-size: 1rem; }
  .google-booking-card__badge { display: none; }
}

/* ── Footer Credit ────────────────────────────────────── */
.footer__credit {
  text-align: center;
  padding: .75rem 1rem;
  font-size: .75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(201,168,92,.08);
  background: var(--bg);
}
.footer__credit a {
  color: var(--gold);
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s;
}
.footer__credit a:hover { opacity: 1; }
