/* ═══════════════════════════════════════════════════
   GRULLI CONSULTING — Shared Stylesheet
   Farben basieren auf der Landing Page (M_Circle)
═══════════════════════════════════════════════════ */

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

:root {
  --cream:      #F9F7F2;
  --cream-dark: #F0EDE5;
  --dark:       #171717;
  --charcoal:   #2A2A2A;
  --grey:       #3D3D3D;
  --gold:       #C9A552;
  --gold-light: #D4B46A;
  --gold-dark:  #A8883F;
  --text:       #1A1A1A;
  --text-muted: #6B6B6B;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Georgia, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

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

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── TYPOGRAPHY ─── */
.label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--light { color: var(--gold-light); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,165,82,0.35);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── SECTION SPACING ─── */
.section { padding: 112px 0; }
.section--dark  { background: var(--dark); }
.section--charcoal { background: var(--charcoal); }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--light { background: var(--white); }

.section__header { text-align: center; margin-bottom: 72px; }
.section__header .label { display: block; margin-bottom: 16px; }
.section__title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
}
.section__title em { font-style: italic; color: var(--gold); }
.section__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.section__subtitle--light { color: rgba(255,255,255,0.5); }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249,247,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,165,82,0.2);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo img { height: 81px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

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

.nav__mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(201,165,82,0.2);
  padding: 24px;
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nav__mobile a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav__mobile .nav__cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 14px;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta:not(.nav__mobile .nav__cta) { display: none; }
  .nav__toggle { display: flex; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 160px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero__inner .label {
  display: block;
  margin-bottom: 28px;
  letter-spacing: 0.2em;
}
.hero__title {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero__cta {
  font-size: 14px;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .hero__inner { padding: 120px 0 80px; }
  .hero__title { font-size: clamp(36px, 8vw, 52px); }
  .hero__subtitle { font-size: 16px; }
}

/* ─── ABOUT ─── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
}
.about__img-deco {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border: 2px solid rgba(201,165,82,0.3);
  border-radius: 2px;
  pointer-events: none;
}
.about__title {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 400;
  margin-top: 14px;
  margin-bottom: 24px;
}
.about__title em { font-style: italic; color: var(--gold); }
.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.about__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img { aspect-ratio: 4/3; }
}

/* ─── OFFERS ─── */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.offer-card {
  background: rgba(255,255,255,0.04);
  padding: 0;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { background: rgba(255,255,255,0.07); }
.offer-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.offer-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-card__img { transform: scale(1.04); }
.offer-card__body { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; }
.offer-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.offer-card__title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}
.offer-card__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.offer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.2s;
}
.offer-card:hover .offer-card__cta { gap: 12px; }
.offer-card__cta::after { content: '→'; }

@media (max-width: 900px) { .offers__grid { grid-template-columns: 1fr; } }

/* ─── CHALLENGE / HERAUSFORDERUNG ─── */
.challenge__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
}
.challenge__left {
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.challenge__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 18px 0 36px;
  color: var(--text);
}
.challenge__title em {
  font-style: italic;
  color: var(--gold);
}
.challenge__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.challenge__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.challenge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.challenge__right {
  position: relative;
  overflow: hidden;
}
.challenge__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.challenge__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 60%, transparent 100%);
  padding: 40px 40px 44px;
  color: var(--white);
}
.challenge__overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.challenge__solution-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.challenge__solution-list li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.88);
}
@media (max-width: 800px) {
  .challenge__inner { grid-template-columns: 1fr; min-height: auto; }
  .challenge__left { padding: 48px 32px; }
  .challenge__right { min-height: 320px; }
  .challenge__solution-list { grid-template-columns: 1fr; }
}

/* ─── OFFER ROWS ─── */
.offer-rows { display: flex; flex-direction: column; gap: 2px; }
.offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.offer-row:hover .offer-row__img { transform: scale(1.04); }
.offer-row:hover .offer-row__arrow { transform: translateX(6px); }
.offer-row__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  transition: background 0.3s;
}
.offer-row:hover .offer-row__content { background: var(--cream); }
.offer-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}
.offer-row__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.15;
}
.offer-row__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
}
.offer-row__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.offer-row__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.offer-row__img-wrap {
  overflow: hidden;
  position: relative;
}
.offer-row__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
/* Alle Rows: Content links, Bild rechts — kein alternating */

