:root{
  --bg:#f7f5ef;
  --ink:#0d0d0d;
  --muted:#69645c;
  --line:#d9d4ca;
  --accent:#ff4b1f;
  --dark:#0d0d0d;
  --soft:#eee9df;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
nav{
  position:fixed;
  top:0;left:0;width:100%;
  z-index:20;
  padding:28px 5vw;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  background:rgba(247,245,239,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(217,212,202,.6);
}
.logo{
  font-size:13px;
  letter-spacing:.28em;
  text-transform:uppercase;
  line-height:1.8;
  font-weight:700;
}
.logo span{display:block;color:var(--muted);font-weight:400}
.menu{
  display:flex;
  gap:34px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
}
.section{
  min-height:100vh;
  padding:130px 5vw 80px;
  border-bottom:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.section.compact{min-height:auto;padding:110px 5vw}
.kicker{
  color:var(--accent);
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:36px;
}
h1,h2,h3{
  font-family:Georgia, 'Times New Roman', serif;
  font-weight:400;
  letter-spacing:-.07em;
  line-height:.88;
}
h1{
  font-size:clamp(64px,12vw,172px);
  max-width:1400px;
}
h2{font-size:clamp(58px,9vw,142px)}
h3{font-size:clamp(42px,5vw,82px)}
.dot{color:var(--accent)}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:end;
  margin-top:70px;
}
.grid.top{align-items:start}
.lead{
  font-size:clamp(24px,3.1vw,46px);
  line-height:1.08;
  letter-spacing:-.045em;
  max-width:860px;
}
.small{
  color:var(--muted);
  max-width:620px;
  font-size:18px;
  line-height:1.55;
}
.small strong{color:var(--ink)}
.cta{
  display:inline-flex;
  align-items:center;
  gap:18px;
  margin-top:36px;
  padding:18px 26px;
  background:var(--accent);
  color:white;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:700;
  transition:.2s ease;
}
.cta:hover{transform:translateY(-2px);filter:brightness(.96)}
.cta.secondary{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--ink);
  margin-left:14px;
}
.arrow-line{
  width:100%;
  height:72px;
  position:relative;
  margin-top:70px;
}
.arrow-line:before{
  content:"";
  position:absolute;
  top:36px;
  left:0;
  width:100%;
  height:2px;
  background:var(--ink);
}
.arrow-line:after{
  content:"";
  position:absolute;
  right:0;
  top:19px;
  width:34px;
  height:34px;
  border-top:2px solid var(--ink);
  border-right:2px solid var(--ink);
  transform:rotate(45deg);
}
.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-top:80px;
}
.pillar-card{
  min-height:360px;
  padding:32px;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.pillar-card:last-child{border-right:none}
.pillar-card span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:700;
}
.pillar-card h3{
  margin:32px 0 24px;
  font-size:clamp(46px,5vw,84px);
}
.pillar-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}
.statement{
  background:var(--dark);
  color:var(--bg);
  min-height:auto;
}
.statement .small{color:#aaa}
.statement .small strong{color:var(--bg)}
.challenges{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #333;
  margin-top:80px;
}
.challenge{
  min-height:280px;
  padding:32px;
  border-right:1px solid #333;
}
.challenge:last-child{border-right:none}
.challenge span{
  color:var(--accent);
  font-family:Georgia,serif;
  font-size:54px;
}
.challenge h3{
  margin-top:30px;
  color:var(--bg);
  font-family:Arial, Helvetica, sans-serif;
  font-size:18px;
  line-height:1.25;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}
.challenge p{
  color:#aaa;
  margin-top:24px;
  font-size:17px;
  line-height:1.5;
}
.challenge ul{
  list-style:none;
  margin-top:28px;
  border-top:1px solid #333;
}
.challenge li{
  padding:14px 0;
  border-bottom:1px solid #333;
  color:#aaa;
  font-size:15px;
  line-height:1.4;
}
.offers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  margin-top:80px;
}
.offer{
  min-height:560px;
  padding:32px;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.offer:last-child{border-right:none}
.offer-top span{
  color:var(--accent);
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:700;
}
.offer h3{
  margin:34px 0 28px;
  font-size:clamp(38px,4.2vw,68px);
}
.offer p{
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}
.offer ul{
  list-style:none;
  margin-top:32px;
  border-top:1px solid var(--line);
}
.offer li{
  padding:15px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:15px;
  line-height:1.35;
}
.offer .result{
  color:var(--ink);
  font-weight:700;
  margin-top:28px;
}
.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #333;
  margin-top:80px;
}
.process-step{
  min-height:250px;
  border-right:1px solid #333;
  padding:32px;
}
.process-step:last-child{border-right:none}
.process-step span{
  color:var(--accent);
  font-family:Georgia,serif;
  font-size:54px;
}
.process-step p{
  color:#aaa;
  margin-top:30px;
  font-size:17px;
  line-height:1.5;
}
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
}
.about-text{
  font-size:clamp(26px,3.2vw,46px);
  line-height:1.1;
  letter-spacing:-.045em;
}
.about-text .quiet{
  display:block;
  margin-top:30px;
  color:var(--muted);
  font-size:19px;
  line-height:1.55;
  letter-spacing:0;
}
.final{
  min-height:100vh;
  background:var(--dark);
  color:var(--bg);
  padding:120px 5vw;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.final h2{max-width:1100px}
.words{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  color:#aaa;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:30px;
}
.words span{color:var(--accent)}
.final .cta.secondary{color:var(--bg);border-color:var(--bg)}

.contact-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:7vw;
  align-items:start;
  margin-top:80px;
  border-top:1px solid #333;
  padding-top:54px;
}
.contact-note{
  color:#aaa;
  font-size:18px;
  line-height:1.55;
  max-width:520px;
}
.contact-note strong{color:var(--bg)}
.contact-note ul{
  list-style:none;
  margin-top:32px;
  border-top:1px solid #333;
}
.contact-note li{
  padding:15px 0;
  border-bottom:1px solid #333;
}
.contact-form{
  display:grid;
  gap:18px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.field label{
  color:#aaa;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:700;
}
.field input,
.field textarea,
.field select{
  width:100%;
  background:transparent;
  color:var(--bg);
  border:1px solid #444;
  font:inherit;
  font-size:16px;
  outline:none;
  box-sizing:border-box;
}
.field input,
.field select{
  height:56px;
  min-height:56px;
  padding:0 16px;
  line-height:1.2;
}
.field select{
  padding-right:44px;
}
.field textarea{min-height:140px;resize:vertical;line-height:1.45;padding:17px 16px}
.field input:focus,
.field textarea:focus,
.field select:focus{border-color:var(--accent)}
.field select option{color:var(--ink)}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-help{
  color:#888;
  font-size:13px;
  line-height:1.45;
}
.form-button{
  border:none;
  cursor:pointer;
  width:max-content;
}

@media(max-width:900px){
  nav{padding:22px 5vw}
  .menu{display:none}
  .section{padding-top:120px}
  .grid,.about,.contact-wrap,.form-row{grid-template-columns:1fr}
  .pillars,.offers,.process,.challenges{grid-template-columns:1fr}
  .pillar-card,.offer,.process-step,.challenge{border-right:none;border-bottom:1px solid var(--line)}
  .statement .challenge,.statement .process-step{border-bottom:1px solid #333}
  .cta.secondary{margin-left:0;display:flex;width:max-content}
}

.footer-legal{
  margin-top:80px;
  padding-top:24px;
  border-top:1px solid #333;
  display:flex;
  justify-content:flex-end;
  gap:28px;
}
.footer-legal a{
  color:#888;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  transition:color .2s ease;
}
.footer-legal a:hover{
  color:var(--bg);
}



/* Legal pages */
.legal-page{
  min-height:100vh;
  padding:160px 5vw 100px;
  border-bottom:1px solid var(--line);
}
.legal-wrap{
  max-width:920px;
}
.legal-content{
  max-width:920px;
  margin-top:54px;
}
.legal-content h2{
  font-family:Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.35;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  margin:46px 0 18px;
}
.legal-content h2:first-child{margin-top:0}
.legal-content h3{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  font-size:18px;
  line-height:1.4;
  letter-spacing:.02em;
  font-weight:700;
  margin:34px 0 12px;
}
.legal-content h4{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  font-size:16px;
  line-height:1.45;
  letter-spacing:.01em;
  font-weight:700;
  margin:24px 0 10px;
}
.legal-content p,
.legal-content li{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.legal-content p{margin-bottom:20px}
.legal-content ul{
  list-style:none;
  margin:18px 0 26px;
  border-top:1px solid var(--line);
}
.legal-content li{
  padding:13px 0;
  border-bottom:1px solid var(--line);
}
.legal-content strong{color:var(--ink)}
.legal-meta{
  max-width:920px;
}
.legal-meta p{
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  margin-top:34px;
}
.legal-footer{
  min-height:auto;
  padding:70px 5vw 50px;
}
.legal-footer .footer-legal{margin-top:46px}
@media(max-width:900px){
  .legal-page{padding-top:140px}
  .legal-content p,.legal-content li{font-size:16px}
}

/* Bootstrap-oriented responsive refinements
   Desktop defaults above intentionally stay untouched so the original full-width
   layout, spacing and line breaks remain stable. */
:root{
  --page-gutter:5vw;
  --mobile-gutter:clamp(20px, 6vw, 34px);
}

html, body{max-width:100%;}
body{
  min-width:0;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

h1,h2,h3,.lead,.about-text,.logo,.menu,.cta,.words{
  hyphens:none;
  -webkit-hyphens:none;
  overflow-wrap:normal;
  word-break:normal;
}

p,li,a,label,input,textarea,select,button{max-width:100%;}

.section,.final,.legal-page,.legal-footer,nav{
  padding-left:var(--page-gutter);
  padding-right:var(--page-gutter);
}

.cta{white-space:normal;text-align:left;max-width:100%;}
.offer,.pillar-card,.challenge,.process-step{min-width:0;}

@media (max-width: 1199.98px){
  .menu{gap:22px;letter-spacing:.18em;}
  .section{padding-top:120px;padding-bottom:72px;}
  .section.compact{padding-top:96px;padding-bottom:72px;}
  h1{font-size:clamp(56px, 11vw, 128px);}
  h2{font-size:clamp(50px, 8.6vw, 106px);}
  h3{font-size:clamp(36px, 5vw, 64px);}
  .offers,.pillars,.challenges{margin-top:64px;}
  .offer,.pillar-card,.challenge,.process-step{padding:30px;}
}

/* Bootstrap lg breakpoint */
@media (max-width: 991.98px){
  nav{padding-top:22px;padding-bottom:22px;align-items:center;}
  .menu{display:none;}
  .section,.final,.legal-page,.legal-footer,nav{
    padding-left:var(--mobile-gutter);
    padding-right:var(--mobile-gutter);
  }
  .section{min-height:auto;padding-top:118px;padding-bottom:78px;}
  header.section{min-height:100svh;}
  .section.compact{padding-top:86px;padding-bottom:76px;}
  .grid,.about,.contact-wrap,.form-row{grid-template-columns:1fr;gap:34px;}
  .grid{margin-top:46px;align-items:start;}
  .grid.top{gap:38px;}
  .pillars,.offers,.process,.challenges{grid-template-columns:1fr;margin-top:54px;}
  .pillar-card,.offer,.process-step,.challenge{
    border-right:none;
    border-bottom:1px solid var(--line);
    min-height:auto;
  }
  .pillar-card:last-child,.offer:last-child,.process-step:last-child,.challenge:last-child{border-bottom:none;}
  .statement .challenge,.statement .process-step{border-bottom:1px solid #333;}
  .statement .challenge:last-child,.statement .process-step:last-child{border-bottom:none;}
  h1{font-size:clamp(48px, 12vw, 90px);line-height:.92;letter-spacing:-.06em;}
  h2{font-size:clamp(42px, 10.5vw, 80px);line-height:.94;letter-spacing:-.06em;}
  h3,.pillar-card h3,.offer h3{font-size:clamp(34px, 8.6vw, 56px);line-height:.98;letter-spacing:-.055em;}
  .lead{font-size:clamp(24px, 5.8vw, 36px);line-height:1.12;}
  .small,.offer p,.pillar-card p,.contact-note,.legal-meta p{font-size:17px;line-height:1.55;}
  .cta.secondary{margin-left:0;}
  .cta + .cta{margin-top:14px;}
  .arrow-line{margin-top:48px;height:52px;}
  .arrow-line:before{top:26px;}
  .arrow-line:after{top:11px;width:28px;height:28px;}
  .contact-wrap{margin-top:52px;padding-top:40px;}
  .final{min-height:auto;padding-top:92px;padding-bottom:56px;}
  .footer-legal{justify-content:flex-start;flex-wrap:wrap;gap:18px 26px;}
}

/* Bootstrap md breakpoint */
@media (max-width: 767.98px){
  .kicker{font-size:11px;letter-spacing:.22em;margin-bottom:26px;}
  .logo{font-size:12px;letter-spacing:.22em;}
  .section{padding-top:108px;padding-bottom:68px;}
  .section.compact{padding-top:74px;padding-bottom:64px;}
  h1{font-size:clamp(42px, 13.2vw, 68px);line-height:.96;}
  h2{font-size:clamp(38px, 12vw, 62px);line-height:.98;}
  h3,.pillar-card h3,.offer h3{font-size:clamp(31px, 9.8vw, 48px);line-height:1.02;}
  .lead{font-size:clamp(22px, 6.4vw, 31px);letter-spacing:-.035em;}
  .about-text{font-size:clamp(24px, 6.6vw, 34px);line-height:1.14;letter-spacing:-.035em;}
  .about-text .quiet{font-size:17px;}
  .pillars,.offers,.process,.challenges{margin-top:42px;}
  .pillar-card,.offer,.challenge,.process-step{padding:26px;}
  .offer .cta{width:100%;justify-content:center;text-align:center;}
  .cta{padding:16px 20px;font-size:11px;letter-spacing:.16em;}
  .words{gap:12px 18px;letter-spacing:.16em;line-height:1.8;}
  .footer-legal{margin-top:54px;}
  .legal-page{padding-top:126px;padding-bottom:70px;}
  .legal-content{margin-top:38px;}
}

/* Bootstrap sm / common phone widths */
@media (max-width: 575.98px){
  .section,.final,.legal-page,.legal-footer,nav{
    padding-left:var(--mobile-gutter);
    padding-right:var(--mobile-gutter);
  }
  h1{font-size:clamp(38px, 12vw, 56px);line-height:1;letter-spacing:-.052em;}
  h2{font-size:clamp(34px, 10.8vw, 52px);line-height:1.02;letter-spacing:-.052em;}
  h3,.pillar-card h3,.offer h3{font-size:clamp(29px, 8.8vw, 42px);line-height:1.06;letter-spacing:-.045em;}
  .lead{font-size:clamp(21px, 6.2vw, 28px);line-height:1.18;}
  .small,.offer p,.pillar-card p,.contact-note,.process-step p,.legal-content p,.legal-content li{font-size:16px;}
  .challenge li,.offer li{font-size:15px;}
  .grid{margin-top:38px;gap:30px;}
  .cta{display:flex;width:100%;justify-content:center;text-align:center;}
  .cta.secondary{width:100%;}
  .form-button{width:100%;justify-content:center;}
  .field input,.field textarea,.field select{font-size:16px;}
  .field input,.field select{height:52px;min-height:52px;padding:0 14px;}
  .field select{padding-right:42px;}
  .field textarea{padding:15px 14px;}
  .footer-legal a{font-size:10px;letter-spacing:.14em;}
}

@media (max-width: 359.98px){
  :root{--mobile-gutter:18px;}
  h1{font-size:36px;letter-spacing:-.045em;}
  h2{font-size:32px;letter-spacing:-.045em;}
  h3,.pillar-card h3,.offer h3{font-size:28px;letter-spacing:-.035em;}
  .lead{font-size:20px;}
  .cta{padding-left:14px;padding-right:14px;letter-spacing:.12em;}
}

/* Card/grid alignment: grids align to the global page gutter; cards keep their inner padding on desktop and responsive views. */


/* Global card alignment fix
   All card-like areas start at the same distance from the left viewport edge.
   The outer grid stays flush with the page gutter; every card keeps identical inner padding. */
.pillars,
.offers,
.challenges,
.process{
  padding-left:0;
  padding-right:0;
}

.pillar-card,
.offer,
.challenge,
.process-step{
  padding-left:32px;
  padding-right:32px;
}

@media (max-width: 1199.98px){
  .pillar-card,
  .offer,
  .challenge,
  .process-step{
    padding-left:30px;
    padding-right:30px;
  }
}

@media (max-width: 767.98px){
  .pillar-card,
  .offer,
  .challenge,
  .process-step{
    padding-left:26px;
    padding-right:26px;
  }
}

/* Alignment fix: the content in the lower card/grid sections now starts
   flush with the upper section content, both on desktop and responsive layouts. */
.pillars > .pillar-card:first-child,
.offers > .offer:first-child,
.challenges > .challenge:first-child,
.process > .process-step:first-child{
  padding-left:0;
}

@media (max-width: 991.98px){
  .pillars > .pillar-card,
  .offers > .offer,
  .challenges > .challenge,
  .process > .process-step{
    padding-left:0;
  }
}

/* Mobile navigation */
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid rgba(13,13,13,.18);
  background:transparent;
  color:var(--ink);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  position:relative;
  z-index:60;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:currentColor;
  transition:transform .2s ease, opacity .2s ease;
}
body.menu-open{overflow:hidden;}

@media (max-width: 991.98px){
  .nav-toggle{display:flex;}
  nav .menu{
    display:flex !important;
    position:fixed;
    inset:0;
    min-height:100svh;
    padding:118px var(--mobile-gutter) 38px;
    background:var(--dark);
    color:var(--bg);
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:22px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-10px);
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index:45;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:clamp(34px, 10vw, 58px);
    line-height:1;
    letter-spacing:-.055em;
    text-transform:none;
    font-weight:400;
  }
  nav .menu a{
    display:block;
    width:100%;
    padding:6px 0 14px;
    border-bottom:1px solid #333;
  }
  nav .menu a:last-child{
    margin-top:18px;
    color:var(--accent);
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    letter-spacing:.22em;
    line-height:1.4;
    text-transform:uppercase;
    font-weight:700;
  }
  nav.nav-open .menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
  nav.nav-open .logo,
  nav.nav-open .nav-toggle{color:var(--bg);}
  nav.nav-open .logo span{color:#aaa;}
  nav.nav-open .nav-toggle{border-color:#333;}
  nav.nav-open .nav-toggle span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  nav.nav-open .nav-toggle span:nth-child(2){opacity:0;}
  nav.nav-open .nav-toggle span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
}

/* Tablet fix: the About section needs to stack before the phone breakpoint.
   iPad/tablet landscape widths were still using the two-column desktop layout,
   which pushed the biography text outside the visible viewport. */
@media (max-width: 1199.98px){
  #about .about{
    grid-template-columns:1fr;
    gap:42px;
    max-width:100%;
  }
  #about h2{
    max-width:980px;
  }
  #about .about-text{
    max-width:820px;
    font-size:clamp(28px, 4.2vw, 44px);
  }
}

/* Mobile hero spacing fix: avoid vertically centering the intro on small screens.
   This keeps the distance to the fixed navigation and to the following section compact. */
@media (max-width: 767.98px){
  header.section#willkommen{
    min-height:auto;
    justify-content:flex-start;
    padding-top:104px;
    padding-bottom:54px;
  }
  #willkommen .grid{
    margin-top:34px;
  }
  #willkommen .arrow-line{
    margin-top:40px;
  }
}

