/* ============================================================
   GD MITARBEITERFOTO – Global Stylesheet
   Namespace: gd-
   Einbinden: Pro Theme → Theme Options → Custom CSS
   oder: wp_enqueue_style() in functions.php
   ============================================================ */

/* Fonts: Adobe Fonts – IvyOra Display, IvyOra Text, Sofia Pro */
/* Eingebunden via <link> in gd-clean.php */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --gd-dark:         #1a1a18;
  --gd-warm:         #f5f0e8;
  --gd-white:        #ffffff;
  --gd-accent:       #b8965a;
  --gd-accent-light: #d4b278;
  --gd-text:         #2d2d2b;
  --gd-muted:        #6b6b66;
  --gd-border:       #e0d8cc;

  --gd-font-display: 'sofia-pro', system-ui, sans-serif;
  --gd-font-body:    'sofia-pro', system-ui, sans-serif;

  --gd-radius:       0px;   /* bewusst eckig – professionell */
  --gd-max-width:    960px;
  --gd-section-pad:  72px 0;

  /* ── GRADIENTS ─────────────────────────────────────────────── */
  --gd-gradient-01: linear-gradient(135deg, #b8965a 0%, #d4b278 100%);
  --gd-gradient-02: linear-gradient(135deg, #1a1a18 0%, #b8965a 100%);
  --gd-gradient-03: linear-gradient(135deg, #b8965a 0%, #f5f0e8 100%);
  --gd-gradient-04: linear-gradient(135deg, #8a6e3e 0%, #d4b278 50%, #b8965a 100%);
  --gd-gradient-05: linear-gradient(160deg, #c4a265 0%, #8a6e3e 40%, #d4b278 100%);
}

/* ── BASE ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.gd-page {
  font-family: var(--gd-font-body);
  font-weight: 400;
  color: var(--gd-text);
  line-height: 1.7;
  background: linear-gradient(160deg, #ffffff 0%, #fdf9f4 40%, #f5f0e8 100%);
  background-attachment: fixed;
}

.gd-page *:not(strong):not(b):not(.gd-btn--primary):not(.gd-btn--outline):not(.gd-h1):not(.gd-h2):not(h1):not(h2) {
  font-weight: 400 !important;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.gd-container {
  max-width: var(--gd-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.gd-section {
  padding: var(--gd-section-pad);
}

.gd-section--white {
  background: var(--gd-white);
}

.gd-section--dark {
  background: var(--gd-dark);
  color: var(--gd-warm);
}

.gd-section--gradient,
.gd-section--gradient-01 {
  background: var(--gd-gradient-01);
  color: var(--gd-dark);
}

.gd-section--gradient-02 {
  background: var(--gd-gradient-02);
  color: var(--gd-warm);
}

.gd-section--gradient-03 {
  background: var(--gd-gradient-03);
  color: var(--gd-dark);
}

.gd-section--gradient-04 {
  background: var(--gd-gradient-04);
  color: var(--gd-dark);
}

.gd-section--gradient-05 {
  background: var(--gd-gradient-05);
  color: var(--gd-dark);
}

/* ── TYPOGRAFIE ─────────────────────────────────────────────── */
.gd-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gd-accent-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.gd-h1 {
  font-family: var(--gd-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200 !important;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gd-h1 em {
  font-style: normal;
  color: var(--gd-accent-light);
}

.gd-h2 {
  font-family: var(--gd-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200 !important;
  line-height: 1.25;
  margin-bottom: 16px;
}

.gd-h2--light {
  color: var(--gd-warm);
}

.gd-h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.gd-lead {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 36px;
}

.gd-lead--muted {
  color: rgba(245,240,232,0.8);
}

.gd-section-intro {
  color: var(--gd-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
}

.gd-section-intro a {
  color: var(--gd-accent);
  text-decoration: none;
  transition: color 0.2s;
}

.gd-section-intro a:hover {
  color: var(--gd-accent-light);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.gd-btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  font-family: var(--gd-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}

.gd-btn--primary {
  background: var(--gd-accent);
  color: var(--gd-white);
}

.gd-btn--primary:hover {
  background: var(--gd-accent-light);
  color: var(--gd-white);
}

.gd-btn--outline {
  border: 1.5px solid rgba(245,240,232,0.3);
  color: var(--gd-warm);
  background: transparent;
  margin-left: 16px;
}

.gd-btn--outline:hover {
  border-color: var(--gd-accent-light);
}

/* ── HERO ───────────────────────────────────────────────────── */
.gd-hero {
  background: var(--gd-dark);
  color: var(--gd-warm);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.gd-hero .gd-container {
  max-width: var(--gd-max-width);
}

.gd-hero::before {
  display: none;
}

.gd-hero__price-note {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.gd-trust-bar {
  background: var(--gd-white);
  border-bottom: 1px solid var(--gd-border);
  padding: 20px 0;
}

.gd-trust-bar__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.gd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--gd-muted);
}

.gd-trust-item__icon {
  width: 20px;
  height: 20px;
  background: var(--gd-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gd-trust-item__icon svg {
  width: 11px;
  height: 11px;
  fill: white;
}

/* ── STEPS (Ablauf) ─────────────────────────────────────────── */
.gd-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.gd-step {
  border-top: 2px solid var(--gd-accent);
  padding-top: 20px;
}

.gd-step__num {
  font-family: var(--gd-font-display);
  font-size: 2.5rem;
  color: var(--gd-border);
  line-height: 1;
  margin-bottom: 12px;
}

.gd-step p {
  font-size: 0.88rem;
  color: var(--gd-muted);
}

/* ── PRICE CARDS ────────────────────────────────────────────── */
.gd-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gd-price-card {
  border: 1.5px solid var(--gd-border);
  padding: 32px;
  background: var(--gd-warm);
  position: relative;
}

.gd-price-card--featured {
  border-color: var(--gd-accent);
  background: var(--gd-white);
}

.gd-price-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gd-accent);
  color: white;
  font-size: 11px;
  padding: 3px 12px;
  letter-spacing: 0.08em;
  font-family: var(--gd-font-body);
}

.gd-price-card__amount {
  font-family: var(--gd-font-display);
  font-size: 2rem;
  color: var(--gd-dark);
  margin-bottom: 4px;
}

.gd-price-card__note {
  font-size: 0.8rem;
  color: var(--gd-muted);
  margin-bottom: 20px;
}

.gd-price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gd-price-card__list li {
  font-size: 0.88rem;
  color: var(--gd-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gd-border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.gd-price-card__list li::before {
  content: '→';
  color: var(--gd-accent);
  flex-shrink: 0;
}

/* ── WHY GRID ───────────────────────────────────────────────── */
.gd-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.gd-why-item__marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gd-accent);
  margin-right: 8px;
  margin-bottom: 10px;
}

.gd-why-item p {
  font-size: 0.88rem;
  color: var(--gd-muted);
}

/* ── REFERENZEN ─────────────────────────────────────────────── */
.gd-ref-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gd-ref-pill {
  background: var(--gd-warm);
  border: 1px solid var(--gd-border);
  padding: 6px 16px;
  font-size: 0.83rem;
  color: var(--gd-muted);
}

.gd-review {
  background: var(--gd-white);
  border: 1.5px solid var(--gd-border);
  padding: 28px;
  max-width: 520px;
}

.gd-review__stars {
  font-size: 0.85rem;
  color: var(--gd-muted);
  margin-bottom: 8px;
}

.gd-review__text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 12px;
}

.gd-review__author {
  font-size: 0.8rem;
  color: var(--gd-muted);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.gd-faq {
  max-width: 720px;
}

.gd-faq__item {
  border-bottom: 1px solid var(--gd-border);
  padding: 20px 0;
}

.gd-faq__item p {
  font-size: 0.88rem;
  color: var(--gd-muted);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.gd-cta {
  text-align: center;
  padding: 80px 0;
}

.gd-cta p {
  color: rgba(245,240,232,0.65);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gd-cta__fine {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.3);
}

/* ── BOOKING WIDGET WRAPPER ─────────────────────────────────── */
.gd-booking-widget {
  margin-top: 40px;
  background: var(--gd-white);
  padding: 32px;
  max-width: var(--gd-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gd-container {
    padding: 0 20px;
  }

  /* Mindest-Schriftgrösse auf Mobile */
  .gd-page {
    font-size: 16px;
  }

  .gd-page p,
  .gd-page li,
  .gd-page a {
    font-size: 1rem;
  }

  .gd-footer__links li,
  .gd-footer__links a {
    font-size: 0.95rem;
  }

  .gd-nav__list a {
    font-size: 1rem;
  }

  .gd-why-grid {
    grid-template-columns: 1fr;
  }

  .gd-btn--outline {
    display: block;
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .gd-trust-bar__inner {
    gap: 20px;
  }

  .gd-price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gd-steps {
    grid-template-columns: 1fr;
  }

  .gd-hero {
    padding: 56px 0 48px;
  }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.gd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gd-dark);
}

.gd-nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.gd-nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}

.gd-nav__logo img {
  height: 32px;
  width: auto;
}

.gd-nav__logo-text {
  font-family: var(--gd-font-display);
  font-size: 1.2rem;
  color: var(--gd-warm);
  letter-spacing: -0.01em;
}

.gd-nav__logo-text span {
  color: var(--gd-accent);
}

.gd-nav__menu {
  flex: 1;
}

.gd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}

.gd-nav__list a {
  text-decoration: none;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  font-family: var(--gd-font-body);
  transition: color 0.2s;
}

.gd-nav__list a:hover {
  color: var(--gd-warm);
}

.gd-nav__list .current-menu-item a {
  color: var(--gd-accent-light);
}

.gd-nav__cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Mobile Toggle */
.gd-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.gd-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gd-warm);
  transition: transform 0.2s, opacity 0.2s;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.gd-footer {
  font-family: var(--gd-font-body);
  background: var(--gd-dark);
  color: #ffffff;
  padding: 64px 0 0;
}

.gd-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gd-footer__brand {
  font-family: var(--gd-font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.gd-footer__brand span {
  color: var(--gd-accent);
}

.gd-footer__tagline {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.6;
}

.gd-footer__col-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gd-accent-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.gd-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gd-footer__links li {
  font-size: 0.87rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.5;
}

.gd-footer__links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.gd-footer__links a:hover {
  color: var(--gd-accent-light);
}

.gd-footer__bottom {
  padding: 20px 0;
  font-size: 0.78rem;
  color: #ffffff;
}

/* ── RESPONSIVE NAV & FOOTER ─────────────────────────────────── */
@media (max-width: 768px) {
  .gd-nav__toggle {
    display: flex;
  }

  .gd-nav__cta {
    display: none;
  }

  /* Weisser Layer mit dunklem Border */
  .gd-nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    outline: 10px solid var(--gd-dark);
    outline-offset: -10px;
    padding: 80px 32px 40px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
    display: block;
  }

  .gd-nav__menu.gd-nav__menu--open {
    opacity: 1;
    pointer-events: all;
  }

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

  .gd-nav__list > .menu-item {
    width: 100%;
  }

  .gd-nav__list > .menu-item > a {
    display: block !important;
    padding: 12px 0 8px !important;
    font-size: 1.6rem !important;
    font-family: var(--gd-font-display) !important;
    color: var(--gd-dark) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    line-height: 1.2 !important;
  }

  .gd-nav__list > .menu-item > a:hover {
    color: var(--gd-accent) !important;
  }

  /* Submenü immer aufgeklappt */
  .gd-nav__list .sub-menu {
    display: block !important;
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    margin: 0 0 8px 0;
    padding: 0;
  }

  .gd-nav__list .sub-menu {
    list-style: none !important;
  }

  .gd-nav__list .sub-menu .menu-item {
    list-style: none !important;
  }

  .gd-nav__list .sub-menu .menu-item a {
    padding: 6px 0 !important;
    font-size: 1rem !important;
    font-family: var(--gd-font-body) !important;
    color: var(--gd-muted) !important;
    text-decoration: none !important;
    background: transparent !important;
  }

  .gd-nav__list .sub-menu .menu-item a:hover {
    color: var(--gd-accent) !important;
  }

  /* Kein Chevron im Mobile */
  .gd-nav__list > .menu-item-has-children > a::after {
    display: none !important;
  }

  .gd-nav__toggle {
    z-index: 999;
    position: relative;
  }

  /* Logo dunkel wenn Menü offen */
  .gd-nav__logo {
    position: relative;
    z-index: 999;
  }

  .gd-nav-open .gd-nav__logo-text {
    color: var(--gd-dark);
  }

  .gd-nav-open .gd-nav__logo-text span {
    color: var(--gd-accent);
  }

  .gd-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .gd-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ── DROPDOWN NAVIGATION ────────────────────────────────────── */
.gd-nav__item--dropdown {
  position: relative;
}

.gd-nav__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--gd-font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.gd-nav__chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
  color: rgba(245,240,232,0.5);
}

.gd-nav__item--dropdown[data-open] .gd-nav__chevron {
  transform: rotate(180deg);
}

.gd-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gd-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gd-accent);
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 200;
}

.gd-nav__item--dropdown[data-open] .gd-nav__dropdown {
  display: block;
}

.gd-nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.15s;
}

.gd-nav__dropdown-link:hover {
  background: rgba(255,255,255,0.05);
}

.gd-nav__dropdown-city {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
  font-family: var(--gd-font-body);
}

.gd-nav__dropdown-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.06em;
}

.gd-nav__dropdown-tag--studio {
  background: rgba(184,150,90,0.2);
  color: var(--gd-accent-light);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .gd-nav__dropdown {
    position: static;
    transform: none;
    border: none;
    border-left: 2px solid var(--gd-accent);
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    margin: 8px 0 8px 12px;
    display: none;
    padding: 4px 0;
  }

  .gd-nav__item--dropdown[data-open] .gd-nav__dropdown {
    display: block;
  }

  .gd-nav__dropdown-link {
    padding: 8px 16px;
  }
}

/* ── ÜBER MICH ──────────────────────────────────────────────── */
.gd-about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.gd-about__grid .gd-h2 {
  margin-top: 0;
  padding-top: 0;
}

.gd-about__image {
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.gd-about__image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--gd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gd-muted);
  font-size: 0.85rem;
}

.gd-about__p {
  font-size: 0.97rem;
  color: var(--gd-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.gd-about__link {
  font-size: 0.9rem;
  color: var(--gd-muted);
  margin-top: 8px;
}

.gd-about__link a {
  color: var(--gd-accent);
  text-decoration: none;
}

.gd-about__link a:hover {
  color: var(--gd-accent-light);
}

/* ── FAKTEN ─────────────────────────────────────────────────── */
.gd-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.gd-fact {
  background: var(--gd-white);
  padding: 32px 28px;
  border-top: 2px solid var(--gd-accent);
}

.gd-fact__num {
  font-family: var(--gd-font-display);
  font-size: 2rem;
  color: var(--gd-dark);
  margin-bottom: 10px;
  line-height: 1;
}

.gd-fact__label {
  font-size: 0.85rem;
  color: var(--gd-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gd-about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gd-facts__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gd-facts__grid {
    grid-template-columns: 1fr;
  }
}

/* ── WP NAV MENU – WordPress Klassen stylen ─────────────────── */

/* Alle Menu-Items */
.gd-nav__list .menu-item a {
  text-decoration: none;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  font-family: var(--gd-font-body);
  transition: color 0.2s;
  display: block;
  padding: 0;
}

.gd-nav__list .menu-item a:hover,
.gd-nav__list .current-menu-item > a {
  color: var(--gd-warm);
}

.gd-nav__list .current-menu-item > a {
  color: var(--gd-accent-light);
}

/* Top-Level Items */
.gd-nav__list > .menu-item {
  position: relative;
}

/* Dropdown Parent – Chevron via CSS */
.gd-nav__list > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,240,232,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.2s;
}

.gd-nav__list > .menu-item-has-children[data-open] > a::after {
  transform: rotate(180deg);
}

/* Sub-Menu (Dropdown) – nur Desktop */
@media (min-width: 769px) {
  .gd-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--gd-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid var(--gd-accent);
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    z-index: 200;
  }

  .gd-nav__list .menu-item-has-children[data-open] > .sub-menu {
    display: block;
  }
}

.gd-nav__list .sub-menu .menu-item a {
  padding: 10px 20px;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  transition: background 0.15s, color 0.15s;
}

.gd-nav__list .sub-menu .menu-item a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gd-warm);
}

/* Mobile Sub-Menu – überschrieben durch Off-Canvas Block oben */

/* ── HAMBURGER ANIMATION ────────────────────────────────────── */
.gd-nav__toggle span {
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

/* Offen: X-Form, dunkel */
.gd-nav__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gd-dark);
}

.gd-nav__toggle--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  background: var(--gd-dark);
}

.gd-nav__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gd-dark);
}

