/* DoQu Vision Homepage Styles
   Ausgelagert aus index.html fuer bessere Wartbarkeit. */

:root{
  --yellow:#ffd84d;
  --yellow-soft:#fff5bf;
  --text:#222;
  --muted:#666;
  --bg:#fffdf7;
  --white:#fff;
  --line:#e8e0ce;
  --dark:#171717;
  --max:1120px;
  --radius:24px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit;}
header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,253,247,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{
  max-width:var(--max);
  margin:auto;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}
.brand-mark{
  width:34px;
  height:34px;
  background:linear-gradient(145deg,var(--yellow),#ffe88a);
  clip-path:polygon(50% 0%,100% 100%,0% 100%);
  transform:rotate(90deg);
  flex:0 0 auto;
}
nav{overflow-x:auto;-webkit-overflow-scrolling:touch;}
nav ul{
  display:flex;
  gap:18px;
  list-style:none;
  padding:0;
  margin:0;
  white-space:nowrap;
}
nav a{
  position:relative;
  text-decoration:none;
  color:#333;
  font-size:.95rem;
  font-weight:500;
  padding-bottom:5px;
}
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--yellow);
  transition:width .25s ease;
}
nav a:hover::after,nav a:focus::after{width:100%;}
.section{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
}
.hero{
  max-width:var(--max);
  margin:auto;
  padding:64px 22px 38px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:34px;
  height:4px;
  background:var(--yellow);
  border-radius:999px;
}
h1,h2,h3{
  margin:0;
  line-height:1.08;
  letter-spacing:-.035em;
}
h1{
  font-size:clamp(2.55rem,7vw,5.8rem);
  text-transform:uppercase;
  font-weight:900;
}
.highlight{color:var(--yellow);}
.hero p{
  max-width:610px;
  margin:24px 0 0;
  font-size:clamp(1.05rem,2vw,1.28rem);
  color:#404040;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 19px;
  border-radius:999px;
  border:2px solid var(--dark);
  text-decoration:none;
  font-weight:800;
}
.button.primary{
  background:var(--yellow);
  color:#111;
  box-shadow:0 10px 26px rgba(255,216,77,.28);
}
.button.secondary{background:transparent;}
.hero-visual{
  position:relative;
  min-height:470px;
  display:grid;
  place-items:center;
}
.yellow-card{
  width:min(430px,100%);
  height:470px;
  background:linear-gradient(145deg,var(--yellow) 0%,#ffe88a 100%);
  border-radius:38px;
  transform:rotate(-4deg);
  box-shadow:0 24px 70px rgba(0,0,0,.09);
  position:relative;
  z-index:1;
}
.hero-portrait{
  position:absolute;
  z-index:2;
  width:min(390px,92%);
  height:440px;
  object-fit:cover;
  object-position:50% 28%;
  border-radius:34px;
  box-shadow:0 24px 70px rgba(0,0,0,.14);
  transform:rotate(1.5deg);
  filter:saturate(.96) contrast(1.03);
}
.quick-grid{
  max-width:var(--max);
  margin:auto;
  padding:0 22px 46px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.quick-card,.offer-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
}
.quick-card h3,.offer-card h3{
  font-size:1.35rem;
  margin-bottom:10px;
}
.quick-card p,.offer-card p,.section-head p{
  color:var(--muted);
  margin:0;
}
.intro{
  background:var(--dark);
  color:white;
}
.intro-inner{
  max-width:var(--max);
  margin:auto;
  padding:70px 22px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:38px;
}
.intro h2,.section-head h2,.supervision h2,.about h2,.contact h2{
  font-size:clamp(2rem,5vw,4.2rem);
  text-transform:uppercase;
  font-weight:900;
}
.intro p{
  margin:0;
  font-size:1.14rem;
  color:rgba(255,255,255,.82);
}
.section-head{max-width:760px;margin-bottom:30px;}
.section-head p{margin-top:16px;font-size:1.08rem;}
.offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.offer-card ul{
  margin:18px 0 0;
  padding-left:20px;
  color:#3d3d3d;
}
.offer-card li{margin:7px 0;}
.note{
  margin-top:12px;
  font-size:.95rem;
  color:#666;
  background:#fff9da;
  border-left:4px solid var(--yellow);
  padding:12px 14px;
  border-radius:12px;
}
.supervision{
  background:linear-gradient(135deg,var(--yellow) 0%,var(--yellow-soft) 100%);
}
.supervision-inner{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:38px;
}
.supervision-box{
  background:rgba(255,255,255,.72);
  border-radius:var(--radius);
  padding:28px;
}
.supervision-box p{margin-top:0;}
.supervision-tags{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:20px;
}
.supervision-tags span{
  background:white;
  padding:14px;
  border-radius:16px;
  font-weight:800;
  text-align:center;
}
.about{background:#f6f1e5;}
.about-inner{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:38px;
  align-items:center;
}
.about-photo-wrap{
  position:relative;
  min-height:390px;
}
.about-photo-bg{
  position:absolute;
  inset:20px 0 0 22px;
  background:linear-gradient(145deg,var(--yellow) 0%,#ffe88a 100%);
  border-radius:34px;
  transform:rotate(2deg);
}
.about-photo{
  position:absolute;
  z-index:2;
  inset:0 22px 22px 0;
  width:calc(100% - 22px);
  height:390px;
  object-fit:cover;
  object-position:50% 30%;
  border-radius:34px;
  box-shadow:0 24px 70px rgba(0,0,0,.11);
}
.about p{
  color:#444;
  font-size:1.06rem;
}
.dgsf-badge{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.08);
  border-left:6px solid var(--yellow);
  border-radius:20px;
  padding:16px 18px;
}
.dgsf-badge img{
  width:76px;
  height:auto;
  max-height:60px;
  object-fit:contain;
  background:transparent;
  border-radius:0;
  padding:0;
}
.dgsf-badge p{
  margin:0;
  font-size:.96rem;
  color:#444;
}
.dgsf-badge strong{
  display:block;
  color:#222;
  margin-bottom:2px;
}
.contact{
  background:var(--dark);
  color:white;
  text-align:center;
}
.contact-inner{
  max-width:840px;
  margin:auto;
  padding:72px 22px;
}
.contact p{
  color:rgba(255,255,255,.82);
  font-size:1.08rem;
}
.contact .button.secondary{
  color:white;
  border-color:rgba(255,255,255,.65);
}
.privacy-note{
  margin-top:24px;
  background:rgba(255,255,255,.08);
  border-left:6px solid var(--yellow);
  border-radius:18px;
  padding:18px;
  color:rgba(255,255,255,.82);
  text-align:left;
}
footer{
  padding:26px 22px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:.94rem;
}
.footer-inner{
  max-width:var(--max);
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
footer a{
  text-decoration:none;
  margin-left:14px;
}
@media(max-width:920px){
  .hero,.intro-inner,.supervision-inner,.about-inner{grid-template-columns:1fr;}
  .hero{padding-top:48px;}
  .hero-visual{min-height:390px;}
  .yellow-card{height:360px;max-width:520px;}
  .hero-portrait{height:340px;width:min(480px,88%);}
  .quick-grid,.offer-grid{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
    padding:14px 16px;
  }
  nav{width:100%;padding-bottom:2px;}
  nav ul{gap:14px;}
  nav a{font-size:.92rem;}
  .hero{
    padding:38px 18px 28px;
    gap:28px;
  }
  h1{
    font-size:clamp(2.25rem,12vw,3.3rem);
    line-height:1.03;
  }
  .hero p{
    font-size:1.02rem;
    margin-top:20px;
  }
  .actions{
    flex-direction:column;
    margin-top:24px;
  }
  .button{width:100%;}
  .hero-visual{min-height:290px;}
  .yellow-card{
    width:100%;
    height:250px;
    border-radius:26px;
  }
  .hero-portrait{
    height:245px;
    width:86%;
    border-radius:24px;
    object-position:50% 26%;
  }
  .section,.intro-inner,.supervision-inner,.about-inner,.contact-inner{padding:44px 18px;}
  .quick-grid{padding:0 18px 34px;}
  .quick-card,.offer-card,.supervision-box{padding:20px;border-radius:20px;}
  .supervision-tags{grid-template-columns:1fr;}
  .about-photo-wrap{min-height:270px;}
  .about-photo{height:260px;border-radius:26px;}
  .about-photo-bg{border-radius:26px;}
  .dgsf-badge{align-items:flex-start;flex-direction:column;}
  .dgsf-badge img{width:92px;}
  .footer-inner{flex-direction:column;}
  footer a{margin-left:0;margin-right:14px;}
}

.project-box{
  margin-top:20px;
  padding:16px;
  border-left:4px solid var(--yellow);
  background:#fffdf0;
  border-radius:12px;
}
.project-box a{
  color:#000;
  text-decoration:underline;
}


.workshops{
  background:var(--bg);
}
.workshops-inner{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
}
.workshop-box{
  background:var(--white);
  border:1px solid var(--line);
  border-left:6px solid var(--yellow);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 12px 34px rgba(0,0,0,.04);
}
.workshop-box h2{
  font-size:clamp(2rem,5vw,3.8rem);
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:18px;
}
.workshop-box p{
  color:#444;
  font-size:1.06rem;
}
.workshop-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:22px 0;
}
.workshop-list span{
  background:#fff9da;
  border-radius:16px;
  padding:14px;
  font-weight:800;
}
@media(max-width:640px){
  .workshops-inner{padding:44px 18px;}
  .workshop-box{padding:20px;border-radius:20px;}
  .workshop-list{grid-template-columns:1fr;}
}

.process-box{
  margin-top:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:22px;
  text-align:left;
}
.process-box h3{
  color:#fff;
  font-size:1.35rem;
  margin-bottom:16px;
  letter-spacing:-.02em;
}
.process-list{
  list-style:none;
  counter-reset:step;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.process-list li{
  counter-increment:step;
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:rgba(255,255,255,.86);
}
.process-list li::before{
  content:counter(step);
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:.9rem;
}
@media(max-width:640px){
  .process-box{padding:18px;border-radius:18px;}
}

/* Finaler Feinschliff */
:root{
  --yellow:#ffd84d;
  --yellow-soft:#fff5bf;
}

.hero-portrait,
.about-photo{
  filter:contrast(1.05) saturate(.95);
}

.hero-portrait{
  object-position:50% 32%;
  box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.yellow-card,
.about-photo-bg,
.brand-mark{
  background:linear-gradient(145deg, var(--yellow) 0%, #ffe88a 100%) !important;
}

.button.primary{
  box-shadow:0 14px 34px rgba(255,216,77,.28);
}

.meta-line{
  margin-top:14px;
  color:var(--muted);
  font-size:.95rem;
}

.project-box{
  margin-top:20px;
  padding:16px 18px;
  border-left:4px solid var(--yellow);
  background:#fffdf0;
  border-radius:12px;
}

.project-box p{
  margin:6px 0 0;
  color:#444;
}

.project-box a{
  color:#000;
  text-decoration:underline;
  text-underline-offset:3px;
}

.hero .meta-line{
  margin-top:18px;
}

@media(max-width:640px){
  .hero-portrait{
    object-position:50% 30%;
  }
}

.contact-name{
  margin:22px 0 8px;
  color:rgba(255,255,255,.9);
  font-size:1.02rem;
}
.contact-name strong{
  color:#fff;
}

.contact-inner{
  text-align:center;
}

.contact .actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.contact-name{
  text-align:center;
}


.contact .actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

@media(max-width:600px){
  .contact .actions{
    flex-direction:column;
    align-items:center;
  }
}


.button{
  transition: all 0.2s ease;
}

.button.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.button.secondary:hover{
  transform: translateY(-2px);
  background:#111;
  color:#fff;
}


.legal-section{
  background:#fffdf7;
  border-top:1px solid var(--line);
}
.legal-inner{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
}
.legal-inner h2{
  font-size:clamp(2rem,5vw,3.8rem);
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:22px;
}
.legal-inner h3{
  margin-top:28px;
  font-size:1.25rem;
}
.legal-inner p,
.legal-inner li{
  color:#444;
  font-size:1rem;
}
.legal-box{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  margin-bottom:24px;
}
.legal-note{
  border-left:5px solid var(--yellow);
  background:#fff9da;
  border-radius:14px;
  padding:14px 16px;
  color:#444;
}
@media(max-width:640px){
  .legal-inner{padding:44px 18px;}
  .legal-box{padding:20px;border-radius:20px;}
}

.hero p{
  line-height:1.6;
  font-size:1.05rem;
  max-width:680px;
  margin:auto;
}

.hero p br + br{
  display:block;
  margin-top:14px;
}

@media(max-width:600px){
  .hero p{
    font-size:1rem;
    line-height:1.55;
    padding:0 10px;
  }
}


/* Modernes Dreieck-Logo */
.brand{
  gap:14px;
}
.brand-logo{
  width:46px;
  height:auto;
  flex:0 0 auto;
  display:block;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.95rem;
}
.brand-subline{
  margin-top:4px;
  font-size:.62rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#555;
}
@media(max-width:640px){
  .brand-logo{width:38px;}
  .brand-name{font-size:.82rem;letter-spacing:.14em;}
  .brand-subline{font-size:.55rem;}
}

/* Rechtliches nur nach Klick sichtbar */
.legal-section{
  display:none;
}

.legal-section:target{
  display:block;
}

.legal-section:target .legal-inner{
  animation: legalFade .25s ease;
}

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

.legal-close{
  display:inline-flex;
  margin-top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  text-decoration:none;
  font-weight:800;
}

/* Typografie-Feinschliff passend zur Logo-Logik */
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1{
  letter-spacing: .045em;
  font-weight: 800;
  line-height: 1.08;
}

h2{
  letter-spacing: .055em;
  font-weight: 800;
  line-height: 1.12;
}

h3{
  letter-spacing: .02em;
  font-weight: 750;
}

.eyebrow,
nav a,
.brand-name,
.brand-subline,
.section-head p,
.supervision-tags span,
.workshop-list span,
.process-box h3,
.legal-inner h3{
  letter-spacing: .09em;
}

.eyebrow,
nav a,
.supervision-tags span,
.workshop-list span,
.process-box h3,
.legal-inner h3{
  text-transform: uppercase;
}

p,
li{
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero p{
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.68;
  letter-spacing: .005em;
}

.meta-line{
  letter-spacing: .035em;
  line-height: 1.55;
}

.button{
  letter-spacing: .035em;
  text-transform: uppercase;
  font-size: .9rem;
}

.offer-card h3,
.quick-card h3{
  letter-spacing: .015em;
  line-height: 1.2;
}

.offer-card p,
.quick-card p,
.about p,
.contact p,
.privacy-note,
.legal-inner p{
  letter-spacing: .002em;
}

@media(max-width:640px){
  h1{
    letter-spacing: .025em;
  }

  h2{
    letter-spacing: .035em;
  }

  p,
  li{
    font-size: 1rem;
    line-height: 1.65;
  }

  .button{
    font-size: .86rem;
  }
}


.supervision{
  padding:80px 20px;
  border-top:1px solid #eee;
}
.supervision-inner{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.supervision h2{
  font-size:2.4rem;
  margin-bottom:18px;
  letter-spacing:.04em;
}
.supervision-lead{
  font-weight:600;
  margin-bottom:16px;
  color:#111;
}
.supervision p{
  line-height:1.7;
  color:#444;
}
.supervision-tags{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.supervision-tags span{
  padding:8px 14px;
  border:1px solid #ddd;
  border-radius:999px;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#333;
}

/* Feinschliff Angebote */
.offers-refined{
  padding-top:90px;
  padding-bottom:90px;
}

.offers-refined .section-head{
  max-width:760px;
  margin:0 auto 36px;
  text-align:center;
}

.offers-refined .section-head h2{
  margin-bottom:18px;
}

.offers-refined .section-head p{
  line-height:1.7;
}

.offers-refined .offer-grid{
  align-items:stretch;
}

.offers-refined .offer-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:100%;
  padding:28px;
}

.offers-refined .offer-card h3{
  margin-bottom:4px;
}

.card-lead{
  font-weight:700;
  color:#111 !important;
  margin:0;
}

.card-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
  padding-top:14px;
}

.card-tags span{
  padding:7px 11px;
  border:1px solid #ddd;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#333;
  background:#fffdf7;
}

/* Feinschliff Über mich */
.about-refined .about-inner{
  gap:54px;
}

.about-refined h2{
  margin-bottom:22px;
}

.about-lead{
  font-size:1.12rem !important;
  color:#222 !important;
  font-weight:520;
}

.about-refined .dgsf-badge,
.about-refined .project-box{
  margin-top:24px;
}

.about-refined .project-box{
  background:#fffdf0;
  border-left:4px solid var(--yellow);
  padding:16px 18px;
  border-radius:14px;
}

.about-refined .project-box strong{
  display:block;
  margin-bottom:6px;
}

@media(max-width:640px){
  .offers-refined{
    padding-top:54px;
    padding-bottom:54px;
  }

  .offers-refined .section-head{
    text-align:left;
  }

  .offers-refined .offer-card{
    padding:22px;
  }

  .about-refined .about-inner{
    gap:32px;
  }
}

/* Finaler Weißraum- und Spacing-Feinschliff */
.section,
.intro-inner,
.supervision,
.workshops-inner,
.about-inner,
.contact-inner{
  padding-top:88px;
  padding-bottom:88px;
}

.hero{
  padding-top:72px;
  padding-bottom:56px;
}

.quick-grid{
  padding-bottom:56px;
}

.section-head{
  margin-bottom:42px;
}

.offer-grid,
.quick-grid{
  gap:20px;
}

.offer-card,
.quick-card,
.workshop-box,
.supervision-inner,
.dgsf-badge,
.project-box{
  border-radius:26px;
}

.offer-card,
.quick-card{
  padding:30px;
}

.card-tags{
  margin-top:18px;
}

.supervision{
  padding-left:22px;
  padding-right:22px;
}

.supervision-inner{
  padding-top:0;
  padding-bottom:0;
}

.workshop-box{
  max-width:900px;
  margin:0 auto;
}

.about-refined .about-inner{
  align-items:center;
}

.contact-inner{
  max-width:860px;
}

.process-box{
  margin-top:36px;
}

.privacy-note{
  margin-top:28px;
}

footer{
  padding-top:34px;
  padding-bottom:34px;
}

@media(max-width:640px){
  .section,
  .intro-inner,
  .supervision,
  .workshops-inner,
  .about-inner,
  .contact-inner{
    padding-top:54px;
    padding-bottom:54px;
  }

  .hero{
    padding-top:42px;
    padding-bottom:36px;
  }

  .quick-grid{
    padding-bottom:42px;
  }

  .section-head{
    margin-bottom:28px;
  }

  .offer-card,
  .quick-card{
    padding:22px;
  }

  .offer-grid,
  .quick-grid{
    gap:14px;
  }

  footer{
    padding-top:26px;
    padding-bottom:26px;
  }
}


/* Angebote: klarer getrennt, Supervision fokussiert */
.offers-refined .offer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:stretch;
}

.offers-refined .offer-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.035);
}

.offers-refined .offer-card-featured{
  grid-column:1 / -1;
  border:2px solid var(--yellow);
  background:linear-gradient(180deg,#fffdf7 0%,#fff9da 100%);
  display:grid;
  grid-template-columns: .9fr 1.4fr;
  column-gap:34px;
  align-items:start;
}

.offers-refined .offer-card-featured h3,
.offers-refined .offer-card-featured .card-lead{
  grid-column:1;
}

.offers-refined .offer-card-featured p:not(.card-lead){
  grid-column:2;
  grid-row:1 / span 2;
  margin-top:0;
}

.text-link{
  grid-column:2;
  display:inline-flex;
  width:max-content;
  margin-top:18px;
  text-decoration:none;
  font-weight:800;
  color:#111;
  border-bottom:3px solid var(--yellow);
  padding-bottom:4px;
}

/* Supervision: ruhiger Schwerpunkt statt gelber Balken */
.supervision-quiet{
  background:#fffdf7 !important;
  padding:92px 22px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.supervision-quiet .supervision-inner{
  max-width:980px;
  margin:0 auto;
  text-align:left;
  background:#fff;
  border:1px solid var(--line);
  border-left:8px solid var(--yellow);
  border-radius:30px;
  padding:42px;
  box-shadow:0 14px 44px rgba(0,0,0,.045);
}

.supervision-kicker{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  color:#555;
  margin-bottom:12px;
}

.supervision-quiet h2{
  margin-bottom:18px;
}

.supervision-quiet .supervision-lead{
  font-weight:700;
  color:#111;
  max-width:760px;
}

.supervision-quiet p{
  max-width:820px;
  color:#444;
}

.supervision-columns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:30px;
}

.supervision-mini{
  background:#fffdf7;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
}

.supervision-mini h3{
  font-size:1.05rem;
  margin-bottom:10px;
}

.supervision-mini p{
  margin:0;
  font-size:.95rem;
  line-height:1.55;
}

@media(max-width:760px){
  .offers-refined .offer-grid{
    grid-template-columns:1fr;
  }

  .offers-refined .offer-card-featured{
    grid-column:auto;
    display:block;
  }

  .offers-refined .offer-card-featured p:not(.card-lead){
    margin-top:12px;
  }

  .text-link{
    display:inline-flex;
    margin-top:16px;
  }

  .supervision-quiet{
    padding:58px 18px;
  }

  .supervision-quiet .supervision-inner{
    padding:26px;
    border-radius:24px;
  }

  .supervision-columns{
    grid-template-columns:1fr;
  }
}

/* Finaler Feinschliff Angebote */
.offers-refined .offer-grid{
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.offers-refined .offer-card{
  border-radius:28px;
  padding:30px;
  min-height:100%;
}

.offers-refined .offer-card h3{
  margin-bottom:10px;
}

.offers-refined .offer-card .card-lead{
  font-weight:700;
  color:#111 !important;
  margin-bottom:14px;
}

.offers-refined .offer-card p{
  line-height:1.68;
}

.offers-refined .offer-card-featured{
  grid-column:1 / -1;
  background:#fffdf7;
  border:2px solid var(--yellow);
  box-shadow:0 16px 44px rgba(0,0,0,.045);
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  column-gap:38px;
  row-gap:10px;
  align-items:start;
}

.offers-refined .offer-card-featured h3,
.offers-refined .offer-card-featured .card-lead{
  grid-column:1;
}

.offers-refined .offer-card-featured p:not(.card-lead),
.offers-refined .offer-card-featured .text-link{
  grid-column:2;
}

.offers-refined .offer-card-featured p:not(.card-lead){
  margin:0 0 12px;
}

.offers-refined .offer-card-featured .text-link{
  justify-self:start;
  margin-top:8px;
}

@media(max-width:760px){
  .offers-refined .offer-grid{
    grid-template-columns:1fr;
  }

  .offers-refined .offer-card-featured{
    grid-column:auto;
    display:block;
  }

  .offers-refined .offer-card-featured p:not(.card-lead){
    margin-top:12px;
  }
}

/* CTA Styling */
.button.primary{
  display:inline-block;
  margin-top:20px;
  padding:12px 18px;
  background:var(--yellow);
  color:#111;
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
}

.nav-cta{
  margin-left:20px;
  font-weight:700;
  text-decoration:none;
  border-bottom:2px solid var(--yellow);
}

/* Typography hierarchy */
h2{
  font-size:clamp(2.2rem,4vw,3rem);
}

/* Subtle de-emphasis of other offers */
.offer-card:not(.offer-card-featured){
  opacity:0.92;
}

/* Struktur-Fix: Header, Hero, CTAs */
.nav nav ul,
nav ul{
  align-items:center;
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border:2px solid #111;
  border-radius:999px;
  background:var(--yellow);
  color:#111 !important;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

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

.hero .actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero .button,
.contact .button,
.supervision-cta .button{
  margin-top:0;
}

.supervision-cta{
  margin-top:30px;
  display:flex;
  justify-content:flex-start;
}

.contact .actions{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:row;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}

.contact-name{
  margin:26px 0 8px;
  text-align:center;
  color:rgba(255,255,255,.9);
}

.contact-name strong{
  color:#fff;
}

.process-box{
  text-align:left;
}

@media(max-width:760px){
  nav ul{
    align-items:flex-start;
  }

  .nav-cta{
    width:max-content;
  }

  .hero .actions,
  .contact .actions{
    flex-direction:column;
    align-items:stretch;
  }

  .supervision-cta{
    justify-content:stretch;
  }

  .supervision-cta .button{
    width:100%;
  }
}

/* Ablauf als ruhige Schrittstruktur */
.process-box{
  margin-top:34px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  padding:26px;
  text-align:left;
}

.process-box h3{
  margin:0 0 10px;
}

.process-intro,
.process-outro{
  color:rgba(255,255,255,.78);
  margin:0;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin:24px 0;
}

.process-step{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  min-height:150px;
}

.process-number{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  font-weight:900;
  font-size:.86rem;
  margin-bottom:14px;
}

.process-step strong{
  display:block;
  color:#fff;
  margin-bottom:6px;
  font-size:.96rem;
}

.process-step p{
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:.9rem;
  line-height:1.45;
}

/* dezenter Supervisions-CTA */
.supervision-link{
  display:inline-flex;
  margin-top:18px;
  width:max-content;
  text-decoration:none;
  font-weight:800;
  color:#111;
  border-bottom:3px solid var(--yellow);
  padding-bottom:4px;
}

.supervision-cta{
  margin-top:18px;
}

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

  .process-step{
    min-height:auto;
    display:flex;
    gap:14px;
    align-items:flex-start;
  }

  .process-number{
    flex:0 0 34px;
    margin-bottom:0;
  }
}

/* Schlankere Supervisionsseite */
.supervision-slim{
  background:#fffdf7 !important;
  padding:78px 22px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.supervision-slim .supervision-inner{
  max-width:820px;
  margin:0 auto;
  text-align:left;
  background:transparent !important;
  border:0 !important;
  border-left:4px solid var(--yellow);
  border-radius:0 !important;
  padding:0 0 0 28px;
  box-shadow:none !important;
}

.supervision-slim h2{
  margin-bottom:18px;
}

.supervision-slim .supervision-lead{
  font-weight:700;
  color:#111;
  margin-bottom:16px;
}

.supervision-slim p{
  color:#444;
  line-height:1.72;
}

.supervision-list{
  margin-top:24px;
  display:grid;
  gap:10px;
}

.supervision-list p{
  margin:0;
  padding-top:12px;
  border-top:1px solid var(--line);
}

.supervision-list strong{
  color:#111;
}

.supervision-slim .supervision-link{
  margin-top:24px;
}

@media(max-width:640px){
  .supervision-slim{
    padding:54px 18px;
  }

  .supervision-slim .supervision-inner{
    padding-left:18px;
  }
}

/* Angebotsbereich: kompaktere Balance */
.offers-refined .offer-grid{
  align-items:start;
  gap:18px;
}

.offers-refined .offer-card{
  min-height:auto !important;
  padding:22px 24px !important;
}

.offers-refined .offer-card:not(.offer-card-featured){
  padding:20px 22px !important;
}

.offers-refined .offer-card h3{
  margin-bottom:8px;
}

.offers-refined .offer-card .card-lead{
  margin-bottom:10px;
}

.offers-refined .offer-card p{
  margin-bottom:10px;
  line-height:1.6;
}

.offers-refined .offer-card-featured{
  padding:26px 28px !important;
  align-items:start;
}

.offers-refined .offer-card-featured p:not(.card-lead){
  margin-bottom:10px;
}

@media(max-width:760px){
  .offers-refined .offer-card,
  .offers-refined .offer-card:not(.offer-card-featured),
  .offers-refined .offer-card-featured{
    padding:20px !important;
  }
}


/* Finaler Seitenrhythmus und Kontakt-Feinschliff */
main > section{
  scroll-margin-top: 96px;
}

.section,
.intro-inner,
.workshops-inner,
.about-inner,
.contact-inner{
  padding-top: 86px;
  padding-bottom: 86px;
}

.hero{
  padding-top: 72px;
  padding-bottom: 52px;
}

.quick-grid{
  padding-bottom: 58px;
}

.section-head{
  margin-bottom: 38px;
}

.contact-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro{
  margin: 18px auto 0;
  max-width: 620px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}

.contact-name{
  margin: 28px 0 18px;
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  text-align: center;
}

.contact-name strong{
  display: block;
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 4px;
}

.contact .actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact .button{
  min-width: 180px;
  margin-top: 0;
}

.contact-note{
  margin-top: 22px;
  font-size: .92rem;
  color: rgba(255,255,255,.68);
}

.process-box{
  margin-top: 40px;
  text-align: left;
}

.privacy-note{
  margin-top: 28px;
}

footer{
  padding-top: 34px;
  padding-bottom: 34px;
}

@media(max-width:640px){
  .section,
  .intro-inner,
  .workshops-inner,
  .about-inner,
  .contact-inner{
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero{
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .contact .actions{
    flex-direction: column;
    align-items: stretch;
  }

  .contact .button{
    width: 100%;
  }

  .process-box{
    margin-top: 34px;
  }
}

/* Hero-Buttons sauber ausrichten */
.hero .hero-actions{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.hero .hero-actions .button{
  min-width:190px;
  min-height:48px;
  padding:12px 20px;
  margin:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  line-height:1;
  text-align:center;
  white-space:nowrap;
}

.hero .hero-actions .button.secondary{
  background:transparent;
  border:2px solid #111;
  color:#111;
}

.hero .hero-actions .button.primary{
  border:2px solid #111;
}

@media(max-width:640px){
  .hero .hero-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .hero .hero-actions .button{
    width:100%;
    min-width:0;
  }
}

/* Header CTA entfernt / Navigation beruhigt */
nav ul{
  align-items:center;
}

/* Angebotskarte Supervision: im Stil von Workshops, ohne Überlappung */
.offers-refined .offer-card-featured.supervision-offer-clean{
  grid-column:1 / -1;
  display:block !important;
  background:#fffdf7;
  border:1px solid var(--line);
  border-left:6px solid var(--yellow);
  border-radius:28px;
  padding:30px !important;
  box-shadow:0 12px 34px rgba(0,0,0,.04);
}

.offers-refined .supervision-offer-clean h3{
  margin-bottom:12px;
}

.offers-refined .supervision-offer-clean .card-lead{
  margin:0 0 14px;
  font-weight:800;
  color:#111 !important;
}

.offers-refined .supervision-offer-clean p{
  max-width:860px;
  margin:0 0 14px;
  line-height:1.68;
  color:#444;
}

.offers-refined .supervision-offer-clean .text-link{
  display:inline-flex;
  margin-top:8px;
  width:max-content;
  text-decoration:none;
  font-weight:800;
  color:#111;
  border-bottom:3px solid var(--yellow);
  padding-bottom:4px;
}

/* Ablauf unter Kontakt: klare, kompakte Liste statt unruhiges Grid */
.process-box{
  margin-top:38px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  padding:26px;
  text-align:left;
}

.process-box h3{
  margin:0 0 10px;
  color:#fff;
}

.process-intro{
  margin:0 0 22px;
  color:rgba(255,255,255,.76);
}

.process-steps-clean{
  display:grid;
  gap:12px;
}

.process-step-clean{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.14);
}

.process-step-clean:first-child{
  border-top:0;
  padding-top:0;
}

.process-number-clean{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  font-weight:900;
  font-size:.84rem;
}

.process-step-body strong{
  display:block;
  color:#fff;
  margin-bottom:3px;
  font-size:.96rem;
}

.process-step-body p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.92rem;
  line-height:1.45;
}

@media(max-width:640px){
  .offers-refined .offer-card-featured.supervision-offer-clean{
    padding:22px !important;
    border-radius:22px;
  }

  .process-box{
    padding:20px;
    border-radius:20px;
  }

  .process-step-clean{
    grid-template-columns:38px 1fr;
    gap:12px;
  }
}

/* Final: Supervision sauber in den Seitenrhythmus integriert */
.supervision-integrated{
  background:var(--bg);
  padding:72px 22px;
}

.supervision-container{
  max-width:var(--max);
  margin:0 auto;
}

.supervision-integrated .supervision-box{
  max-width:860px;
  margin:0 auto;
  background:var(--white);
  border:1px solid var(--line);
  border-left:5px solid var(--yellow);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:0 12px 34px rgba(0,0,0,.04);
}

.supervision-integrated h2{
  font-size:clamp(2rem,5vw,3.8rem);
  text-transform:uppercase;
  font-weight:900;
  margin:0 0 18px;
}

.supervision-integrated .supervision-lead{
  font-weight:750;
  color:#111;
  margin:0 0 16px;
  line-height:1.6;
}

.supervision-integrated p{
  color:#444;
  line-height:1.7;
  margin:0;
}

.supervision-sub{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.supervision-sub h3{
  margin:0 0 8px;
  font-size:1.08rem;
  letter-spacing:.02em;
}

.supervision-sub p{
  font-size:.96rem;
  line-height:1.6;
}

#angebot + .supervision-integrated{
  padding-top:46px;
}

.supervision-integrated + #workshops,
.supervision-integrated + .workshops{
  padding-top:46px;
}

@media(max-width:640px){
  .supervision-integrated{
    padding:46px 18px;
  }

  .supervision-integrated .supervision-box{
    padding:24px;
    border-radius:22px;
  }

  #angebot + .supervision-integrated{
    padding-top:34px;
  }
}

/* Finales Logo-Set mit Homepage-Gelb */
.brand-logo{
  width:42px;
  height:auto;
  display:block;
  flex:0 0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
}

@media(max-width:700px){
  .brand-logo{
    width:38px;
  }
}


/* Aktive gelbe Linie im Header-Menü */
nav a{
  position:relative;
}

nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:2px;
  background:var(--yellow);
  border-radius:999px;
  opacity:.95;
}

nav a.active{
  color:#111;
}

@media(max-width:700px){
  nav a.active::after{
    bottom:-5px;
  }
}

/* Responsive Navigation: Desktop-Leiste, Mobile-Dropdown */
.menu-toggle{
  display:none;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.04em;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--white);
  color:#111;
}

@media(max-width:800px){
  .nav,
  header,
  .site-header{
    position:relative;
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }

  nav{
    display:none;
    position:absolute;
    top:64px;
    right:18px;
    z-index:50;
    min-width:210px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    box-shadow:0 18px 44px rgba(0,0,0,.10);
  }

  nav.open{
    display:block;
  }

  nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin:0;
    padding:0;
  }

  nav li{
    width:100%;
  }

  nav a{
    display:block;
    width:100%;
    padding:8px 4px;
  }

  nav a.active::after{
    left:4px;
    right:auto;
    width:34px;
    bottom:2px;
  }
}

/* Mobile-Menü Fix */
#menuToggle{
  display:none;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.04em;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--white);
  color:#111;
  position:relative;
  z-index:1001;
}

@media(max-width:800px){
  #menuToggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }

  #mainNav{
    display:none !important;
    position:absolute;
    top:72px;
    right:18px;
    z-index:1000;
    min-width:220px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    box-shadow:0 18px 44px rgba(0,0,0,.12);
  }

  #mainNav.is-open{
    display:block !important;
  }

  #mainNav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    margin:0;
    padding:0;
  }

  #mainNav li{
    width:100%;
  }

  #mainNav a{
    display:block;
    width:100%;
    padding:9px 4px;
  }

  #mainNav a.active::after{
    left:4px;
    right:auto;
    width:34px;
    bottom:2px;
  }
}

