/* =============================================
   DREYSEN ADVISORY GROUP — Global Styles
   ---------------------------------------------
   Konzept, Design & Umsetzung:
   Mino Schmickler · GOTEKI inc. · 2026
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --bg-primary:    #060E1A;
  --bg-secondary:  #0A1828;
  --bg-card:       #0D1E34;
  --bg-hover:      #132540;
  --gold:          #C9A84C;
  --gold-light:    #E2C472;
  --gold-dark:     #9A7B2E;
  --text-primary:  #F4F1EA;
  --text-secondary:#B0BDC9;
  --border:        #172338;
  --border-gold:   rgba(201,168,76,0.28);
  --nav-height:    80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(7,16,31,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.nav-logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 2rem;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary) !important;
}

.nav-cta::after { display: none !important; }

/* --- Hamburger (mobile) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,16,31,0.92) 0%,
    rgba(7,16,31,0.75) 50%,
    rgba(12,22,40,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 900px;
  padding-top: var(--nav-height);
  padding-bottom: 7rem; /* keeps clear of hero-scroll indicator */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
  pointer-events: none;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* --- Sub-page hero (shorter) --- */
.hero-sub {
  min-height: 55vh;
}

.hero-sub .hero-content {
  max-width: 700px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(237,233,224,0.35);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s;
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 100px 5%;
}

.section-sm { padding: 70px 5%; }

.section-dark { background: var(--bg-secondary); }
.section-darker { background: var(--bg-primary); }

.section-header {
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.85;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number .suffix {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: var(--bg-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 1.5rem; right: 2rem;
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-number {
  color: rgba(201,168,76,0.14);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
}

.about-image-frame {
  position: absolute;
  top: -20px; right: -20px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--border-gold);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 1.5rem 2rem;
  text-align: center;
}

.about-badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content { padding-left: 1rem; }

.about-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* =============================================
   TEAM GRID
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.team-card {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
}

.team-photo-wrap {
  overflow: hidden;
  height: 340px;
  position: relative;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(40%) brightness(0.8);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.team-card:hover .team-photo {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.04);
}

.team-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.team-info {
  padding: 1.8rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.team-info::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem;
  width: 40px; height: 2px;
  background: var(--gold);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 5%;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.testimonial-section .avatar-wrap {
  width: 52px; height: 52px;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-org {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-secondary); opacity: 0.5; }

textarea.form-control { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-hover) 100%);
  border-top: 1px solid var(--border-gold);
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  max-width: 560px;
}

.cta-band-title em {
  font-style: italic;
  color: var(--gold);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #04080F;
  padding: 70px 5% 0;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-primary); }

/* Bottom bar — full-bleed, lighter tone */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 1rem;
  /* bleed to footer edges so it spans full width */
  margin: 0 -5%;
  padding: 22px 5%;
  background: #0D1D30;
  border-top: 1px solid rgba(201,168,76,0.14);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal a {
  color: var(--text-secondary);
  transition: color 0.3s;
  padding: 4px 18px;
  border-left: 1px solid rgba(201,168,76,0.2);
  line-height: 1;
}

.footer-legal a:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-legal a:hover { color: var(--gold); }

/* =============================================
   VALUE CARDS (Über uns)
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 0;
}

.value-card {
  background: var(--bg-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.value-card:hover { background: var(--bg-hover); }

.value-card-line {
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.value-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
}

.value-card-text {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =============================================
   TIMELINE (Geschichte)
   ============================================= */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.timeline-event {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   LEISTUNGEN (Cinema Blocks)
   ============================================= */
.leistung-cinema {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.leistung-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(6,14,26,0.97) 0%,
    rgba(6,14,26,0.91) 38%,
    rgba(6,14,26,0.6) 65%,
    rgba(6,14,26,0.12) 100%
  );
}

.leistung-cinema.reverse .leistung-cinema-overlay {
  background: linear-gradient(270deg,
    rgba(6,14,26,0.97) 0%,
    rgba(6,14,26,0.91) 38%,
    rgba(6,14,26,0.6) 65%,
    rgba(6,14,26,0.12) 100%
  );
}

