/* contact.css — Kontaktseite (Vorlagen-Layout) */

:root{
  --bg: #f3f5f6;
  --text: #0f141a;
  --muted: rgba(15,20,26,.62);
  --accent: #ff5a2a;

  --radius: 30px;
  --shadow: 0 18px 60px rgba(0,0,0,.10);

  --wrapW: 1240px;
  --headerH: 78px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--headerH) + 24px); }
body{
  margin: 0;
  font-family: 'Satoshi', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; }
.wrap{
  max-width: var(--wrapW);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 42px);
}

/* ============ Header (glass) ============ */
.site-header{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner{
  max-width: calc(var(--wrapW) + 140px);
  margin: 0 auto;
  padding: 10px clamp(12px, 3vw, 20px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled .header-inner{
  background: rgba(255,255,255,.88);
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.brand img{
  height: 26px;
  width: auto;
  display: block;
}

.nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 8px;
  border-radius: 999px;
}
.site-header.is-scrolled .nav-link{ color: rgba(15,20,26,.82); }
.nav-link:hover{ background: rgba(255,255,255,.14); }
.site-header.is-scrolled .nav-link:hover{ background: rgba(0,0,0,.06); }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: rgba(15,20,26,.92);
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cta-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
}
.cta-icon svg{
  width: 16px; height: 16px;
  stroke: #fff; stroke-width: 2.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.nav-toggle{
  display:none;
  margin-left:auto;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:3px;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(255,255,255,.92);
  border-radius:99px;
  margin:0;
  transition: transform .18s ease, opacity .18s ease, width .18s ease, background-color .18s ease;
  transform-origin:center;
}
.site-header.is-scrolled .nav-toggle span{ background: rgba(15,20,26,.82); }

.nav-mobile{ display: none; }

/* ============ Hero ============ */
.contact-hero{
  position: relative;
  height: 460px;
  min-height: 420px;
  padding-top: calc(var(--headerH) + 30px);
}

.contact-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 45%, rgba(0,0,0,.25) 70%, rgba(0,0,0,0) 100%),
    url("/assets/images/subsites.png");
  background-size: cover;
  background-position: center;
}

.contact-hero-content{ position: relative; height: 100%; display:flex; align-items: center; }

.contact-hero-copy{
  max-width: 560px;
  color: #fff;
}