@media(min-width:801px){
  #mainNav{
    display:block;
  }
}

/* Zuverlässiges Mobile-Menü ohne JavaScript */
.mobile-menu{
  display:none;
}

@media(max-width:800px){
  header nav,
  .nav nav,
  nav{
    display:none !important;
  }

  .mobile-menu{
    display:block;
    margin-left:auto;
    position:relative;
    z-index:1000;
  }

  .mobile-menu summary{
    list-style:none;
    cursor:pointer;
    font-weight:800;
    letter-spacing:.04em;
    padding:8px 12px;
    border:1px solid var(--line);
    border-radius:999px;
    background:var(--white);
    color:#111;
    user-select:none;
  }

  .mobile-menu summary::-webkit-details-marker{
    display:none;
  }

  .mobile-menu[open] summary{
    background:var(--yellow);
    border-color:#111;
  }

  .mobile-menu-list{
    position:absolute;
    right:0;
    top:48px;
    min-width:220px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    box-shadow:0 18px 44px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .mobile-menu-list a{
    display:block;
    padding:10px 6px;
    text-decoration:none;
    color:#111;
    font-weight:700;
  }

  .mobile-menu-list a:active{
    color:#111;
  }
}

@media(min-width:801px){
  .mobile-menu{
    display:none !important;
  }
}

/* Finales mobiles Overlay-Menü */
.mobile-menu-button,
.mobile-menu-overlay{
  display:none;
}

@media(max-width:820px){
  header nav,
  .nav nav,
  nav{
    display:none !important;
  }

  .mobile-menu-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    cursor:pointer;
    border:1px solid var(--line);
    border-radius:999px;
    background:var(--white);
    color:#111;
    padding:8px 13px;
    font-weight:800;
    letter-spacing:.04em;
    position:relative;
    z-index:1002;
  }

  .mobile-menu-button.is-open{
    background:var(--yellow);
    border-color:#111;
  }

  .mobile-menu-overlay{
    display:block;
    position:fixed;
    inset:0;
    z-index:1001;
    background:rgba(246,241,229,.96);
    opacity:0;
    pointer-events:none;
    transform:translateY(-6px);
    transition:opacity .22s ease, transform .22s ease;
  }

  .mobile-menu-overlay.is-open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .mobile-menu-panel{
    max-width:460px;
    margin:84px 18px 0 auto;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:26px;
    padding:24px;
    box-shadow:0 22px 60px rgba(0,0,0,.12);
  }

  .mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:26px;
    color:#555;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-weight:900;
  }


  .mobile-menu-links{
    display:flex;
    flex-direction:column;
    gap:2px;
  }

  .mobile-menu-links a{
    display:block;
    padding:14px 0;
    color:#111;
    text-decoration:none;
    font-size:1.18rem;
    line-height:1.2;
    font-weight:800;
    border-bottom:1px solid var(--line);
  }

  .mobile-menu-links a:last-child{
    border-bottom:0;
  }

  .mobile-menu-links a:active{
    opacity:.65;
  }

  .mobile-menu-accent{
    margin-top:28px;
    width:86px;
    height:4px;
    background:var(--yellow);
    border-radius:999px;
  }

  body.menu-open{
    overflow:hidden;
  }
}