@media (max-width: 900px) {
  .offer-row { grid-template-columns: 1fr; min-height: auto; }
  .offer-row__content { padding: 48px 32px; order: 2 !important; }
  .offer-row__img-wrap { min-height: 280px; order: 1 !important; }
}

/* ─── EVENTS ─── */
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--white);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.event-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card__img { transform: scale(1.04); }
.event-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}
.event-card__body { padding: 28px 24px 32px; flex: 1; display: flex; flex-direction: column; }
.event-card__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.event-card__meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-card__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.event-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.event-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.event-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold-dark);
}
.event-card__price sub {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  vertical-align: baseline;
}
.event-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.event-card:hover .event-card__link { gap: 10px; color: var(--gold-dark); }
.event-card__link::after { content: '→'; }

@media (max-width: 900px) { .events__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .events__grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS SLIDER ─── */
.testimonials__slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 0.4s ease;
}
.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  .testimonial-card { min-width: 33.333%; }
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(201,165,82,0.12);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.testimonials__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonials__btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,165,82,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.testimonials__btn:hover {
  background: rgba(201,165,82,0.15);
}
.testimonials__dots {
  display: flex;
  gap: 8px;
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.testimonials__dot.active {
  background: var(--gold);
}

/* ─── CTA SECTION ─── */
.cta-section { text-align: center; }
.cta-section .section__title { color: var(--white); }
.cta-section .section__subtitle { color: rgba(255,255,255,0.5); }
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cta-section__note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(26,26,26,0.1);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo img { height: 75px; margin-bottom: 16px; }
.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 220px;
}
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer__contact a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(26,26,26,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 100px;
}
.page-hero--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 0;
}
.page-hero--bg .container { position: relative; z-index: 1; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,82,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero__title {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── DETAIL PAGE ─── */
.detail__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.detail__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.detail__content h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 36px 0 16px;
}
.detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.detail__list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.detail__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.detail__sidebar {
  position: sticky;
  top: 100px;
}
.detail__box {
  background: var(--charcoal);
  border: 1px solid rgba(201,165,82,0.2);
  border-radius: 4px;
  padding: 40px 36px;
}
.detail__box-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,165,82,0.2);
}
.detail__box-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.detail__box-item-label { color: rgba(255,255,255,0.45); }
.detail__box-item-value { color: var(--white); font-weight: 500; }
.detail__box-cta { width: 100%; margin-top: 28px; display: block; text-align: center; }

@media (max-width: 900px) { .detail__inner { grid-template-columns: 1fr; } .detail__sidebar { position: static; } }

