/* ==========================================================================
   audiocraft.cc – Stylesheet
   ========================================================================== */

/* --- Schriften (lokal gehostet, keine Verbindung zu Google) -------------- */

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/work-sans-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;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/work-sans-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;
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/zilla-slab-500-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;
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/zilla-slab-500-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;
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/zilla-slab-600-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;
}
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/zilla-slab-600-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;
}

/* --- Design-Tokens ------------------------------------------------------- */

:root {
  --bg:        #FAF9F7;
  --surface:   #FFFFFF;
  --ink:       #22203A;
  --text:      #4A4860;
  --text-soft: #5C5A6E;
  --muted:     #6E6B7E;
  --muted-2:   #8A8798;
  --line:      #E4E1DC;
  --hairline:  #EDEAE5;
  --rule:      #DDD9D3;
  --accent:    #24A8C0;
  --link:      #1E7F92;
  --violet:    #6C60A8;
  --deep:      #3A3466;
  --deep-line: #524B85;
  --on-deep:   #C9C5DE;
  --on-deep-2: #A9A3CC;
  --serif: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --sans:  'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1160px;
  --gutter: 32px;
}

/* --- Basis --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
p { text-wrap: pretty; margin: 0 0 1em; }
h1, h2, h3, h4 { text-wrap: balance; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

input, select, textarea, button { font: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--deep); color: #fff; padding: 12px 20px; border-radius: 2px;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Typografische Bausteine -------------------------------------------- */

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 16px;
}
.eyebrow--light { color: #8FD9E4; }

.eyebrow-rule {
  display: flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--violet);
}
.eyebrow-rule::before {
  content: ""; width: 34px; height: 2px; background: var(--accent); flex: none;
}

.h1 {
  margin: 0;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 6.2vw, 60px); line-height: 1.08;
  letter-spacing: -.015em; color: var(--ink);
}
.h2 {
  margin: 0;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 40px); line-height: 1.15;
  letter-spacing: -.01em; color: var(--ink);
}
.h3 {
  margin: 0 0 16px;
  font-family: var(--serif); font-weight: 600;
  font-size: 26px; line-height: 1.2; color: var(--ink);
}
.lead { font-size: 17px; line-height: 1.65; color: var(--text-soft); margin: 0; }
.lead--narrow { max-width: 44em; }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 26px; border-radius: 2px;
  font-size: 16px; font-weight: 500; border: 1px solid transparent;
  cursor: pointer; transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--deep); color: #fff; }
.btn--primary:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: #C9C5BE; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); text-decoration: none; }
.btn--light { background: #fff; color: var(--deep); height: 48px; padding: 0 24px; }
.btn--light:hover { background: #E9E7F2; color: var(--deep); text-decoration: none; }
.btn--sm { height: 42px; padding: 0 20px; font-size: 15px; }

/* --- Kopfzeile ----------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 247, .97);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  height: 78px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.logo:hover { text-decoration: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--text); font-size: 15px; font-weight: 500; letter-spacing: .01em;
}
.nav a:hover { color: var(--ink); }
.nav a.btn { color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 2px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: currentColor;
  margin: 4px auto; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* --- Abschnitte ---------------------------------------------------------- */

.section { border-bottom: 1px solid var(--line); }
.section--white { background: var(--surface); }
.section--deep { background: var(--deep); }
.section .wrap { padding-top: 80px; padding-bottom: 88px; }
.section--hero .wrap { padding-top: 88px; padding-bottom: 72px; }

.section-head { margin-bottom: 52px; }
.section-head .h2 { margin-bottom: 14px; }

.split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: end; margin-bottom: 56px;
}
.split .h2 { margin: 0; }

/* --- Hero ---------------------------------------------------------------- */

.hero {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 72px; align-items: start;
}
.hero__text p:not(.eyebrow-rule) {
  margin: 28px 0 0; max-width: 36em;
  font-size: 19px; line-height: 1.62; color: var(--text);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.factsheet { border: 1px solid var(--line); background: var(--surface); padding: 30px 32px 32px; }
.factsheet__title {
  margin: 0;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); padding-bottom: 18px; border-bottom: 1px solid var(--hairline);
}
.factsheet dl { margin: 0; }
.factsheet .row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 15px 0; border-bottom: 1px solid var(--hairline);
}
.factsheet .row:last-child { border-bottom: 0; padding-bottom: 0; }
.factsheet dt { font-size: 15px; color: var(--muted); }
.factsheet dd { margin: 0; font-size: 15px; font-weight: 500; color: var(--ink); text-align: right; }