@media(min-width:821px){
  .mobile-menu-overlay,
  .mobile-menu-button{
    display:none !important;
  }
}

/* Mobile Navigation schlanker */
@media(max-width:820px){
  .mobile-menu-button{
    padding:7px 11px;
    font-size:.82rem;
    letter-spacing:.03em;
  }

  .mobile-menu-overlay{
    background:rgba(246,241,229,.88);
  }

  .mobile-menu-panel{
    max-width:310px;
    margin:76px 14px 0 auto;
    border-radius:20px;
    padding:18px;
    box-shadow:0 14px 38px rgba(0,0,0,.10);
  }

  .mobile-menu-top{
    margin-bottom:16px;
    font-size:.68rem;
    letter-spacing:.12em;
  }


  .mobile-menu-links a{
    padding:10px 0;
    font-size:1.02rem;
    font-weight:760;
    line-height:1.15;
  }

  .mobile-menu-accent{
    margin-top:18px;
    width:62px;
    height:3px;
  }
}
/* Desktop-Menü: gelber Strich bei Hover und aktivem Scrollbereich */
@media(min-width:821px){
  nav a{
    position:relative;
  }

  nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-7px;
    height:2px;
    background:var(--yellow);
    border-radius:999px;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .22s ease;
  }

  nav a:hover::after,
  nav a.active::after{
    transform:scaleX(1);
  }
}

