/*
  event.und Master-Styles
  Editorial reference direction: bold type, flat colour fields, large image stages.
  Original event.und palette; no external fonts and no Tailwind.
*/

:root {
  --ink: #1e2826;
  --ink-soft: #4b5753;
  --paper: #f8f6f1;
  --cream: #eee9e1;
  --amber: #cbb995;
  --amber-soft: #e0d4bf;
  --petrol: #637f7a;
  --petrol-dark: #2d423f;
  --petrol-pale: #ccd8d4;
  --coral: #b88779;
  --coral-dark: #76584f;
  --coral-pale: #decac3;
  --violet: #78717b;
  --white: #fffdf9;
  --line: #46514d;
  --content: 82rem;
  --header-h: 7.25rem;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--amber);
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--petrol); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 999;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 4rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 4rem), 60rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.75rem, 7.5vw, 7.5rem) 0;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

.section-kicker,
.eyebrow {
  margin: 0 0 1.25rem;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section-kicker { color: var(--coral-dark); }

h1, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.052em;
}

h1 {
  max-width: min(100%, 13ch);
  font-size: clamp(3.5rem, 5.6vw, 5.9rem);
}

h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.045em;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.85rem);
}

h1,
h2,
h3,
.lead,
.form-status,
.footer-links a,
.legal-content code {
  overflow-wrap: anywhere;
}

.header-inner > *,
.footer-grid > *,
.contact-layout > *,
.form-grid > * {
  min-width: 0;
}

p { margin: 0; }

/* Blog */

.blog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: 3rem;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(30, 40, 38, .25);
  border-radius: 1.75rem;
  background: var(--white);
}

