/* ============================================================
   KAYRA FUßPFLEGE · styles.css
   Premium minimalist design · Cormorant Garamond + Jost
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C89A2B;
  --gold-light:  #e0bc6a;
  --gold-muted:  rgba(200, 154, 43, 0.15);
  --white:       #FFFFFF;
  --off-white:   #F8F5F0;
  --cream:       #F0EBE3;
  --beige:       #E8E0D4;
  --warm-gray:   #9A8E7E;
  --dark:        #2C2520;
  --text:        #3D3530;
  --text-light:  #7A6E63;
  --border:      #E0D8CC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius:      10px;
  --shadow-sm:   0 2px 12px rgba(60,45,30,0.06);
  --shadow-md:   0 6px 32px rgba(60,45,30,0.09);
  --shadow-lg:   0 16px 60px rgba(60,45,30,0.12);
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* Dark context outline button */
.kontakt .btn--outline,
.oeffnungszeiten .btn--outline {
  color: var(--gold);
  border-color: var(--gold);
}
.kontakt .btn--outline:hover,
.oeffnungszeiten .btn--outline:hover {
  background: var(--gold-muted);
}

/* === SECTION BASE === */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

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

.section__intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 252, 248, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.1;
  gap: 12px;
}
.logo__image {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.header.scrolled .logo__image {
  opacity: 0.9;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.logo__sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.header.scrolled .logo__name { color: var(--dark); }
.header.scrolled .logo__sub  { color: var(--warm-gray); }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__close {
  display: none;
}
.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.header.scrolled .nav__link { color: var(--text-light); }
.header.scrolled .nav__link:hover { color: var(--dark); }

.nav__link--cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200,154,43,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}
.nav__link--cta::after { display: none; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.header.scrolled .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media svg,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media video {
  background: #e8e4de;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 22, 15, 0.55) 0%,
    rgba(30, 22, 15, 0.38) 60%,
    rgba(30, 22, 15, 0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 2rem;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation-delay: 0.1s;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation-delay: 0.2s;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation-delay: 0.3s;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation-delay: 0.4s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--white); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--white); }

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leistung-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.leistung-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.leistung-card--featured {
  background: var(--off-white);
  border-color: var(--gold);
}

.leistung-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}
.leistung-card__icon svg { width: 100%; height: 100%; }

.leistung-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.leistung-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.leistung-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.leistung-card__price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.leistung-card__prices {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ============================================================
   BERATUNG
   ============================================================ */
.beratung { background: var(--off-white); }

.beratung__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.beratung__text .section__title { text-align: left; }
.beratung__text .section__label { text-align: left; }
.beratung__text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.beratung__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 480 / 560;
}
.beratung__visual img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
.beratung__visual svg { width: 100%; height: auto; }

/* ============================================================
   PRAXIS
   ============================================================ */
.praxis { background: var(--white); }

.praxis__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 535px;
}

.praxis__img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
}
.praxis__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.praxis__img svg { width: 100%; height: 100%; object-fit: cover; }
.praxis__img--large { grid-row: 1 / 3; }
/* Nur kleine Bilder von Praxis sind quadratisch */
.praxis__grid > .praxis__img:not(.praxis__img--large) {
  aspect-ratio: 1;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.ueber-mich { background: var(--cream); }

.ueber-mich__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ueber-mich__image {
  position: relative;
}
.ueber-mich__image svg {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.ueber-mich__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 1rem;
  gap: 4px;
}
.ueber-mich__badge svg { width: 24px; height: 24px; margin-bottom: 2px; }
.ueber-mich__badge span {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.3;
}

.ueber-mich__text { padding-left: 1rem; }
.ueber-mich__text .section__title { text-align: left; margin-bottom: 0.5rem; }
.ueber-mich__text .section__label { text-align: left; }

.ueber-mich__lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ueber-mich__text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.ueber-mich__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ueber-mich__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}
.ueber-mich__list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   ZERTIFIKATE
   ============================================================ */
.zertifikate { background: var(--off-white); }

.zertifikate__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.zertifikat-card {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.zertifikat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.zertifikat-card svg {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.zertifikat-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  object-fit: cover;
}
.zertifikat-card p {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.bewertungen { background: var(--white); }

.bewertungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bewertung-card {
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}
.bewertung-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,154,43,0.3);
}

.bewertung-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.bewertung-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.bewertung-card__author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  text-transform: uppercase;
}

/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.oeffnungszeiten { background: var(--cream); }