/* ─── KONTAKT ─── */
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact__info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.contact__info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact__info-value {
  font-size: 15px;
  color: var(--text);
}
.contact__form { background: var(--white); border: 1px solid rgba(26,26,26,0.1); border-radius: 3px; padding: 40px; }
.form__group { margin-bottom: 22px; }
.form__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(26,26,26,0.12);
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--gold); }
.form__textarea { resize: vertical; min-height: 140px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.form__submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ─── LEGAL PAGES ─── */
.legal__content {
  max-width: 760px;
  margin: 0 auto;
}
.legal__content h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.legal__content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 10px;
}
.legal__content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal__content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal__content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.legal__content a { color: var(--gold-dark); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #171717;
  border-top: 2px solid var(--gold);
  display: none;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
#cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
#cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}
#cookie-text strong { color: #fff; }
#cookie-text a { color: var(--gold); text-decoration: underline; }
#cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
#cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.5); }
#cookie-accept {
  background: var(--gold);
  border: none;
  color: var(--dark);
  padding: 10px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
#cookie-accept:hover { opacity: 0.9; }
@media (max-width: 600px) {
  #cookie-inner { padding: 16px 20px; gap: 16px; }
  #cookie-buttons { width: 100%; }
  #cookie-decline, #cookie-accept { flex: 1; text-align: center; }
}

/* ─── HERO PHOTO ─── */
.hero__photo-wrap {
  position: relative;
  z-index: 1;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.hero__photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: 3px;
  min-width: 140px;
}
.hero__photo-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  display: block;
  line-height: 1;
}
.hero__photo-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .hero__photo-wrap { display: none; }
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  background: var(--dark);
  overflow: hidden;
  padding: 0;
}
.photo-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.photo-strip__item {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.photo-strip__item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
@media (max-width: 768px) {
  .photo-strip__inner { grid-template-columns: repeat(3, 1fr); }
}

/* ─── GALLERY GRID ─── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
}
.gallery__item--large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--large { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ─── UTILS ─── */
.gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.divider--center { margin: 24px auto; }

/* ─── NAV ACTIVE + DROPDOWN ─── */
.nav__active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.nav__arrow { font-size: 10px; opacity: 0.6; }
.nav__has-dropdown { position: relative; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 1px solid rgba(201,165,82,0.2);
  border-top: 2px solid var(--gold);
  list-style: none;
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__has-dropdown:hover .nav__dropdown { display: block; }
.nav__dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s, background 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.nav__dropdown li a:hover { color: var(--gold); background: rgba(201,165,82,0.05); }

/* ─── OFFER ROW DARK (01 — 1:1 Mentoring) ─── */
.offer-row--dark .offer-row__content {
  background: var(--charcoal);
}
.offer-row--dark:hover .offer-row__content {
  background: #333;
}
.offer-row--dark .offer-row__num {
  color: var(--gold);
}
.offer-row--dark .offer-row__title {
  color: var(--white);
}
.offer-row--dark .offer-row__text {
  color: rgba(255,255,255,0.65);
}
.offer-row--dark .offer-row__link {
  color: var(--gold-light);
}

/* ─── EXPERTISE SECTION ─── */
.expertise-section { background: var(--cream-dark); }
.expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise__img-wrap { position: relative; }
.expertise__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  display: block;
}
.expertise__content .label { display: block; margin-bottom: 12px; }
.expertise__title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.15;
}
.expertise__title em { font-style: italic; color: var(--gold); }
.expertise__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.expertise__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.expertise__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.expertise__icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.expertise__list strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.expertise__list p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 800px) {
  .expertise__inner { grid-template-columns: 1fr; gap: 40px; }
  .expertise__img { aspect-ratio: 4/3; }
}

/* ─── AKTUELLE ANGEBOTE ─── */
.aktuelle__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.aktuelle__alle {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-bottom: 4px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.angebot-card {
  display: block;
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
}
.angebot-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.angebot-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.angebot-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.angebot-card:hover .angebot-card__img-wrap img { transform: scale(1.04); }
.angebot-card__body { padding: 24px 20px 28px; }
.angebot-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.angebot-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.angebot-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
@media (max-width: 768px) {
  .angebote-grid { grid-template-columns: 1fr; }
  .aktuelle__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── SPECIAL BANNER ─── */
.special-banner {
  margin-top: 16px;
  border: 2px solid #dc2626;
  border-radius: 12px;
  padding: 16px 14px;
  background: rgba(220, 38, 38, 0.06);
  animation: bannerPulse 2s ease-in-out infinite;
}
@keyframes bannerPulse {
  0%, 100% { border-color: #dc2626; }
  50% { border-color: #f87171; }
}
.special-banner__badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.special-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.special-banner__highlight {
  color: #dc2626;
  font-weight: 700;
}

/* ─── TESTIMONIALS STERNE ─── */
.testimonials__star-top {
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ─── CTA SECTION ─── */
.cta-section__title {
  font-size: clamp(36px, 4.5vw, 60px);
}

/* ─── FOOTER BRAND ─── */
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
}
.footer__col-brand { max-width: 280px; }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── BEWÄHRTE EXPERTISE ─── */
.expertise-section { background: var(--cream); }
.expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
}
.expertise__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.expertise__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.expertise__text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.expertise__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expertise__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.expertise__icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.expertise__list strong { display: block; margin-bottom: 4px; font-weight: 600; }
.expertise__list p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .expertise__inner { grid-template-columns: 1fr; gap: 40px; }
  .expertise__img-wrap { aspect-ratio: 3/2; }
}

/* ─── AKTUELLE ANGEBOTE ─── */
.aktuelle__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.aktuelle__alle {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-bottom: 4px;
}
.aktuelle__alle:hover { color: var(--gold); }
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.angebot-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.angebot-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.angebot-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.angebot-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.angebot-card:hover .angebot-card__img-wrap img { transform: scale(1.04); }
.angebot-card__body { padding: 24px 24px 28px; }
.angebot-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
}
.angebot-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0 0 18px; }
.angebot-card__link { font-size: 13px; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.05em; }
@media (max-width: 900px) {
  .angebote-grid { grid-template-columns: 1fr; }
  .aktuelle__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