/* --- Leistungskarten ----------------------------------------------------- */

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.card { background: var(--surface); padding: 38px 34px 34px; display: flex; flex-direction: column; }
.card__num {
  font-family: var(--serif); font-size: 14px; font-weight: 600;
  color: var(--accent); letter-spacing: .04em; margin-bottom: 14px;
}
.card p:not(.card__num) { margin: 0 0 24px; font-size: 16px; line-height: 1.62; color: var(--text-soft); }
.card ul {
  margin: 0 0 26px; padding: 22px 0 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--hairline);
}
.card li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; color: #3F3D53; }
.card li::before { content: "–"; color: var(--accent); flex: none; }

.tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px; letter-spacing: .04em; color: var(--muted);
  border: 1px solid var(--line); padding: 4px 9px;
}

.note { margin: 26px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* --- Unternehmen --------------------------------------------------------- */

.about { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
.about .h2 { margin-bottom: 26px; }
.about p:not(.eyebrow) { margin: 0 0 18px; font-size: 17px; line-height: 1.68; color: var(--text); }
.about p:not(.eyebrow):last-child { margin-bottom: 0; }

figure { margin: 0; }
figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); }
.framed { border: 1px solid var(--line); width: 100%; }

/* --- Ablauf -------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.step { border-top: 2px solid var(--deep); padding-top: 26px; }
.step__label {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  letter-spacing: .1em; color: var(--violet); margin-bottom: 12px;
}
.step .h3 { font-size: 23px; line-height: 1.25; margin-bottom: 14px; }
.step p:not(.step__label) { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-soft); }

/* --- Galerien ------------------------------------------------------------ */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.thumb { width: 100%; height: 250px; object-fit: cover; border: 1px solid var(--line); }
.thumb--tall {
  height: 330px; object-fit: cover; object-position: top;
  border: 1px solid var(--line); background: var(--surface);
}
.thumb--wide { width: 100%; height: 320px; object-fit: cover; border: 1px solid var(--line); }
/* Hochformat im Querformat-Ausschnitt: Bildmitte nach unten verschieben,
   damit das Motiv und nicht nur der Hintergrund sichtbar bleibt */
.thumb--focus-lower { object-position: center 62%; }

/* --- KeyStack ------------------------------------------------------------ */

.keystack {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
.keystack .h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 20px; }
.keystack p:not(.eyebrow) { margin: 0 0 26px; font-size: 17px; line-height: 1.68; color: var(--on-deep); }
.keystack img { border: 1px solid #5C5590; width: 100%; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip { font-size: 13px; color: var(--on-deep); border: 1px solid #5C5590; padding: 5px 11px; }

/* --- FAQ ----------------------------------------------------------------- */

.faq { display: grid; grid-template-columns: .8fr 1.4fr; gap: 72px; align-items: start; }
.faq__intro .h2 { margin-bottom: 18px; }
.faq__intro p:not(.eyebrow) { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-soft); }
.faq__intro a { border-bottom: 1px solid #A9DCE5; }

.faq__list { border-top: 1px solid var(--rule); }
.faq__list details { border-bottom: 1px solid var(--rule); }
.faq__list summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; color: var(--accent); font-size: 15px;
  font-family: var(--sans); flex: none;
}
.faq__list details[open] summary::after { content: "–"; }
.faq__list p {
  margin: 0; padding: 0 0 24px; max-width: 52em;
  font-size: 16px; line-height: 1.7; color: var(--text-soft);
}

/* --- Kontakt ------------------------------------------------------------- */