/* Premium Desktop-Menü: gleitender gelber Strich */
@media(min-width:821px){
  nav{
    position:relative;
  }

  nav a::after{
    display:none !important;
  }

  .nav-indicator{
    position:absolute;
    height:2px;
    background:var(--yellow);
    border-radius:999px;
    bottom:-8px;
    left:0;
    width:0;
    opacity:0;
    transform:translateX(0);
    transition:
      transform .28s ease,
      width .28s ease,
      opacity .18s ease;
    pointer-events:none;
  }

  nav.has-indicator .nav-indicator{
    opacity:1;
  }
}

@media(max-width:820px){
  .nav-indicator{
    display:none !important;
  }
}

/* Desktop-Navigation: robuster gelber Strich bei Hover und Scrollposition */
@media(min-width:821px){
  nav a{
    position:relative;
  }

  nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-7px;
    height:2px;
    background:var(--yellow);
    border-radius:999px;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .22s ease;
    display:block !important;
  }

  nav a:hover::after,
  nav a.active::after{
    transform:scaleX(1);
  }
}

/* FINAL: Desktop Navigation gelber Strich sicher sichtbar */
@media (min-width: 821px){
  nav.desktop-nav a[href^="#"]{
    position: relative !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid transparent !important;
    text-decoration: none !important;
  }

  nav.desktop-nav a[href^="#"]:hover,
  nav.desktop-nav a[href^="#"].is-current{
    border-bottom-color: var(--yellow) !important;
  }

  nav.desktop-nav a[href^="#"]::after{
    content: none !important;
    display: none !important;
  }
}