@media (max-width: 575.98px){
  header.section#willkommen{
    padding-top:96px;
    padding-bottom:48px;
  }
  #willkommen .grid{
    margin-top:30px;
  }
  #willkommen .arrow-line{
    margin-top:34px;
  }
}

/* iPad Pro / large tablet fix: the About copy was still using the desktop
   two-column layout at 13-inch tablet widths (e.g. 1366px landscape), so the
   long biography lines were clipped on the right. Stack this section earlier
   and keep the text within the viewport. */
@media (max-width: 1399.98px){
  #about .about{
    grid-template-columns:1fr;
    gap:42px;
    max-width:100%;
  }
  #about h2{
    max-width:980px;
  }
  #about .about-text{
    max-width:900px;
    font-size:clamp(28px, 3.6vw, 44px);
    overflow-wrap:break-word;
  }
}

/* Kontaktformular: SMTP-Status, Datenschutz und Honeypot */
.form-message {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid currentColor;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message.success {
  opacity: 0.95;
}

.form-message.error {
  opacity: 0.95;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 6px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.privacy-check input {
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Einheitliche Link- und Hover-Zustände */
.menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:24px;
  transition:color .2s ease;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.menu a:not(.nav-linkedin):hover,
.menu a:not(.nav-linkedin):focus-visible{color:var(--accent)}
.menu a:not(.nav-linkedin):hover::after,
.menu a:not(.nav-linkedin):focus-visible::after{transform:scaleX(1)}
.menu a.nav-linkedin::after{display:none}
.nav-linkedin img{
  display:block;
  width:22px;
  height:22px;
  object-fit:contain;
}
.about-text .quiet a,
.legal-content a,
.privacy-notice a{
  color:inherit;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:.18em;
  transition:color .2s ease;
}
.about-text .quiet a:hover,
.about-text .quiet a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible,
.privacy-notice a:hover,
.privacy-notice a:focus-visible{
  color:var(--accent);
}
.final .privacy-notice a:hover,
.final .privacy-notice a:focus-visible,
.final .footer-legal a:hover,
.final .footer-legal a:focus-visible{
  color:var(--bg);
}
.privacy-notice{
  color:#aaa;
  font-size:.88rem;
  line-height:1.55;
  margin:18px 0 6px;
}
.form-message.success{
  border:0;
  padding:0;
  margin:0;
  color:var(--bg);
  font-size:clamp(22px,3vw,34px);
  line-height:1.2;
  letter-spacing:-.035em;
}
.form-message.success strong{
  display:block;
  font-family:Georgia, 'Times New Roman', serif;
  font-weight:400;
  color:var(--accent);
  margin-bottom:14px;
}
.form-message.success span{
  display:block;
  max-width:560px;
}
.form-message.error{
  border-color:var(--accent);
  color:var(--bg);
}
.form-message.error strong{
  display:block;
  color:var(--accent);
  margin-bottom:6px;
}

@media(max-width:991px){
  .menu a{width:max-content;min-height:34px;}
  .menu a::after{display:none;}
  .menu a:hover,
  .menu a:focus-visible{color:inherit;}
  .nav-linkedin img{width:24px;height:24px;}
}

/* Über mich: Platzhalterbild */
.about-media{
  margin-top:46px;
  width:min(100%, 520px);
  aspect-ratio:9/11;
  background:var(--soft);
  overflow:hidden;
  border:1px solid var(--line);
}
.about-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.nav-linkedin picture{display:block;}

@media (max-width: 1399.98px){
  #about .about-media{width:min(100%, 460px);}
}

@media (max-width: 767.98px){
  .about-media{margin-top:34px;}
}


/* About layout override:
   Bild ohne Rahmen/Hintergrund, Bild und rechter Text starten exakt auf gleicher Höhe. */
#about .about{
  align-items:start;
}

#about .about-media{
  background:transparent;
  border:0;
  overflow:visible;
}

#about .about-media img{
  height:auto;
  object-fit:contain;
}

