/* =============================================
   Von ganzem Herzen – Freie Rednerin
   style.css  |  Mobile-First  |  WCAG 2.1 AA
   ============================================= */

/* ==============================================
   LOKALE SCHRIFTARTEN (DSGVO-KONFORM)
   Dateien in assets/fonts/ ablegen – Anleitung
   in assets/fonts/SCHRIFTEN-DOWNLOAD-ANLEITUNG.txt
   ============================================== */

/* ── Inter (v20, SIL Open Font License, lokal gehostet) ── */
/* Latin-Ext: Umlaute ä/ö/ü und andere westeuropäische Zeichen */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Latin: Standard-ASCII + Interpunktion */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Cormorant Garamond (v21, SIL Open Font License, lokal gehostet) ── */
/* Normal – Latin-Ext */
@font-face {
  font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-v21-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Normal – Latin */
@font-face {
  font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-v21-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Italic – Latin-Ext */
@font-face {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-v21-latin-ext-italic.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Italic – Latin */
@font-face {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Custom Properties ──────────────────────── */
:root {
  --cream:      #FAF6F1;
  --beige:      #E8D9C9;
  --tan:        #C9A87C;
  --gold:       #B8894D;
  --gold-dk:    #96703C;
  --gold-light: #D4AB72;
  --gold-text:  #7A5C30;  /* WCAG AA auf hellen Hintergründen (5.3:1 auf cream) – nur für Text */
  --gold-solid: #8A6433;  /* WCAG AA mit weißem Text auf Vollton-Hintergrund (5.3:1) – nur für Buttons */
  --dark:       #1E1B18;
  --text:       #3A312A;
  --white:      #FFFFFF;
  --nav-h:      72px;
  --pad:        clamp(4rem, 8vw, 8rem);
  --radius:     6px;
  --shadow-sm:  0 2px 12px rgba(30,27,24,.08);
  --shadow:     0 8px 40px rgba(30,27,24,.12);
  --shadow-lg:  0 20px 60px rgba(30,27,24,.18);
  --trans:      .35s cubic-bezier(.4,0,.2,1);
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-head:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Skip Navigation ────────────────────────── */
.skip-nav {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-nav:focus {
  position: fixed; top: 0; left: 0; width: auto; height: auto;
  z-index: 9999; padding: .75rem 1.5rem;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: .9rem;
}

/* ── Global Focus ───────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
p  { line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-text); /* WCAG AA 5.3:1 auf hellem Hintergrund */
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.section-divider--center { margin-inline: auto; }

/* ── Layout ─────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}
section { padding: var(--pad) 0; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2.25rem;
  font-family: var(--ff-body);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn:hover {
  background: var(--gold); color: var(--white);
  transform: translateY(-2px);
}
.btn:focus-visible {
  background: var(--gold); color: var(--white);
  transform: translateY(-2px);
  /* Weißer Fokus-Ring kontrastiert gegen gold-Hintergrund (WCAG 2.4.7) */
  outline: 3px solid var(--white);
  outline-offset: 2px;
}
.btn--solid {
  /* --gold-solid hat 5.3:1 gegen weiß (WCAG AA für normale Textgröße) */
  background: var(--gold-solid); color: var(--white);
  border-color: var(--gold-solid);
}
.btn--solid:hover {
  background: var(--gold-text); border-color: var(--gold-text);
}
.btn--solid:focus-visible {
  background: var(--gold-text); border-color: var(--gold-text);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}
.btn--white {
  border-color: rgba(255,255,255,.7); color: var(--white);
}
.btn--white:hover { background: var(--white); color: var(--dark); }
.btn--white:focus-visible {
  background: var(--white); color: var(--dark);
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}


/* ==============================================
   NAVIGATION
   ============================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--trans), box-shadow var(--trans),
              backdrop-filter var(--trans);
}
.site-header.scrolled {
  background: rgba(250,246,241,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(30,27,24,.1);
}
.nav-inner {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; }

.nav-menu { display: flex; gap: 2.5rem; }
.nav-menu a {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dark);
  position: relative; padding-bottom: 3px;
  transition: color var(--trans);
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--trans);
}
.nav-menu a:hover,
.nav-menu a.active          { color: var(--gold-text); } /* WCAG AA auf hellem Nav-Hintergrund */
.nav-menu a:hover::after,
.nav-menu a.active::after   { width: 100%; }

/* Burger Button */
.nav-burger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  padding: 8px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), width var(--trans);
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 2.75rem;
    transform: translateX(100%);
    transition: transform var(--trans);
    overflow: auto; z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1rem; letter-spacing: .18em; }
  .site-header { background: rgba(250,246,241,.98) !important; }
}


/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,27,24,.55) 0%,
    rgba(30,27,24,.25) 50%,
    rgba(30,27,24,.72) 100%
  );
}
/* gold shimmer strip */
.hero__overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(184,137,77,.22), transparent);
}