/* Fix: Header/Menu darf selbst nicht scrollen */
header,
.nav,
nav.desktop-nav,
nav.desktop-nav ul{
  overflow:visible !important;
  max-height:none !important;
}

nav.desktop-nav{
  scrollbar-width:none;
}

nav.desktop-nav::-webkit-scrollbar{
  display:none;
}

@media(min-width:821px){
  nav.desktop-nav{
    height:auto !important;
    overflow:visible !important;
  }

  nav.desktop-nav ul{
    height:auto !important;
    overflow:visible !important;
    flex-wrap:wrap;
  }
}

@media(max-width:820px){
  header,
  .nav{
    overflow:visible !important;
  }
}


/* Legal pages */
.legal-page .legal-inner{
  max-width:var(--max);
  margin:auto;
  padding:72px 22px;
}
.legal-page .legal-inner h1{
  font-size:clamp(2.4rem,6vw,4.2rem);
  margin-bottom:24px;
}
.legal-page .legal-inner h2{
  font-size:clamp(1.35rem,3vw,2.25rem);
  line-height:1.14;
  letter-spacing:.035em;
  margin-bottom:18px;
}
.legal-page .legal-box{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  margin-bottom:24px;
}
.legal-page .legal-box p{
  max-width:760px;
}
.legal-page a{
  text-underline-offset:3px;
}
@media(max-width:640px){
  .legal-page .legal-inner{padding:44px 18px;}
  .legal-page .legal-box{padding:20px;border-radius:18px;}
  .legal-page .legal-inner h2{letter-spacing:.02em;}
}