.oeffnungszeiten__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.oeffnungszeiten__inner .section__title { text-align: left; }
.oeffnungszeiten__inner .section__label { text-align: left; }

.oeffnungszeiten__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.oeffnungszeiten__table tr {
  border-bottom: 1px solid var(--border);
}
.oeffnungszeiten__table td {
  padding: 0.9rem 0;
  font-size: 0.9rem;
}
.oeffnungszeiten__table td:last-child {
  text-align: right;
  font-weight: 400;
  color: var(--gold);
}
.oeffnungszeiten__table tr.dim td { color: var(--text-light); }
.oeffnungszeiten__table tr.dim td:last-child { color: var(--text-light); }

.oeffnungszeiten__hint {
  font-size: 0.78rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.oeffnungszeiten__cta {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.oeffnungszeiten__cta > p {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--off-white); }

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.kontakt__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.kontakt__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.kontakt__item strong {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.kontakt__item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.kontakt__item a {
  color: var(--text);
  transition: color var(--transition);
}
.kontakt__item a:hover { color: var(--gold); }

.kontakt__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.map-placeholder { background: var(--beige); }
.map-placeholder svg { width: 100%; height: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo__name { color: var(--white); font-size: 1.4rem; }
.footer__brand .logo__sub  { color: rgba(255,255,255,0.4); }
.footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.25);
}
.footer__copy a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__copy a:hover {
  color: var(--gold);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(60,45,30,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.cookie-banner__inner a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .btn--outline {
  color: var(--text-light);
  border-color: var(--border);
}
.cookie-banner .btn--outline:hover {
  border-color: var(--text-light);
  background: transparent;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .zertifikate__grid { grid-template-columns: repeat(2, 1fr); }
  .praxis__grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .praxis__img--large { grid-row: auto; }
  .praxis__grid > .praxis__img:not(.praxis__img--large) {
    aspect-ratio: 1;
  }
}


@media (max-width: 860px) {
  .leistungen__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .beratung__inner { grid-template-columns: 1fr; gap: 3rem; }
  .beratung__visual { order: -1; }
  .ueber-mich__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ueber-mich__text { padding-left: 0; }
  .ueber-mich__badge { right: 1rem; bottom: -1rem; }
  .oeffnungszeiten__inner { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bewertungen__grid { grid-template-columns: 1fr; }
  .praxis__grid { grid-template-columns: 1fr 1fr; height: auto; }
  .praxis__grid > .praxis__img:not(.praxis__img--large) {
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(300px, 80vw);
    max-height: calc(100vh - 70px);
    background: var(--white) !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    gap: 2rem;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
    box-shadow: -4px 0 30px rgba(60,45,30,0.1);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }
  .nav.open { 
    opacity: 1;
    visibility: visible;
  }
  .nav__link { color: var(--text) !important; font-size: 1rem; }
  .nav__link:hover { color: var(--gold) !important; }
  .nav__link--cta {
    color: var(--white) !important;
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    display: inline-block;
    margin-top: 1rem;
  }
  .nav__link--cta:hover {
    background: rgba(200,154,43,0.9);
    border-color: rgba(200,154,43,0.9);
  }
  
  .nav__close {
    display: none;
  }

  .burger { 
    display: flex;
    z-index: 999;
    position: relative;
  }

  .praxis__grid { grid-template-columns: 1fr 1fr; height: auto; }
  .praxis__img--large { grid-column: 1 / -1; grid-row: auto; }
  .praxis__grid > .praxis__img:not(.praxis__img--large) {
    aspect-ratio: 1;
  }

  .hero__actions { flex-direction: column; align-items: center; }

  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__links { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .zertifikate__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__headline { font-size: 2.6rem; }
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease;
}
.lightbox-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.3s ease;
}
.lightbox-modal__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 85vh;
}
.lightbox-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10000;
  border-radius: 4px;
}
.lightbox-modal__close:hover {
  background: rgba(0, 0, 0, 0.9);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================================================
   ZERTIFIKATE INTERACTION
   ============================================================ */
.zertifikat-card[data-lightbox] {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.zertifikat-card[data-lightbox]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== HERO INITIAL ANIMATION (CSS-only)
   ============================================================ */
.hero__content .fade-up {
  animation: fadeUpIn 0.9s ease both;
}
.hero__eyebrow { animation-delay: 0.25s !important; }
.hero__headline { animation-delay: 0.45s !important; }
.hero__sub      { animation-delay: 0.65s !important; }
.hero__actions  { animation-delay: 0.8s  !important; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