.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; }
.contact .h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); line-height: 1.18; margin-bottom: 20px; }
.contact__intro { margin: 0 0 40px; max-width: 34em; font-size: 17px; line-height: 1.68; color: var(--on-deep); }
.contact dl { margin: 0; border-top: 1px solid var(--deep-line); }
.contact .row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 17px 0; border-bottom: 1px solid var(--deep-line);
}
.contact dt { font-size: 15px; color: var(--on-deep-2); }
.contact dd { margin: 0; font-size: 16px; color: #fff; }
.contact dd a { color: #fff; border-bottom: 1px solid #6E67A8; }
.contact dd a:hover { color: #fff; border-bottom-color: #fff; text-decoration: none; }

/* --- Formular ------------------------------------------------------------ */

.form { background: var(--surface); padding: 36px 36px 34px; display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-size: 14px; font-weight: 500; color: #3F3D53; }
.field input, .field select, .field textarea {
  border: 1px solid #D5D1CB; border-radius: 2px; background: #FDFCFB;
  color: var(--ink); font-size: 15px;
}
.field input, .field select { height: 46px; padding: 0 12px; }
.field textarea { padding: 12px 13px; resize: vertical; font-family: var(--sans); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--muted); }
.consent input { margin: 2px 0 0; width: 16px; height: 16px; flex: none; accent-color: var(--deep); }

.form .btn { width: 100%; }
.form .hint { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted-2); }

.form__status { margin: 0; font-size: 14px; line-height: 1.55; padding: 12px 14px; border-radius: 2px; }
.form__status[hidden] { display: none; }
.form__status--ok { background: #E7F4F1; color: #17605A; border: 1px solid #B7DED8; }
.form__status--err { background: #FBEDEA; color: #8A2C1B; border: 1px solid #F0C9C0; }

/* Honeypot – für Menschen unsichtbar, für Bots verlockend */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Fußzeile ------------------------------------------------------------ */

.site-footer { background: var(--ink); }
.site-footer .wrap {
  padding-top: 34px; padding-bottom: 34px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 20px; border-top: 1px solid #35314F;
}
.site-footer p { margin: 0; }
.site-footer, .site-footer a { font-size: 14px; color: #9A96B0; }
.site-footer a:hover { color: #fff; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 26px; }

/* --- Rechtstexte (Impressum, Datenschutz) -------------------------------- */

.legal { max-width: 46em; }
.legal .h1 { margin-bottom: 12px; }
.legal .updated { font-size: 14px; color: var(--muted); margin-bottom: 40px; }
.legal h2 {
  font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 1.25;
  color: var(--ink); margin: 44px 0 14px;
}
.legal h3 {
  font-family: var(--serif); font-weight: 500; font-size: 19px;
  color: var(--ink); margin: 28px 0 10px;
}
.legal p:not(.updated), .legal li { font-size: 16px; line-height: 1.7; color: var(--text); }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 8px; }
.legal address { font-style: normal; line-height: 1.7; color: var(--text); }
.legal .box {
  border: 1px solid var(--line); background: var(--surface);
  padding: 22px 26px; margin: 0 0 24px;
}
.legal .todo {
  border-left: 3px solid #D9822B; background: #FDF4E9;
  padding: 14px 18px; margin: 0 0 24px; font-size: 15px; color: #7A4A12;
}
.legal .back { display: inline-block; margin-top: 48px; font-size: 15px; }
.legal .intro { font-size: 17px; margin-top: 24px; }

/* --- Responsiv ----------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 44px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .keystack { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .faq { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 40px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --gutter: 22px; }

  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 16px;
  }
  .nav a.btn { margin-top: 16px; border-bottom: 0; justify-content: center; }
  .site-header .wrap { position: relative; height: 68px; }
  .logo img { height: 38px; }

  .section .wrap { padding-top: 56px; padding-bottom: 60px; }
  .section--hero .wrap { padding-top: 52px; padding-bottom: 52px; }
  .hero__text p { font-size: 17px; }
  .card { padding: 30px 26px; }
  .form { padding: 26px 22px 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .thumb, .thumb--wide { height: 220px; }
  .thumb--tall { height: 280px; }
  .factsheet { padding: 24px 22px 26px; }
  .factsheet .row { flex-direction: column; gap: 2px; }
  .factsheet dd { text-align: left; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* --- Druck --------------------------------------------------------------- */

@media print {
  .site-header, .nav-toggle, .form, .skip-link { display: none !important; }
  .section--deep { background: #fff; }
  .section--deep .h2, .section--deep dd, .section--deep dd a { color: #000; }
  .section--deep .eyebrow--light, .section--deep dt, .contact__intro { color: #333; }
  body { background: #fff; }
  a { color: #000; text-decoration: underline; }
}