/* Floating petals */
.hero__petals {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.petal {
  position: absolute; bottom: -10%;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  opacity: 0;
  animation: petalFloat linear infinite;
  will-change: transform, opacity;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--tan); font-weight: 600;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .8s .4s both;
}
.hero__tag::before,
.hero__tag::after {
  content: '';
  display: block; width: 32px; height: 1px; background: var(--tan);
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: .95;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
  margin: 1.25rem 0;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 1s .7s both;
}
.hero__title .accent {
  display: block;
  font-style: italic;
  font-size: .62em;
  color: var(--tan);
  letter-spacing: .02em;
}
.hero__subtitle {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  max-width: 520px; margin-inline: auto;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .9s 1.1s both;
  line-height: 1.75;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .9s 1.4s both;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.6);
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 2.2s both;
}
.scroll-line {
  width: 1px; height: 56px;
  background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--tan));
  animation: scrollDown 1.8s 2.5s infinite;
}

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: .7; } }
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%;  }
}
@keyframes petalFloat {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: .6; }
  25%  { transform: translateY(-25vh) translateX(15px) rotate(90deg); }
  50%  { transform: translateY(-50vh) translateX(-10px) rotate(180deg); }
  75%  { transform: translateY(-75vh) translateX(20px) rotate(270deg); }
  100% { transform: translateY(-110vh) translateX(-5px) rotate(360deg); opacity: 0; }
}


/* ==============================================
   TRUST BAR
   ============================================== */
.trust-bar {
  background: var(--dark);
  padding: 1.1rem 0;
  overflow: hidden;
}
.trust-bar__track {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: .5rem 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .65rem;
  font-size: .73rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep {
  display: none;
  width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold);
  opacity: .5;
}
@media (min-width: 600px) { .trust-sep { display: block; } }


/* ==============================================
   LEISTUNGEN / ZEREMONIEN
   ============================================== */
.services {
  background: var(--cream);
}
.services__header {
  text-align: center; max-width: 640px;
  margin: 0 auto 4rem;
}
.services__header p { margin-top: 1.25rem; opacity: .8; font-size: .95rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--beige);
  position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--beige); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem; color: var(--gold);
  font-size: 1.35rem;
}
.service-card__title {
  font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 600;
  color: var(--dark); margin-bottom: .85rem;
  letter-spacing: .01em;
}
.service-card__text {
  font-size: .9rem; line-height: 1.8; opacity: .8;
}


/* ==============================================
   ÜBER MICH
   ============================================== */
.about { background: var(--beige); }
.about__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem; align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-frame {
  position: absolute;
  top: -24px; left: -24px;
  right: 24px; bottom: 24px;
  border: 2px solid var(--gold);
  border-radius: 8px; z-index: 0;
  opacity: .5;
}
.about__img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.about__eyebrow { margin-bottom: .25rem; }
.about__heading { margin-bottom: 1.5rem; }
.about__quote {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--gold-text); /* WCAG AA 5.3:1 auf beige Hintergrund */
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.about__bio {
  font-size: .93rem; line-height: 1.85;
  opacity: .85; margin-bottom: 1.25rem;
}
.about__certs {
  margin: 1.5rem 0 2.25rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.about__certs li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .88rem; opacity: .85;
}
.about__certs li::before {
  content: '✦';
  color: var(--gold); font-size: .7rem;
  margin-top: .32rem; flex-shrink: 0;
}
.about__region {
  font-size: .85rem; opacity: .75;
  font-style: italic; margin-bottom: 1.75rem;
}

@media (max-width: 820px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__img-frame { display: none; }
  .about__img { aspect-ratio: 4/3; }
}


/* ==============================================
   PROZESS / ABLAUF
   ============================================== */
.process { background: var(--cream); }
.process__header {
  text-align: center;
  max-width: 640px; margin: 0 auto 5rem;
}
.process__header p { margin-top: 1.25rem; opacity: .8; font-size: .95rem; }

.process__steps { display: flex; flex-direction: column; gap: 5rem; }

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.process-step--reverse { direction: rtl; }
.process-step--reverse > * { direction: ltr; }

.process-step__visual { position: relative; }
.process-step__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 10px;
  box-shadow: var(--shadow);
}
.process-step__badge {
  position: absolute; top: -1.25rem; left: -1.25rem;
  width: 4.5rem; height: 4.5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,137,77,.45);
  z-index: 2;
}

.process-step__content {}
.process-step__step-label {
  display: block; font-size: .68rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-text); font-weight: 600; margin-bottom: .5rem; /* WCAG AA auf cream */
}
.process-step__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600; margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.process-step__text {
  font-size: .93rem; line-height: 1.85; opacity: .82;
}
.process-step__text + .process-step__text { margin-top: .75rem; }

@media (max-width: 820px) {
  .process-step { grid-template-columns: 1fr; gap: 2rem; }
  .process-step--reverse { direction: ltr; }
  .process-step__badge { top: -1rem; left: -1rem; width: 3.5rem; height: 3.5rem; font-size: 1.2rem; }
}


/* ==============================================
   FAQ
   ============================================== */