/* ── HERO MIT BILD ──────────────────────────────────────────── */


/* ── KUNDEN LOGOS GRID ──────────────────────────────────────── */
.gd-logos__title {
  text-align: center;
  margin-bottom: 40px;
}

.gd-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
  align-items: center;
}

.gd-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gd-logos__item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Alle Logos einheitlich grau – beim Hover original Farbe */
  filter: grayscale(100%) opacity(60%);
  transition: filter 0.25s ease;
}

.gd-logos__item img:hover {
  filter: grayscale(0%) opacity(100%);
}

@media (max-width: 768px) {
  .gd-logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
}

@media (max-width: 480px) {
  .gd-logos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── REFERENZEN ─────────────────────────────────────────────── */
.gd-ref-firm {
  margin-bottom: 56px;
}

.gd-ref-firm__header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}

.gd-ref-firm__header p {
  margin: 0;
  padding: 0;
  display: inline;
}

.gd-ref-firm__name {
  font-family: var(--gd-font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gd-dark);
  margin: 0;
}

.gd-ref-firm__link {
  font-size: 0.82rem;
  color: var(--gd-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.gd-ref-firm__link:hover {
  color: var(--gd-accent-light);
}

.gd-ref-firm__images {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gd-ref-firm__image {
  flex: 1;
  overflow: hidden;
  background: var(--gd-border);
}

.gd-ref-firm__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gd-ref-firm__image img:hover {
  transform: scale(1.03);
}

.gd-ref-firm__more {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .gd-ref-firm__images {
    gap: 6px;
  }

  .gd-ref-firm__header {
    flex-direction: column;
    gap: 6px;
  }
}

/* ── REFERENZEN SEITE – Magazin Layout ─────────────────────── */
.gd-ref-firm__images--large {
  gap: 12px;
  align-items: stretch;
}

/* Bild 1: gleich breit wie Bild 2+3 zusammen */
.gd-ref-firm__images--large .gd-ref-firm__image:first-child {
  flex: 2;
}

/* Bild 2+3: rechte Spalte, gestapelt */
.gd-ref-firm__images--large .gd-ref-firm__image:not(:first-child) {
  flex: 1;
}

/* Bild 2+3 in eine rechte Spalte packen */
.gd-ref-firm__images--large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.gd-ref-firm__images--large .gd-ref-firm__image:first-child {
  grid-row: 1 / 3; /* Bild 1 über beide Zeilen */
}

.gd-ref-firm__images--large .gd-ref-firm__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gd-ref-firm__images--large .gd-ref-firm__image:first-child img {
  min-height: 400px;
}

.gd-ref-firm__images--large .gd-ref-firm__image:not(:first-child) img {
  min-height: 190px;
}

@media (max-width: 640px) {
  .gd-ref-firm__images--large {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gd-ref-firm__images--large .gd-ref-firm__image:first-child {
    grid-row: auto;
  }

  .gd-ref-firm__images--large .gd-ref-firm__image:first-child img,
  .gd-ref-firm__images--large .gd-ref-firm__image:not(:first-child) img {
    min-height: 240px;
  }
}


/* ── BOOKING PAGE ───────────────────────────────────────────── */
.gd-booking-page__body {
  max-width: var(--gd-max-width);
  margin: 0 auto;
  padding: 56px 32px;
  width: 100%;
}

.gd-booking-page__title {
  font-family: var(--gd-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gd-dark);
  margin-bottom: 8px;
}

.gd-booking-page__lead {
  font-size: 0.9rem;
  color: var(--gd-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.gd-booking-page__lead a {
  color: var(--gd-accent);
  text-decoration: none;
}

.gd-booking-page__lead a:hover {
  color: var(--gd-accent-light);
}

.gd-booking-page__widget {
  background: var(--gd-white);
  padding: 40px;
  border: 1px solid var(--gd-border);
}

@media (max-width: 480px) {
  .gd-booking-page__body {
    padding: 32px 20px;
  }

  .gd-booking-page__widget {
    padding: 24px 16px;
  }
}

/* ── GD BOOKINGS – DM Sans durchgehend ─────────────────────── */
.gd-booking-page__widget,
.gd-booking-page__widget *,
.gd-booking-page__widget input,
.gd-booking-page__widget select,
.gd-booking-page__widget textarea,
.gd-booking-page__widget button {
  font-family: var(--gd-font-body) !important;
}

/* ── BOOKING SLIDESHOW – Infinite Marquee ───────────────────── */
.gd-booking-slideshow {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}

.gd-booking-slideshow__label {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gd-muted);
  margin-bottom: 20px;
}

.gd-booking-slideshow__track {
  overflow: hidden;
  width: 100%;
}

.gd-booking-slideshow__inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: gd-marquee 32s linear infinite;
  will-change: transform;
}

.gd-booking-slideshow__inner:hover {
  animation-play-state: paused;
}

.gd-booking-slideshow__slide {
  flex-shrink: 0;
}

.gd-booking-slideshow__slide img {
  display: block;
  height: 300px;
  width: auto;
  aspect-ratio: 3/2;
}

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

@media (max-width: 640px) {
  .gd-booking-slideshow__slide img {
    height: 200px;
  }

  .gd-booking-slideshow__inner {
    animation-duration: 10s;
  }
}

/* ── SEO TEXT BLOCK ─────────────────────────────────────────── */
.gd-seo-text {
  max-width: 720px;
}

.gd-seo-text h2 {
  margin-bottom: 24px;
}

.gd-seo-text h3 {
  margin-top: 40px;
  margin-bottom: 12px;
}

.gd-seo-text p {
  font-size: 0.97rem;
  color: var(--gd-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── INFO GRID ──────────────────────────────────────────────── */
.gd-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 48px;
}

.gd-info-block {
  border-top: 2px solid var(--gd-accent);
  padding-top: 20px;
}

.gd-info-block__icon {
  font-family: var(--gd-font-display);
  font-size: 2rem;
  color: var(--gd-border);
  line-height: 1;
  margin-bottom: 12px;
}

.gd-info-block__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gd-dark);
  margin-bottom: 10px;
}

.gd-info-block__text {
  font-size: 0.88rem;
  color: var(--gd-muted);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .gd-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── ACCORDION ──────────────────────────────────────────────── */
.gd-accordion {
  max-width: 720px;
}

.gd-accordion__item {
  border-bottom: 1px solid var(--gd-border);
}

.gd-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--gd-font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--gd-dark);
  text-align: left;
  transition: color 0.2s;
}

.gd-accordion__trigger:hover {
  color: var(--gd-accent);
}

.gd-accordion__chevron {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  color: var(--gd-muted);
  transition: transform 0.25s ease;
}

.gd-accordion__item--open .gd-accordion__chevron {
  transform: rotate(180deg);
}

.gd-accordion__item--open .gd-accordion__trigger {
  color: var(--gd-accent);
}

.gd-accordion__body {
  display: none;
  padding: 0 0 24px;
}

.gd-accordion__item--open .gd-accordion__body {
  display: block;
}

.gd-accordion__body p {
  font-size: 0.9rem;
  color: var(--gd-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.gd-accordion__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.gd-accordion__body li {
  font-size: 0.9rem;
  color: var(--gd-muted);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.6;
}

.gd-accordion__body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gd-accent);
}

.gd-accordion__body a {
  color: var(--gd-accent);
  text-decoration: none;
}

.gd-accordion__body a:hover {
  color: var(--gd-accent-light);
}

/* ── SEITEN-RAHMEN ──────────────────────────────────────────── */
html {
  background: white;
}

body {
  margin: 10px;
  outline: 10px solid white;
}

/* ── BODY GRADIENT ──────────────────────────────────────────── */
.gd-body-gradient {
  background: linear-gradient(160deg, #ffffff 0%, #fdf9f4 40%, #f5f0e8 100%);
  min-height: 100vh;
}

/* ── SECTION FADE-IN ────────────────────────────────────────── */
.gd-fade-ready {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gd-fade-ready.gd-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LOGO SLIDER ────────────────────────────────────────────── */
.gd-logo-slider {
  overflow: hidden;
  padding: 32px 0;
  background: var(--gd-white);
}

.gd-logo-slider__track {
  overflow: hidden;
  width: 100%;
}

.gd-logo-slider__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: gd-logo-marquee 24s linear infinite;
  will-change: transform;
  width: max-content;
}

.gd-logo-slider__inner:hover {
  animation-play-state: paused;
}

.gd-logo-slider__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gd-logo-slider__item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: opacity(80%);
  transition: filter 0.3s ease;
  aspect-ratio: auto;
}

.gd-logo-slider__item img:hover {
  filter: opacity(100%);
}

@keyframes gd-logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── INTRO GRID ─────────────────────────────────────────────── */
.gd-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  align-items: start;
}

.gd-intro-grid__text p {
  font-size: 0.97rem;
  color: var(--gd-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.gd-intro-grid__ctas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gd-intro-cta-box {
  border-top: 2px solid var(--gd-accent);
  padding-top: 20px;
}

.gd-intro-cta-box h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gd-dark);
  margin-bottom: 10px;
}

.gd-intro-cta-box p {
  font-size: 0.88rem;
  color: var(--gd-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: block;
}

.gd-intro-cta-box .gd-btn {
  display: block;
  width: fit-content;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .gd-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── SCROLL TO TOP ──────────────────────────────────────────── */
.gd-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gd-dark);
  color: var(--gd-warm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 500;
}

.gd-scroll-top--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.gd-scroll-top:hover {
  background: var(--gd-accent);
}

.gd-scroll-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .gd-scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ── REFERENZ BILDER FADE-IN ────────────────────────────────── */
.gd-ref-firm__image {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gd-ref-firm__image.gd-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KONTAKTZEILE ───────────────────────────────────────────── */
.gd-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gd-border);
  font-size: 0.9rem;
  color: var(--gd-muted);
  flex-wrap: wrap;
}

.gd-contact-line a {
  color: var(--gd-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.gd-contact-line a:hover {
  color: var(--gd-accent);
}

.gd-contact-line__sep {
  color: var(--gd-border);
}