/* Desktop: linke Inhalte und rechter Text werden in gemeinsame Grid-Zeilen gelegt.
   Dadurch beginnt der Text exakt auf Höhe der Bildoberkante. */
@media (min-width: 1400px){
  #about .about{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto auto;
    column-gap:8vw;
    row-gap:1.15em;
  }

  #about .about > div{
    display:contents;
  }

  #about .kicker{
    grid-column:1;
    grid-row:1;
    margin-bottom:0;
  }

  #about h2{
    grid-column:1;
    grid-row:2;
  }

  #about .about-media{
    grid-column:1;
    grid-row:3;
    margin-top:0;
    width:min(100%, 520px);
    aspect-ratio:auto;
  }

  #about .about-text{
    grid-column:2;
    grid-row:3;
    align-self:start;
    margin-top:0;
    padding-top:0;
  }
}

/* Responsive: einspaltig, Bild kleiner und vollständig sichtbar,
   Text darunter mit normalem Abstand. */
@media (max-width: 1399.98px){
  #about .about{
    grid-template-columns:1fr;
    gap:32px;
    max-width:100%;
  }

  #about .about > div{
    display:block;
  }

  #about .about-media{
    margin-top:1.15em;
    width:min(100%, 460px);
    aspect-ratio:auto;
  }

  #about .about-text{
    margin-top:0;
    padding-top:0;
    max-width:900px;
  }
}

@media (max-width: 767.98px){
  #about .about{
    gap:26px;
  }

  #about .about-media{
    margin-top:1em;
    width:min(100%, 340px);
  }
}


/* Legal mobile headline fixes */
.legal-mobile-break{display:none;}

@media (max-width: 575.98px){
  .legal-meta h1{
    font-size:clamp(32px, 9.4vw, 48px);
    line-height:1.04;
    letter-spacing:-.045em;
    max-width:100%;
  }

  .legal-content h2{
    overflow-wrap:normal;
    word-break:normal;
  }

  .legal-mobile-break{display:block;}
}