.blog-card-image { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.035); }
.blog-card-body { display: grid; gap: 1rem; padding: 1.5rem; }
.blog-card h2, .blog-card h3 { max-width: none; font-family: var(--display); font-size: clamp(1.5rem, 2vw, 2.15rem); font-weight: 900; line-height: .97; letter-spacing: -.052em; }
.blog-card h2 a, .blog-card h3 a { text-decoration: none; }
.blog-meta { color: var(--coral-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-index h1, .blog-hero h1 { max-width: 15ch; }
.blog-index .lead, .blog-hero .lead { max-width: 46rem; margin-top: 1.5rem; }
.blog-hero { padding: clamp(4.5rem, 8vw, 8rem) 0 3rem; background: linear-gradient(120deg, var(--cream), var(--petrol-pale)); }
.blog-hero .blog-meta { margin-top: 1.5rem; }
.blog-hero-image { margin-top: 3rem; }
.blog-hero-image img { width: 100%; max-height: 46rem; object-fit: cover; border-radius: 2.5rem; }
.blog-content { padding-block: clamp(3.5rem, 7vw, 7rem); }
.blog-content > * + * { margin-top: 1.5rem; }
.blog-content h2 { max-width: 20ch; margin-top: 3.5rem; font-size: clamp(2.25rem, 4vw, 3.75rem); }
.blog-content h3 { margin-top: 2.5rem; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.blog-content ul { padding-left: 1.4rem; }
.blog-contact { margin-top: 4rem; padding: clamp(2rem, 5vw, 4rem); border-radius: 2rem; background: var(--petrol-pale); }
.blog-contact h2 { margin-top: 0; }
.blog-contact .btn { margin-top: 1.5rem; }

@media (max-width: 56rem) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-heading { align-items: start; flex-direction: column; }
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.clean-list,
.primary-nav ul,
.footer-links,
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(100deg, #d5c7aa 0%, var(--amber) 58%, #c5b38f 100%);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand img {
  width: 5.8rem;
  height: 5.8rem;
  object-fit: contain;
  border-radius: 18%;
}

.primary-nav { justify-self: end; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.2rem);
}

.primary-nav a {
  text-decoration: none;
  font-size: .98rem;
  font-weight: 800;
}

.header-cta { margin-left: .35rem; }

.menu-toggle {
  display: none;
  border: 2px solid var(--line);
  background: transparent;
  padding: .7rem;
}

.menu-toggle-lines {
  display: grid;
  gap: .34rem;
  width: 1.7rem;
}

.menu-toggle-lines span {
  display: block;
  height: 2px;
  background: currentColor;
}

.mobile-panel { display: none; }

/* Buttons */

.btn {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .88rem 1.25rem;
  border: 2px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.12;
  box-shadow: none;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.btn:hover { transform: translate(-3px, -3px); }

.btn-primary,
.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-primary:hover,
.btn-dark:hover {
  color: var(--ink);
  background: var(--white);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-light:hover { background: var(--amber-soft); }

.btn-outline {
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-block;
  font-weight: 900;
  text-decoration-thickness: .12em;
  text-underline-offset: .24em;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,253,249,.5) 0%, rgba(255,253,249,0) 34%),
    linear-gradient(145deg, #cfbea0 0%, #e8dfd2 52%, var(--petrol-pale) 100%);
}

.hero-grid {
  min-height: auto;
  display: block;
  padding-block: clamp(3.5rem, 5.5vw, 5.5rem) clamp(4rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
}

.eyebrow::before {
  content: "";
  width: 3.5rem;
  height: 2px;
  background: currentColor;
}

.hero h1 span {
  display: table;
  max-width: 100%;
  padding: 0 .08em;
  background: var(--white);
  line-height: 1.04;
  white-space: nowrap;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(1.75rem, 8.2vw, 5.2rem);
}

.hero h1 span + span { margin-top: .04em; }

.hero-claim {
  max-width: 18ch;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 46rem;
  margin-top: 1.35rem;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1rem;
  color: rgba(16, 23, 24, .72);
  font-size: .9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: clamp(27rem, 48vw, 43rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.image-slot {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 4.2rem;
  background:
    linear-gradient(135deg,
      var(--petrol) 0%,
      var(--petrol-pale) 48%,
      var(--violet) 74%,
      var(--coral-pale) 100%);
}

.image-slot::before,
.image-slot::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
}

.image-slot::before {
  width: 24rem;
  height: 24rem;
  right: 13%;
  top: 10%;
}

.image-slot::after {
  width: 9rem;
  height: 9rem;
  left: 18%;
  bottom: 13%;
  background: var(--amber);
}

.image-slot-label {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--white);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 3.5rem;
  top: -3rem;
  width: 9rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(6deg);
}

.hero-wave {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 34%;
  color: var(--white);
}

/* Trust */

.trust-bar {
  color: var(--ink);
  background: linear-gradient(110deg, #c4d2ce 0%, #dde4df 56%, #eee8de 100%);
  border-block: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 8.5rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .25rem;
  padding: 1.5rem;
  border-right: 2px solid var(--line);
  text-align: center;
}

.trust-list li:last-child { border-right: 0; }

.trust-list span:first-child {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.trust-list .trust-stars {
  font-size: 1.35rem;
  letter-spacing: .1em;
  white-space: nowrap;
}

.trust-list span:last-child {
  font-size: .9rem;
  font-weight: 800;
}

/* Editorial introduction */

.editorial-intro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.editorial-intro h2 { max-width: 12ch; }

.intro-copy {
  display: grid;
  gap: 1.75rem;
  max-width: 58rem;
}

.statement {
  padding: 1.6rem 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.025em;
}

/* Offers */

.offers {
  color: var(--ink);
  background: linear-gradient(135deg, #eaded9 0%, var(--coral-pale) 42%, #f4eee8 100%);
  border-block: 1px solid var(--line);
}

.offers::before { display: none; }

.offers-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: end;
}

.offers-head .section-kicker { color: var(--ink) !important; }
.offers-head p { max-width: 36rem; color: var(--ink); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.offer {
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 3.5vw, 3.3rem);
  border-right: 2px solid var(--line);
  background: transparent;
}

.offer:last-child { border-right: 0; }

.offer-number {
  display: block;
  margin-bottom: 2.5rem;
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.offer p { margin-top: 1.25rem; color: var(--ink); }
.offer a { align-self: start; margin-top: 2rem; }

/* Process */

.process-section {
  background: linear-gradient(140deg, var(--amber) 0%, var(--amber-soft) 52%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.process-line { margin-top: 4rem; }

.process-line::before { display: none; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.process-step {
  min-height: 12rem;
  padding: 1.6rem;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.process-step::before {
  content: counter(list-item, decimal-leading-zero);
  display: block;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
}

.process-step strong {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.process-step p { color: var(--ink-soft); font-size: .95rem; }

/* Music */

.music {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,253,249,.5) 0%, rgba(255,253,249,0) 32%),
    linear-gradient(145deg, #c2d2cd 0%, #e4e8e1 56%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.music-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.genre-cloud {
  position: relative;
  min-height: 31rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 3.5rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--petrol-dark) 0%, var(--petrol) 100%);
}

.genre-cloud::before {
  content: "OPEN FORMAT";
  position: absolute;
  left: -1rem;
  top: 1rem;
  color: rgba(255,255,255,.13);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: .8;
  transform: rotate(-7deg);
}

.genre-cloud::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -5rem;
  bottom: -4rem;
  border-radius: 50%;
  background: var(--coral);
}

.genre-words {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1.15rem;
  padding: 2rem;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.music-copy { display: grid; gap: 1.5rem; }

.check-list {
  display: grid;
  gap: 0;
  margin-top: .75rem;
  border-top: 2px solid var(--line);
  counter-reset: wedding-benefit;
}

.check-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 2px solid var(--line);
  counter-increment: wedding-benefit;
}

.check-list li::before {
  content: counter(wedding-benefit, decimal-leading-zero);
  display: grid;
  width: 2.15rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(30,40,38,.35);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
}

/* Security */

.security {
  color: var(--white);
  background: linear-gradient(140deg, #243936 0%, var(--petrol-dark) 55%, #445b56 100%);
  border-bottom: 1px solid var(--line);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.security-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.security-fact {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.security-fact strong {
  display: block;
  color: var(--amber-soft);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 3.1rem);
  line-height: .95;
}

.security-fact span {
  display: block;
  margin-top: .85rem;
  color: rgba(255,255,255,.8);
}

.security-copy .section-kicker { color: var(--amber-soft) !important; }
.security-copy p { color: rgba(255,255,255,.82); }
.security-copy .lead { color: var(--white); }
.security-copy > * + * { margin-top: 1.4rem; }

/* About */

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-grid.no-photo {
  grid-template-columns: minmax(0, 52rem);
  justify-content: center;
}

.portrait-slot {
  min-height: 43rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 3.8rem;
  background:
    linear-gradient(145deg,
      var(--violet) 0%,
      var(--coral-pale) 56%,
      var(--amber-soft) 100%);
}

.portrait-slot::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: 50%;
  top: 18%;
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.portrait-slot::after {
  content: "Porträt folgt";
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--white);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-copy { display: grid; gap: 1.45rem; }

.about-signature {
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 2.6rem;
  color: var(--coral-dark);
  transform: rotate(-3deg);
}

/* Reviews */

.reviews {
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-soft) 0%, #eee5d7 56%, var(--coral-pale) 100%);
  border-block: 1px solid var(--line);
}

.reviews-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: end;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.review {
  position: relative;
  min-height: 21rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: transparent;
}

.review::before {
  content: "“";
  position: absolute;
  top: -.5rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 9rem;
  line-height: 1;
  opacity: .14;
}

.review blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.15vw, 2.1rem);
  line-height: 1.28;
  letter-spacing: -.02em;
}

.review-stars {
  margin-bottom: 1.25rem;
  color: var(--ink);
  letter-spacing: .14em;
}

.review-source {
  margin-top: 1.25rem;
  font-size: .86rem;
  font-weight: 800;
}

/* Local */

.local {
  color: var(--white);
  background: linear-gradient(140deg, #586d68 0%, #69636d 100%);
  border-bottom: 1px solid var(--line);
}

.local-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.local-panel {
  min-height: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
}

.local-panel .section-kicker { color: var(--amber-soft) !important; }
.local-panel p { max-width: 46rem; margin-top: 1.5rem; color: rgba(255,255,255,.84); }

.local-links {
  display: grid;
  align-content: start;
  border-top: 2px solid var(--white);
}

.local-link {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--white);
  text-decoration: none;
  font-weight: 900;
}

.local-link span { float: right; color: var(--amber-soft); }

.region-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: .75rem;
}

.region-list span {
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  font-weight: 700;
}

/* FAQ */

.faq-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.faq-list {
  margin-top: 4rem;
  border-top: 2px solid var(--line);
}

details { border-bottom: 2px solid var(--line); }

summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.45rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  transition: transform .18s ease;
}

details[open] summary::after { transform: rotate(45deg); }

.details-body {
  max-width: 58rem;
  padding: 0 3rem 1.7rem 0;
  color: var(--ink-soft);
}

/* Final CTA */

.final-cta {
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, var(--coral-pale) 0%, var(--coral) 58%, var(--amber-soft) 100%);
  border-top: 1px solid var(--line);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: end;
}

.cta-grid h2 { max-width: 12ch; }
.cta-grid .section-kicker { color: var(--ink) !important; }

.cta-side {
  justify-self: end;
  max-width: 29rem;
}

.cta-side p {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro h2 { max-width: 11ch; }

.contact-intro > h2 + p {
  max-width: 32rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(255,253,249,.82);
  box-shadow: 0 1.5rem 4rem rgba(30,40,38,.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: .45rem;
}

.form-field label,
.privacy-check {
  font-size: .88rem;
  font-weight: 800;
}

.form-field .optional {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(70,81,77,.72);
  border-radius: 0;
  padding: .8rem .9rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

/* WebKit can otherwise keep a date input wider than its mobile grid column. */
.form-field input[type="date"] {
  display: block;
  inline-size: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
  overflow: hidden;
}

.form-field input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}

@supports (-webkit-touch-callout: none) {
  .form-field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
  }

  .form-field input[type="date"]::-webkit-date-and-time-value {
    width: 100%;
    margin: 0;
  }
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--petrol-dark);
}

.privacy-check {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: .7rem;
  align-items: start;
  line-height: 1.45;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin: .18rem 0 0;
  accent-color: var(--petrol-dark);
}

.privacy-check a { text-underline-offset: .18em; }

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.form-submit p {
  color: var(--ink-soft);
  font-size: .78rem;
}

.form-status {
  padding: .9rem 1rem;
  border: 1px solid currentColor;
  font-weight: 700;
}

.form-status-success { color: #315d4d; background: #e5f0e9; }
.form-status-error { color: #7a3d38; background: #f4e5e2; }

.contact-form button:disabled {
  cursor: wait;
  opacity: .62;
}

/* Footer */

.site-footer {
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .8fr;
  gap: 4rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: 1fr 7rem minmax(6.5rem, 8.5rem) 1fr;
  column-gap: 1.15rem;
  align-items: center;
}

.footer-brand > img:not(.footer-network-badge) {
  grid-column: 2;
  grid-row: 1;
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  border-radius: 18%;
}

.footer-brand p {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 31rem;
  margin-top: 1.25rem;
}

.footer-brand .footer-network-badge {
  grid-column: 3;
  grid-row: 1;
  width: clamp(6.5rem, 10vw, 8.5rem);
  height: auto;
  margin-top: 0;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand > a[href="/netzwerk.html"] {
  grid-column: 3;
  grid-row: 1;
  display: block;
  width: clamp(6.5rem, 10vw, 8.5rem);
  border-radius: 50%;
  text-decoration: none;
}

.footer-brand > a[href="/netzwerk.html"] .footer-network-badge {
  width: 100%;
}

.footer-brand > a[href="/netzwerk.html"]:focus-visible {
  outline: 2px solid var(--amber-soft);
  outline-offset: .3rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--amber-soft);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: .7rem;
}

.footer-links a,
.footer-links button {
  color: inherit;
  border: 0;
  padding: 0;
  background: none;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.28);
  font-size: .84rem;
}

.footer-bottom button {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible {
  color: var(--white);
}

/* Consent */

.cookie-consent {
  position: fixed;
  z-index: 300;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
}

.cookie-consent.is-open { display: block; }

.cookie-card {
  width: min(100%, 52rem);
  margin-left: auto;
  padding: 1.35rem;
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(16,23,24,.98);
}

.cookie-card h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.cookie-card p {
  margin-top: .55rem;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}

.cookie-card p a {
  color: var(--white);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.cookie-options {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: .88rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  min-height: 2.8rem;
  border-color: var(--white);
  padding: .6rem .9rem;
  color: var(--white);
  font-size: .84rem;
}

.cookie-actions .btn-primary { color: var(--ink); background: var(--amber-soft); }

/* Legal pages */

.legal-hero {
  min-height: 8rem;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, var(--amber) 0%, var(--amber-soft) 58%, var(--paper) 100%);
}

.legal-content {
  padding: 4rem 0 8rem;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  max-width: none;
  margin-top: 2.5rem;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.legal-content h2 { font-size: 2.1rem; }
.legal-content h3 { font-size: 1.55rem; }
.legal-content h4 { font-size: 1.2rem; }
.legal-content p { margin-top: .9rem; }
.legal-content code { padding: .1rem .3rem; background: var(--cream); }

.error-page {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,253,249,.72), transparent 30%),
    linear-gradient(145deg, var(--amber-soft) 0%, var(--coral-pale) 50%, var(--petrol-pale) 100%);
}

.error-page h1 { max-width: 13ch; }
.error-page .lead { max-width: 48rem; margin-top: 1.75rem; }

/* Accessibility and motion */

:focus-visible {
  outline: 4px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 64rem) {
  .container { width: min(calc(100% - 2rem), var(--content)); }
  .narrow { width: min(calc(100% - 2rem), 60rem); }

  .primary-nav,
  .header-cta { display: none; }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 99;
    display: none;
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
    padding: 1.25rem 1rem 2rem;
    border-bottom: 2px solid var(--line);
    background: var(--amber);
  }

  .mobile-panel.is-open { display: block; }

  .mobile-panel a {
    display: block;
    padding: .95rem .2rem;
    border-bottom: 2px solid var(--line);
    text-decoration: none;
    font-family: var(--display);
    font-weight: 900;
  }

  .mobile-panel .btn {
    margin-top: 1rem;
    border-bottom: 2px solid var(--line);
  }

  .trust-list { grid-template-columns: 1fr 1fr; }
  .trust-list li:nth-child(2) { border-right: 0; }
  .trust-list li:nth-child(-n+2) { border-bottom: 2px solid var(--line); }

  .offer-grid { grid-template-columns: 1fr; }
  .offer {
    min-height: 19rem;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .offer:last-child { border-bottom: 0; }

  .process { grid-template-columns: repeat(2, 1fr); }

  .security-grid,
  .local-grid { grid-template-columns: 1fr; }
}

@media (max-width: 47rem) {
  :root { --header-h: 5.5rem; }

  .container,
  .narrow { width: min(calc(100% - 1.3rem), var(--content)); }

  .blog-hero { padding: 3.5rem 0 2.5rem; }

  .blog-hero-image {
    aspect-ratio: 16 / 9;
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 1.5rem;
  }

  .blog-hero-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  .brand img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .section { padding: 5rem 0; }

  h1 { font-size: clamp(2.55rem, 11vw, 3.6rem); }
  h2 { font-size: clamp(2.35rem, 9vw, 3.35rem); }

  .hero-grid { padding-block: 3.2rem 4rem; }
  .hero-copy .lead { margin-top: 1.5rem; }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }

  .hero-visual {
    min-height: 25rem;
    margin-top: 3.8rem;
  }

  .image-slot { border-radius: 2.3rem; }
  .image-slot::before { width: 14rem; height: 14rem; right: 8%; }
  .image-slot::after { width: 6rem; height: 6rem; }
  .image-slot-label { left: 1rem; bottom: 1rem; max-width: calc(100% - 2rem); }

  .hero-stamp {
    width: 6.7rem;
    right: 1rem;
    top: -2.4rem;
    font-size: .6rem;
  }

  .hero-wave { width: 52%; }

  .trust-list { grid-template-columns: 1fr; }
  .trust-list li {
    min-height: 6.2rem;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .trust-list li:last-child { border-bottom: 0; }

  .editorial-intro,
  .offers-head,
  .music-grid,
  .about-grid,
  .reviews-head,
  .faq-head,
  .cta-grid,
  .contact-layout,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid { margin-top: 2.8rem; }
  .offer { min-height: 17rem; }

  .process {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .process-step { border-left: 2px solid var(--line); }

  .genre-cloud {
    min-height: 24rem;
    border-radius: 2.3rem;
  }

  .security-facts { grid-template-columns: 1fr; }

  .portrait-slot {
    min-height: 31rem;
    border-radius: 2.3rem;
  }

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

  .cta-side {
    justify-self: start;
    max-width: none;
  }

  .contact-form { padding: 1.25rem; }

  .form-submit {
    display: grid;
  }

  .form-submit .btn { width: 100%; }

  .footer-grid { gap: 2.5rem; }
  .footer-brand p { text-align: center; }
  .footer-bottom { display: grid; }

  .cookie-consent {
    left: .5rem;
    right: .5rem;
    bottom: .5rem;
  }

  .cookie-options {
    display: grid;
    gap: .45rem;
  }

  .cookie-actions {
    display: grid;
  }

  .cookie-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