.faq { background: var(--dark); }
.faq__header {
  text-align: center; max-width: 640px; margin: 0 auto 3.5rem;
}
.faq__header .section-label { color: var(--tan); }
.faq__header h2 { color: var(--white); }
.faq__header p { color: rgba(255,255,255,.65); margin-top: 1rem; font-size: .95rem; }

.faq__list {
  max-width: 780px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.faq-btn {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.25rem;
  padding: 1.6rem 0;
  text-align: left;
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color var(--trans);
}
.faq-btn:hover { color: var(--tan); outline: none; }
/* Fokus-Ring bleibt sichtbar (WCAG 2.4.7) – gold-Outline kontrastiert 5.6:1 gegen dunklen Hintergrund */
.faq-btn:focus-visible { color: var(--tan); }
.faq-btn[aria-expanded="true"] { color: var(--tan); }

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--tan); transition: transform var(--trans), background var(--trans), border-color var(--trans);
}
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold); border-color: var(--gold);
  color: var(--white);
}

.faq-panel {
  overflow: hidden;
  height: 0;
  transition: height .4s cubic-bezier(.4,0,.2,1);
}
.faq-panel__inner {
  padding-bottom: 1.75rem;
  font-size: .93rem; line-height: 1.85;
  color: rgba(255,255,255,.65);
}


/* ==============================================
   KONTAKT
   ============================================== */
.contact { background: var(--beige); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact__info {}
.contact__info .section-divider { margin: 1.25rem 0; }
.contact__info > p {
  font-size: .93rem; opacity: .82; margin-bottom: 2.5rem; line-height: 1.85;
}
.contact__details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  font-size: .92rem;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-detail a { transition: color var(--trans); }
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(201,168,124,.4);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--ff-body); font-size: .92rem;
  color: var(--dark); width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; /* Browser-default entfernt, durch sichtbaren Ring ersetzt */
  border-color: var(--gold-solid);
  /* Fokus-Ring: 3px Solid-Farbe + 3px transparenter Ring = sichtbar gegen alle BG-Farben (WCAG 1.4.11) */
  box-shadow: 0 0 0 1px var(--gold-solid), 0 0 0 4px rgba(138,100,51,.25);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; opacity: .65; }

/* Honeypot – für echte Nutzer komplett versteckt */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

@media (max-width: 820px) {
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}


/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 2rem;
}
.footer__inner {
  display: flex; flex-wrap: wrap;
  gap: 2rem; justify-content: space-between; align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer__logo img { height: 48px; filter: brightness(0) invert(1); opacity: .85; }
.footer__tagline {
  font-family: var(--ff-head);
  font-style: italic; font-size: 1rem;
  color: rgba(255,255,255,.4);
}
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.footer__nav a {
  font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--trans);
}
.footer__nav a:hover { color: var(--tan); }
.footer__bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: .75rem; font-size: .78rem;
}
.footer__credit { opacity: .45; }
.footer__credit a { color: var(--tan); }


/* ==============================================
   WHATSAPP FLOAT
   ============================================== */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 900;
  display: flex; align-items: center; gap: .7rem;
  background: #25D366; color: var(--white);
  padding: .85rem 1.3rem; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  color: var(--white);
}
.whatsapp-float__text { display: none; }
@media (min-width: 480px) { .whatsapp-float__text { display: block; } }


/* ==============================================
   COOKIE BANNER
   ============================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9997;
  background: rgba(30,27,24,.97);
  backdrop-filter: blur(8px);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1; font-size: .85rem;
  color: rgba(255,255,255,.75); line-height: 1.65;
  min-width: 200px;
}
.cookie-banner__text a { color: var(--tan); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  padding: .6rem 1.3rem; font-size: .8rem; font-weight: 700;
  border-radius: var(--radius); transition: all var(--trans);
  letter-spacing: .06em; text-transform: uppercase;
}
.cookie-btn--accept {
  background: var(--gold-solid); color: var(--white); /* WCAG AA 5.3:1 */
  border: 1.5px solid var(--gold-solid);
}
.cookie-btn--accept:hover { background: var(--gold-text); border-color: var(--gold-text); }
.cookie-btn--accept:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}
.cookie-btn--decline:focus-visible {
  outline: 3px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}
.cookie-btn--decline {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.25);
}
.cookie-btn--decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }


/* ==============================================
   SCROLL REVEAL
   ============================================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px);  }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal][data-delay="5"] { transition-delay: .5s; }

/* Reduced motion – WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }            /* Kein Smooth-Scroll */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important; /* Endlosanimationen stoppen */
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__bg { background-attachment: scroll; }
  .petal { display: none; }                  /* Schwebende Blüten ausblenden */
  .scroll-line::after { animation: none; }   /* Scroll-Indicator-Animation stoppen */
}


/* ==============================================
   UTILITIES
   ============================================== */
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .whatsapp-float { bottom: 1rem; right: 1rem; padding: .85rem; border-radius: 50%; }
  .whatsapp-float__text { display: none !important; }
}