.leistung-cinema-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
}

.leistung-cinema.reverse .leistung-cinema-wrap {
  justify-content: flex-end;
}

.leistung-cinema-content {
  max-width: 560px;
  padding: 90px 0;
}

.leistung-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  margin-bottom: -1rem;
}

.leistung-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.leistung-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.leistung-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.leistung-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.leistung-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   PAGE TRANSITION OVERLAY
   ============================================= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* AOS overrides for dark theme */
[data-aos] { transition-duration: 0.8s !important; }

/* =============================================
   SECTION DIVIDERS
   ============================================= */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.5) 25%, rgba(201,168,76,0.5) 75%, transparent 100%);
  margin: 0;
}

/* =============================================
   FLOATING CTA BUTTON
   ============================================= */
.float-cta {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 900;
  transform: translateY(90px) scale(0.88);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.float-cta.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 15px 26px 15px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 36px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  white-space: nowrap;
}

.float-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201,168,76,0.55);
}

.float-cta-btn svg {
  width: 17px; height: 17px;
  fill: none;
  stroke: var(--bg-primary);
  stroke-width: 2;
  flex-shrink: 0;
}

/* =============================================
   CONTACT MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4,8,15,0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 3rem 2.5rem;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  line-height: 1;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
  margin-bottom: 0.9rem;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.modal-title em { font-style: italic; color: var(--gold); }

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-success {
  text-align: center;
  padding: 2rem 1rem;
}

.modal-success-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
}

.modal-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}

.modal-success p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 1.8rem;
}

/* =============================================
   IMAGE ACCENT BLOCKS (homepage extras)
   ============================================= */
.image-band {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.image-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) grayscale(20%);
  transition: transform 6s ease;
}

.image-band:hover .image-band-img { transform: scale(1.04); }

.image-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,14,26,0.85) 0%, rgba(6,14,26,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.image-band-content {
  max-width: 500px;
}

.image-band-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.image-band-title em { color: var(--gold); font-style: italic; }

.image-band-text {
  font-size: 0.88rem;
  color: rgba(240,237,230,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* Enhanced hero text readability */
.hero-title  { text-shadow: 0 2px 40px rgba(0,0,0,0.7), 0 0 80px rgba(0,0,0,0.5); }
.hero-subtitle { text-shadow: 0 1px 20px rgba(0,0,0,0.6); }
.hero-eyebrow  { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

/* Section eyebrow — use left-border instead of inline line */
.section-eyebrow {
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
}
.section-eyebrow::before { display: none; }

/* =============================================
   TESTIMONIALS CAROUSEL
   ============================================= */
.carousel-section {
  background: var(--bg-secondary);
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}

/* Decorative background quote */
.carousel-section::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 3%;
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.carousel-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.carousel-track {
  position: relative;
  min-height: 260px;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  text-align: center;
  padding: 0 1rem;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.carousel-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.6rem;
}

.carousel-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.carousel-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar-wrap {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
}

.carousel-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.25);
  transform-origin: center 20%;
  filter: grayscale(25%);
}

.testimonial-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.25);
  transform-origin: center 20%;
  filter: grayscale(30%);
}

.carousel-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.carousel-author-org {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.carousel-prev,
.carousel-next {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 6px; height: 6px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* =============================================
   BRANCHEN STRIP
   ============================================= */
.branchen-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 5%;
}

.branchen-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
}

.branchen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.branchen-item {
  background: var(--bg-card);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}

.branchen-item:hover { background: var(--bg-hover); }

.branchen-icon {
  width: 36px; height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.branchen-item:hover .branchen-icon { opacity: 1; }

.branchen-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color 0.3s;
}

.branchen-item:hover .branchen-name { color: var(--text-primary); }

/* =============================================
   DECORATIVE BACKGROUNDS (pattern)
   ============================================= */
.bg-pattern-dots {
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bg-pattern-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.025) 40px,
    rgba(201,168,76,0.025) 41px
  );
}