.hero-visual picture,
.about-photo-wrap picture{
  display:contents;
}


/* Footer legal links */
footer a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:6px 8px;
  border-radius:999px;
  text-underline-offset:4px;
}
footer a:hover,
footer a:focus-visible{
  background:#fff9da;
  color:#111;
  outline:none;
}
@media(max-width:640px){
  footer a{
    margin-left:0;
    margin-right:8px;
    padding-left:0;
  }
}

/* Mobile first-screen focus */
.hero-copy-mobile,
.meta-mobile,
.mobile-next-step{
  display:none;
}

@media(max-width:640px){
  .hero{
    padding-top:28px;
    padding-bottom:20px;
    gap:18px;
  }

  .eyebrow{
    margin-bottom:14px;
    font-size:.7rem;
    letter-spacing:.09em;
  }

  h1{
    font-size:clamp(1.9rem,9vw,2.55rem);
    line-height:1.04;
    letter-spacing:.025em;
  }

  .hero-copy-desktop,
  .meta-desktop{
    display:none;
  }

  .hero-copy-mobile,
  .meta-mobile,
  .mobile-next-step{
    display:block;
  }

  .hero .hero-copy-mobile{
    margin-top:18px;
    padding:0;
    max-width:34rem;
    font-size:1rem;
    line-height:1.52;
    text-align:left;
  }

  .hero .meta-line{
    margin-top:14px;
    font-size:.83rem;
    line-height:1.45;
    color:#555;
  }

  .hero .hero-actions{
    margin-top:18px;
    gap:10px;
  }

  .hero .mobile-next-step{
    margin:28px 0 0;
    padding:14px 16px;
    border-left:4px solid var(--yellow);
    border-radius:16px;
    background:#fff9da;
    color:#333;
    font-size:.94rem;
    line-height:1.45;
  }

  .hero-visual{
    min-height:190px;
    margin-top:2px;
  }

  .yellow-card{
    height:170px;
    width:86%;
    border-radius:22px;
  }

  .hero-portrait{
    height:168px;
    width:72%;
    max-width:300px;
    border-radius:22px;
    object-position:50% 28%;
  }

  .quick-grid{
    padding-top:10px;
  }

  .quick-card h3{
    font-size:1.08rem;
  }

  .quick-card p{
    font-size:.96rem;
    line-height:1.5;
  }
}