.c2-mark{
  font-weight: 900;
  color: var(--accent);
  font-size: 46px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.c2-mark span{ font-size: .55em; margin-left: 2px; display:inline-block; transform: translateY(6px); }

.contact-hero-copy h1{
  margin: 0;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.hero-sub{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.85;
}

/* ============ Main grid ============ */
.contact-main{
  padding: 54px 0 70px 0;
}

.contact-grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

/* Form Card */
.form-card{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  padding: 22px;
}

.form{ display: grid; gap: 16px; }

.hp{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

.row{ display: grid; gap: 10px; }
.row.two{ grid-template-columns: 1fr 1fr; gap: 12px; }

.field .label{
  font-size: 11px;
  color: rgba(15,20,26,.62);
  margin-bottom: 6px;
  display: inline-block;
}

input, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(15,20,26,.02);
  font: inherit;
  font-size: 12px;
  outline: none;
}

input:focus, select:focus{
  border-color: rgba(255,90,42,.55);
  box-shadow: 0 0 0 3px rgba(255,90,42,.14);
}

.radios{
  border: 0;
  margin: 0;
  padding: 0;
}
.radios .label{
  font-size: 11px;
  color: rgba(15,20,26,.62);
}

.radio{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(15,20,26,.70);
}
.radio input{ width: 14px; height: 14px; padding:0; }

.captcha{
  gap: 8px;
}
.captcha-note{
  margin: 0;
  font-size: 11px;
  color: rgba(15,20,26,.55);
}

.actions{
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.send-btn{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  font-size: 11px;
  box-shadow: 0 18px 40px rgba(255, 90, 42, .18);
  transition: transform .15s ease, filter .15s ease;
}
.send-btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

.send-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  display: grid;
  place-items: center;
}
.send-icon svg{
  width: 16px; height: 16px;
  stroke: rgba(15,20,26,.92);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-msg{
  font-size: 12px;
  color: rgba(15,20,26,.70);
}
.form-msg.ok{ color: #0a7a3a; }
.form-msg.err{ color: #b31919; }

/* Details */
.details{
  padding-top: 110px;
}

.details h2{
  margin: 0;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.details p{
  margin: 16px 0 0 0;
  color: rgba(15,20,26,.62);
  font-size: 12px;
  line-height: 1.9;
}

.details-hr{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 28px 0;
  max-width: 520px;
}

.details-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.details-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(15,20,26,.82);
  font-size: 12px;
}

.d-ico{
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.d-ico svg{
  width: 18px; height: 18px;
  stroke: var(--accent);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ Footer (wie Vorlage) ============ */
.site-footer{
  padding: 44px 0 40px 0;
  background: transparent;
}

.footer-card{
  max-width: min(1560px, calc(100% - 40px));
  margin: 0 auto;
  border-radius: 40px;
  padding: clamp(44px, 5.6vw, 78px) clamp(34px, 4.6vw, 64px);

  background:
    radial-gradient(1100px 600px at 75% 0%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 58%),
    radial-gradient(900px 520px at 0% 40%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 50%),
    #050505;

  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.footer-top{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(44px, 6vw, 96px);
  align-items: start;
  padding-bottom: clamp(46px, 6vw, 70px);
}

.footer-top::after{
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.12);
  transform: translateX(-0.5px);
}

.footer-mark{
  display: inline-flex;
  align-items: flex-start;
  font-weight: 900;
  color: var(--accent);
  font-size: 54px;
  line-height: 1;
}
.footer-mark span{
  font-size: .55em;
  margin-left: 2px;
  transform: translateY(6px);
  display: inline-block;
}

.footer-title{
  margin: 26px 0 0 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer-text{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.9;
}

.footer-right-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.footer-right-text{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.9;
  max-width: 56ch;
}

.footer-cta{
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px 16px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: rgba(15,20,26,.92);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}

.footer-cta-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
}
.footer-cta-icon svg{
  width: 18px; height: 18px;
  stroke: #fff; stroke-width: 2.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.footer-hr{
  height: 1px;
  background: rgba(255,255,255,.12);
}

.footer-bottom{
  padding-top: clamp(32px, 4.4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.footer-nav a{
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 16px;
}
.footer-nav a:hover{ color: rgba(255,255,255,.9); }

.footer-copy{
  color: rgba(255,255,255,.45);
  font-size: 14px;
}

/* ============ Responsive ============ */
@media (max-width: 980px){
  .nav{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-mobile{
    display: none;
    position: absolute;
    top: 64px;
    right: 10px;
    left: 10px;
    padding: 14px;
    gap: 8px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
  }
  body.nav-open .nav-mobile{ display: grid; }
  body.nav-open .nav-mobile .nav-link{ color: rgba(15,20,26,.86); background: rgba(0,0,0,.04); }

  .contact-grid{ grid-template-columns: 1fr; }
  .details{ padding-top: 10px; }

  .row.two{ grid-template-columns: 1fr; }

  .footer-top{ grid-template-columns: 1fr; }
  .footer-top::after{ display:none; }
  .footer-card{ border-radius: 30px; padding: 38px 22px; }
  .footer-nav{ gap: 20px; }
}


/* Open state -> X icon */
body.nav-open .nav-toggle span:nth-child(1){
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2){
  opacity: 0;
  transform: scaleX(.2);
}
body.nav-open .nav-toggle span:nth-child(3){
  transform: translateY(-5px) rotate(-45deg);
}

<!-- adminhub-cookie-banner:start -->
<link rel="stylesheet" href="/assets/css/cookie-consent.css">
<script src="/assets/js/cookie-consent.js" defer></script>
<!-- adminhub-cookie-banner:end -->