/* Intro section decorative deco-number */
.deco-number {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* =============================================
   HAMBURGER ACTIVE STATE
   ============================================= */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span { transition: all 0.3s ease; }

/* =============================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================= */
@media (max-width: 1100px) {
  .services-grid        { grid-template-columns: 1fr 1fr; }
  .footer-top           { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer               { padding: 60px 5% 0; }
  .branchen-grid        { grid-template-columns: repeat(3, 1fr); }
  .section              { padding: 80px 5%; }
}

/* =============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================= */
@media (max-width: 900px) {
  :root { --nav-height: 70px; }

  /* NAV → Hamburger ab Tablet */
  .nav-links            { display: none; }
  .nav-toggle           { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(6,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 6%;
    gap: 0;
    border-top: 1px solid var(--border-gold);
    animation: navOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a:first-child { border-top: 1px solid var(--border); }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.8rem !important;
    flex: 0 0 auto !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    border: 1px solid var(--gold) !important;
    padding: 1rem 2rem !important;
    font-size: 0.82rem !important;
    letter-spacing: 2px !important;
    border-radius: 0 !important;
  }

  .about-split          { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid         { grid-template-columns: 1fr; gap: 3rem; }

  .about-image-wrap     { max-height: 320px; }
  .about-image          { height: 320px; }
  .about-image-frame    { display: none; }
  .about-badge          { bottom: 1rem; left: 1rem; }

  .leistung-block       { grid-template-columns: 1fr; gap: 2.5rem; padding: 60px 5%; }
  .leistung-block:nth-child(even) { direction: ltr; }
  .leistung-image       { height: 300px; }

  .leistung-cinema      { background-attachment: scroll; min-height: 520px; }
  .leistung-cinema-content { max-width: 440px; }

  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

  .team-grid            { grid-template-columns: 1fr 1fr; }
  .values-grid          { grid-template-columns: 1fr 1fr; }

  .cta-band             { flex-direction: column; text-align: center; }
  .cta-band-title       { max-width: 100%; }

  .carousel-track       { min-height: 320px; }

  /* two-col intro layout → single col */
  .intro-two-col        { grid-template-columns: 1fr !important; gap: 2rem !important; }

  .deco-number          { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================= */
@media (max-width: 600px) {
  /* NAV */
  .nav                  { padding: 0 4%; }
  .nav-links            { display: none; }
  .nav-toggle           { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(6,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 6%;
    gap: 0;
    border-top: 1px solid var(--border-gold);
    animation: navOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a:first-child { border-top: 1px solid var(--border); }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.8rem !important;
    flex: 0 0 auto !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    border: 1px solid var(--gold) !important;
    padding: 1rem 2rem !important;
    font-size: 0.82rem !important;
  }

  /* HERO */
  .hero-content         { padding: 0 4%; }
  .hero-title           { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-subtitle        { font-size: 0.95rem; }
  .hero-actions         { flex-direction: column; }
  .hero-actions .btn    { width: 100%; justify-content: center; }
  .hero-scroll          { display: none; }

  /* SECTIONS */
  .section              { padding: 60px 4%; }
  .section-sm           { padding: 50px 4%; }
  .section-title        { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* GRIDS → single column */
  .services-grid        { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr; }
  .stats-grid           { grid-template-columns: 1fr 1fr; }
  .stat-item            { padding: 1.6rem 1rem; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* ABOUT */
  .about-split          { gap: 2rem; }
  .about-image          { height: 240px; }
  .about-badge          { display: none; }

  /* LEISTUNGEN */
  .leistung-block       { padding: 50px 4%; gap: 2rem; }
  .leistung-image       { height: 220px; }
  .leistung-title       { font-size: 1.5rem; }

  .leistung-cinema      { background-attachment: scroll; min-height: auto; }
  .leistung-cinema-overlay,
  .leistung-cinema.reverse .leistung-cinema-overlay {
    background: linear-gradient(180deg, rgba(6,14,26,0.45) 0%, rgba(6,14,26,0.97) 40%);
  }
  .leistung-cinema-wrap { padding: 0 4%; }
  .leistung-cinema-content { max-width: 100%; padding: 340px 0 60px; }
  .leistung-cinema.reverse .leistung-cinema-wrap { justify-content: flex-start; }

  /* BRANCHEN */
  .branchen-grid        { grid-template-columns: repeat(3, 1fr); }
  .branchen-name        { font-size: 0.62rem; letter-spacing: 0.8px; }

  /* CAROUSEL */
  .carousel-track       { min-height: 380px; }
  .carousel-quote       { font-size: 1rem; }
  .carousel-section::before { font-size: 12rem; }

  /* TEAM */
  .team-photo-wrap      { height: 280px; }

  /* CTA */
  .cta-band             { padding: 60px 4%; }
  .cta-band .btn        { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer               { padding: 50px 4% 0; }
  .footer-top           { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom        { flex-direction: column; text-align: center; gap: 1.2rem; margin: 0 -4%; padding: 22px 4%; }
  .footer-legal         { justify-content: center; }
  .footer-legal a:first-child { padding-left: 18px; border-left: 1px solid rgba(201,168,76,0.2); }

  /* FORMS */
  .form-row             { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-grid         { gap: 2.5rem; }

  /* MODAL — label/input form (leistungen) → single column */
  .modal-row            { grid-template-columns: 1fr; }
}

/* =============================================
   MODAL FORM — label-wrapped fields
   (used by the leistungen.html modal; keeps the
    inputs on-theme instead of raw browser styling)
   ============================================= */
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  margin-top: 0.55rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
  outline: none;
  transition: border-color 0.3s;
}

.modal-form textarea { resize: vertical; min-height: 110px; }

.modal-form input:focus,
.modal-form textarea:focus { border-color: var(--gold); }

.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--text-secondary); opacity: 0.5; }

/* =============================================
   SITE CREDIT — Webdesign-Hinweis (dezent)
   GOTEKI inc. · Logo-Platzhalter (später ersetzbar)
   ============================================= */
.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  letter-spacing: 0.6px;
  color: var(--text-secondary);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.site-credit:hover { opacity: 1; }

.site-credit strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* Platzhalter-Logo: gestrichelte Box mit "G".
   Später durch <img class="site-credit-logo" src="…"> ersetzen. */
.site-credit-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9900;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.55);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 220px;
}

.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.cookie-banner__desc {
  font-size: 0.81rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cookie-banner__desc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* Shared cookie button */
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}

.cookie-btn--reject:hover {
  color: var(--text-primary);
  border-color: rgba(201,168,76,0.4);
}

.cookie-btn--settings {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}

.cookie-btn--settings:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .cookie-banner__inner   { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-btn             { text-align: center; width: 100%; padding: 12px; }
}

/* =============================================
   COOKIE MODAL
   ============================================= */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  max-width: 520px;
  width: 100%;
  padding: 2.4rem 2.2rem 2rem;
  transform: translateY(18px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.is-open .cookie-modal__box {
  transform: translateY(0);
}

.cookie-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.2s ease;
}

.cookie-modal__close:hover { color: var(--text-primary); }

.cookie-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.cookie-modal__title em { font-style: italic; color: var(--gold); }

.cookie-modal__intro {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* Category rows */
.cookie-category {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.cookie-category:last-of-type {
  border-bottom: 1px solid var(--border);
}

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category__info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.cookie-category__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-category__desc {
  font-size: 0.77rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-toggle--locked {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle switch */
.cookie-toggle--switch {
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  display: block;
  width: 42px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-toggle__input:checked + .cookie-toggle__track {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.cookie-toggle__input:checked + .cookie-toggle__track::after {
  transform: translateX(18px);
  background: var(--gold);
}

/* Modal footer */
.cookie-modal__footer {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .cookie-modal__box { padding: 1.8rem 1.4rem 1.4rem; }
  .cookie-modal__footer { flex-direction: column; }
  .cookie-modal__footer .cookie-btn { text-align: center; width: 100%; }
}