/* Full portrait framing */
.hero-portrait,
.about-photo{
  object-fit:contain;
  object-position:50% 50%;
  background:#f6f1e5;
}

.hero-portrait{
  width:min(390px,92%);
  height:440px;
}

.about-photo{
  object-position:50% 50%;
}

@media(max-width:920px){
  .hero-portrait{
    width:min(420px,86%);
    height:340px;
  }
}

@media(max-width:640px){
  .hero-visual{
    min-height:245px;
  }

  .yellow-card{
    height:218px;
    width:88%;
  }

  .hero-portrait{
    width:78%;
    max-width:300px;
    height:218px;
    object-fit:contain;
    object-position:50% 50%;
  }

  .about-photo{
    object-fit:contain;
    object-position:50% 50%;
  }
}

/* Filled portrait framing without white side borders */
.hero-portrait,
.about-photo{
  object-fit:cover;
  object-position:50% 50%;
}

@media(max-width:640px){
  .hero-portrait,
  .about-photo{
    object-fit:cover;
    object-position:50% 50%;
  }
}

/* Mobile portrait aspect correction */
@media(max-width:640px){
  .hero-visual{
    min-height:310px;
  }

  .yellow-card{
    width:min(255px,72%);
    height:300px;
  }

  .hero-portrait{
    width:min(240px,68%);
    height:300px;
    max-width:240px;
    object-fit:cover;
    object-position:50% 45%;
  }

  .about-photo-wrap{
    min-height:330px;
  }

  .about-photo-bg{
    width:min(260px,78%);
    height:320px;
    inset:auto auto 0 50%;
    transform:translateX(-44%) rotate(3deg);
    border-radius:26px;
  }

  .about-photo{
    width:min(260px,78%);
    height:320px;
    left:50%;
    right:auto;
    transform:translateX(-50%);
    inset:auto auto 0 50%;
    object-fit:cover;
    object-position:50% 45%;
  }
}

/* Desktop about portrait full hair framing */
@media(min-width:921px){
  .about-photo-wrap{
    min-height:470px;
  }

  .about-photo-bg{
    width:360px;
    height:446px;
    inset:18px auto auto 46%;
    transform:translateX(-47%) rotate(3deg);
    border-radius:32px;
  }

  .about-photo{
    width:340px;
    height:440px;
    inset:0 auto auto 46%;
    transform:translateX(-50%);
    object-fit:cover;
    object-position:50% 42%;
    border-radius:32px;
  }
}

/* Desktop hero tighter top spacing */
@media(min-width:921px){
  .hero{
    padding-top:42px;
  }
}

/* Tablet portrait framing */
@media(min-width:641px) and (max-width:920px){
  .hero-visual{
    min-height:420px;
  }

  .yellow-card{
    width:min(340px,72%);
    height:400px;
    border-radius:30px;
  }

  .hero-portrait{
    width:min(320px,68%);
    height:400px;
    max-width:320px;
    object-fit:cover;
    object-position:50% 42%;
    border-radius:30px;
  }
}

/* Tablet about portrait framing */
@media(min-width:641px) and (max-width:920px){
  .about-photo-wrap{
    min-height:430px;
    display:grid;
    place-items:center;
  }

  .about-photo-bg{
    width:min(330px,72%);
    height:400px;
    inset:auto auto auto 50%;
    transform:translateX(-47%) rotate(3deg);
    border-radius:30px;
  }

  .about-photo{
    width:min(320px,68%);
    height:400px;
    max-width:320px;
    inset:auto auto auto 50%;
    transform:translateX(-50%);
    object-fit:cover;
    object-position:50% 42%;
    border-radius:30px;
  }
}

/* Tablet about portrait stable positioning */
@media(min-width:641px) and (max-width:920px){
  .about-photo-wrap{
    min-height:430px;
    position:relative;
  }

  .about-photo-bg{
    position:absolute;
    top:18px;
    left:50%;
    right:auto;
    bottom:auto;
    width:min(330px,72%);
    height:400px;
    transform:translateX(-47%) rotate(3deg);
    border-radius:30px;
  }

  .about-photo{
    position:absolute;
    top:0;
    left:50%;
    right:auto;
    bottom:auto;
    width:min(320px,68%);
    height:400px;
    max-width:320px;
    transform:translateX(-50%);
    object-fit:cover;
    object-position:50% 42%;
    border-radius:30px;
  }
}

/* Tablet hero text alignment */
@media(min-width:641px) and (max-width:920px){
  .hero > div:first-child{
    width:100%;
    max-width:760px;
    margin:0;
    justify-self:start;
  }

  .hero p{
    margin:24px 0 0;
    max-width:760px;
    text-align:left;
  }

  .hero .meta-line{
    max-width:760px;
    text-align:left;
  }

  .hero .hero-actions{
    justify-content:flex-start;
  }
}

/* Tablet hero tighter top spacing */
@media(min-width:641px) and (max-width:920px){
  .hero{
    padding-top:34px;
  }
}
