:root {
  --text: #111111;
  --muted: #66615b;
  --soft: #f4f1ec;
  --line: #ded8cf;
  --dark: #111111;
  --white: #ffffff;
  --accent: #9c6b3d;
  --max: 1180px;
  --wide: 1320px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 44px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  color: var(--text);
}

.site-logo span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-logo small {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.2s ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Global */

main {
  overflow: hidden;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-dark {
  background: rgba(17,17,17,0.74);
  color: var(--white);
  border-color: rgba(255,255,255,0.52);
}

.button-dark:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--accent);
}

.text-link:hover {
  color: var(--accent);
}

.text-link.light {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* Hero */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.50), rgba(0,0,0,0.10)),
    linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 96px;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero p {
  max-width: 670px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
}

/* Statement */

.statement {
  padding: 110px 0 96px;
  background: var(--white);
}

.statement-inner {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.statement p {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

/* Editorial Baustelle */

.editorial-block {
  padding: 90px 0 120px;
  background: var(--white);
}

.editorial-inner {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: center;
}

.editorial-image {
  width: 100%;
  min-width: 0;
}

.editorial-image img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-text {
  min-width: 0;
}

.editorial-text h2,
.showcase-item h2,
.wide-image-text h2,
.target-section h2,
.process-section h2,
.seo-text h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.editorial-text p,
.showcase-item p,
.wide-image-text p,
.target-grid p,
.process-list p,
.seo-text p,
.final-cta p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.editorial-text p {
  max-width: 520px;
}

/* Large Type */

.large-type {
  padding: 140px 0;
  background: var(--soft);
}

.large-type-inner {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
}

.large-type h2 {
  margin: 0;
  font-size: clamp(54px, 9vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

/* Split Showcase */

.split-showcase {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  margin-bottom: 36px;
}

.showcase-item-offset {
  margin-top: 160px;
}

.showcase-item h2 {
  font-size: clamp(48px, 7vw, 118px);
}

.showcase-item p {
  max-width: 560px;
}

/* Wide Image */

.wide-image-section {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background: var(--dark);
  display: flex;
  align-items: flex-end;
}

.wide-image-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.68), rgba(0,0,0,0.08)),
    linear-gradient(90deg, rgba(0,0,0,0.44), rgba(0,0,0,0.08));
}

.wide-image-text {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.wide-image-text p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
}

/* Target */

.target-section {
  padding: 130px 0;
  background: var(--white);
}

.target-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.target-section h2 {
  max-width: 980px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 76px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.target-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.target-grid p {
  margin: 0;
  font-size: 16px;
}

/* Process */

.process-section {
  padding: 130px 0;
  background: var(--soft);
}

.process-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.process-section h2 {
  max-width: 980px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 78px;
}

.process-list div {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.process-list span {
  display: block;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.process-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  font-size: 16px;
}

/* SEO Text */

.seo-text {
  padding: 110px 0;
  background: var(--white);
}

.seo-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.seo-text h2 {
  font-size: clamp(36px, 4.8vw, 74px);
}

.seo-text p {
  margin: 26px 0 0;
}

/* CTA */

.final-cta {
  padding: 140px 0;
  color: var(--white);
  background: var(--dark);
  text-align: center;
}

.final-cta-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(255,255,255,0.72);
}

.cta-mail {
  margin-top: 22px !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.78) !important;
}

/* Footer */

.site-footer {
  padding: 46px 0;
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.62);
}

.footer-contact {
  margin-top: 18px !important;
  line-height: 1.8;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 22px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--white);
}

/* Legal Pages */

.page-hero {
  padding: 170px 0 80px;
}

.page-hero-light {
  background: var(--soft);
  color: var(--text);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.legal-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.legal-inner {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
}

.legal-inner h2 {
  margin: 46px 0 14px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.legal-inner strong {
  color: var(--text);
}

.legal-inner a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.legal-inner a:hover {
  color: var(--accent);
}

/* Tablet */

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .editorial-inner,
  .split-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .editorial-image img {
    aspect-ratio: 16 / 10;
  }

  .showcase-item-offset {
    margin-top: 0;
  }

  .target-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.legal-page {
  padding: 170px 0 120px;
  background: var(--white);
}

.legal-inner {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
}

.legal-inner h1 {
  margin: 0 0 42px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.legal-inner h2 {
  margin: 58px 0 18px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-inner p,

.legal-inner li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.legal-inner p {
  margin: 0 0 22px;
}

.legal-inner ul {
  margin: 18px 0 28px 22px;
  padding: 0;
}

.legal-inner strong {
  color: var(--text);
}

.legal-inner a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 740px) {
  .legal-page {
    padding: 135px 0 90px;
  }

  .legal-inner {
    width: min(100% - 32px, 820px);
  }
}

/* Mobile */

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 32px, var(--max));
    min-height: 68px;
  }

  .site-logo span {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 22px 22px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 72px);
    letter-spacing: -0.06em;
  }

  .hero p {
    font-size: 18px;
  }

  .statement {
    padding: 78px 0;
  }

  .statement-inner,
  .editorial-inner,
  .split-showcase,
  .target-inner,
  .process-inner,
  .seo-inner,
  .final-cta-inner,
  .wide-image-text,
  .large-type-inner,
  .footer-inner,
  .page-hero-inner,
  .legal-inner {
    width: min(100% - 32px, var(--max));
  }

  .statement p {
    text-align: left;
  }

  .editorial-block,
  .target-section,
  .process-section,
  .seo-text,
  .final-cta {
    padding: 82px 0;
  }

  .editorial-image img {
    aspect-ratio: 4 / 3;
  }

  .large-type {
    padding: 90px 0;
  }

  .large-type h2 {
    font-size: clamp(52px, 16vw, 86px);
  }

  .split-showcase {
    padding: 82px 0;
  }

  .wide-image-section {
    min-height: 620px;
  }

  .wide-image-text {
    padding-bottom: 58px;
  }

  .target-grid,
  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 52px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .legal-section {
    padding: 60px 0 90px;
  }
}

/* =========================================================
   Kontaktseite: Hero
   ========================================================= */

.contact-hero {
  padding: 170px 0 90px;
  background: var(--soft);
}

.contact-hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.contact-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.contact-hero p {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}


/* =========================================================
   Kontaktseite: Layout
   ========================================================= */

.contact-page {
  padding: 100px 0 140px;
  background: var(--white);
}

.contact-layout {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}


/* =========================================================
   Kontaktseite: Linke Infospalte
   ========================================================= */

.contact-info h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.contact-info-list {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.contact-info-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-list span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.contact-info-list p {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  color: var(--text);
}

.direct-contact {
  margin-top: 48px;
}

.direct-contact p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.direct-contact a {
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}


/* =========================================================
   Kontaktseite: Formular-Panel
   ========================================================= */

.contact-panel {
  padding: 46px;
  background: var(--soft);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.contact-form label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 15px 16px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  appearance: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(156,107,61,0.35);
  border-color: var(--accent);
}

.privacy-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.privacy-note a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.form-button {
  width: fit-content;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-button:hover {
  background: var(--accent);
  border-color: var(--accent);
}


/* =========================================================
   Kontaktseite: Formular-Meldungen
   ========================================================= */

.form-message {
  padding: 22px 24px;
  font-size: 17px;
  line-height: 1.55;
}

.form-success {
  background: #eef5ec;
  color: #1f4d24;
}

.form-error {
  margin-bottom: 24px;
  background: #f7e9e6;
  color: #7a2418;
}


/* =========================================================
   Kontaktseite: Tablet
   ========================================================= */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-panel {
    padding: 32px;
  }
}


/* =========================================================
   Kontaktseite: Mobile
   ========================================================= */

@media (max-width: 680px) {
  .contact-hero {
    padding: 130px 0 70px;
  }

  .contact-hero-inner,
  .contact-layout {
    width: min(100% - 32px, var(--max));
  }

  .contact-page {
    padding: 72px 0 96px;
  }

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

  .contact-panel {
    padding: 24px;
  }

  .form-button {
    width: 100%;
  }
}

/* =========================================================
   Leistungsseiten: Hero
   ========================================================= */

.service-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--dark);
}

.service-hero-media {
  position: absolute;
  inset: 0;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.58), rgba(0,0,0,0.12)),
    linear-gradient(0deg, rgba(0,0,0,0.44), rgba(0,0,0,0.08));
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 170px 0 90px;
}

.service-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.service-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
}


/* =========================================================
   Leistungsseiten: Intro
   ========================================================= */

.service-intro {
  padding: 110px 0;
  background: var(--white);
}

.service-intro-inner {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
}

.service-intro p {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}


/* =========================================================
   Leistungsseiten: Text/Bild Split
   ========================================================= */

.service-split {
  padding: 90px 0 130px;
  background: var(--soft);
}

.service-split-inner {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: center;
}

.service-split-image {
  width: 100%;
  min-width: 0;
}

.service-split-image img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-split-text h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.service-split-text p {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}


/* =========================================================
   Leistungsseiten: Leistungen
   ========================================================= */

.service-details {
  padding: 120px 0;
  background: var(--white);
}

.service-details-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.service-details h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.service-detail-item {
  padding-top: 28px;
}

.service-detail-item span {
  display: block;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.service-detail-item h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-detail-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}


/* =========================================================
   Leistungsseiten: Für wen
   ========================================================= */

.service-audience {
  padding: 120px 0;
  background: var(--soft);
}

.service-audience-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 86px;
}

.service-audience h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.audience-list p {
  margin: 0;
  font-size: 19px;
  font-weight: 750;
  color: var(--text);
}


/* =========================================================
   Leistungsseiten: Hinweis / Abgrenzung
   ========================================================= */

.service-note {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.service-note-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.service-note h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.service-note p {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
}


/* =========================================================
   Leistungsseiten: CTA
   ========================================================= */

.service-cta {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.service-cta-inner {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
}

.service-cta h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.service-cta p {
  max-width: 680px;
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}


/* =========================================================
   Leistungsseiten: Tablet / Mobile
   ========================================================= */

@media (max-width: 980px) {
  .service-split-inner,
  .service-audience-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 700px) {
  .service-hero-inner,
  .service-intro-inner,
  .service-split-inner,
  .service-details-inner,
  .service-audience-inner,
  .service-note-inner,
  .service-cta-inner {
    width: min(100% - 32px, var(--max));
  }

  .service-hero {
    min-height: 72vh;
  }

  .service-hero-inner {
    padding: 140px 0 70px;
  }

  .service-hero h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .service-intro,
  .service-details,
  .service-audience,
  .service-note,
  .service-cta {
    padding: 78px 0;
  }

  .service-split {
    padding: 78px 0;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 54px;
  }

  .audience-list div {
    grid-template-columns: 44px 1fr;
  }
}

/* =========================================================
   Preise & Pakete
   ========================================================= */

/* =========================================================
   Preise & Pakete
   ========================================================= */

.price-hero {
  padding: 170px 0 90px;
  background: var(--soft);
}

.price-hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.price-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 122px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.price-hero p {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

.price-explain {
  padding: 100px 0;
  background: var(--white);
}

.price-explain-inner {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
}

.price-explain p {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.package-section {
  padding: 110px 0;
  background: var(--soft);
}

.package-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.package-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.package-head {
  max-width: 520px;
}

.package-body {
  max-width: 620px;
}

.package-card-featured {
  border-color: var(--accent);
  box-shadow: 0 24px 70px rgba(17,17,17,0.08);
}

.package-label {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.package-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.package-price {
  margin: 32px 0 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: var(--text);
}

.package-subline {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.package-body > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--muted);
}

.package-facts {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.package-facts div:last-child {
  border-bottom: 0;
}

.package-facts span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.package-facts strong {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.package-why {
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 2px solid var(--accent);
  color: var(--text) !important;
  font-weight: 700;
}

.package-difference {
  padding: 120px 0;
  background: var(--white);
}

.package-difference-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.package-difference h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 76px;
  border-top: 1px solid var(--line);
}

.difference-grid div {
  padding-top: 28px;
}

.difference-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.difference-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.package-rights {
  padding: 110px 0;
  background: var(--soft);
}

.package-rights-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.package-rights h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.package-rights p {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.package-note {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.package-note-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.package-note h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.package-note p {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
}

@media (max-width: 1100px) {
  .package-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 740px) {
  .price-hero {
    padding: 130px 0 70px;
  }

  .price-hero-inner,
  .price-explain-inner,
  .package-inner,
  .package-difference-inner,
  .package-rights-inner,
  .package-note-inner {
    width: min(100% - 32px, var(--max));
  }

  .price-explain,
  .package-section,
  .package-difference,
  .package-rights,
  .package-note {
    padding: 78px 0;
  }

  .package-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-hero {
  padding: 170px 0 90px;
  background: var(--soft);
}

.faq-hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.faq-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.faq-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

.faq-section {
  padding: 110px 0 130px;
  background: var(--white);
}

.faq-inner {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 86px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group details {
  border-top: 1px solid var(--line);
}

.faq-group details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-group summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 850;
  color: var(--text);
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  float: right;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  margin-left: 24px;
}

.faq-group details[open] summary::after {
  content: "–";
}

.faq-group details div {
  padding: 0 0 28px;
}

.faq-group details p {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.faq-group details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 740px) {
  .faq-hero {
    padding: 130px 0 70px;
  }

  .faq-hero-inner,
  .faq-inner {
    width: min(100% - 32px, var(--max));
  }

  .faq-section {
    padding: 78px 0 96px;
  }

  .faq-group {
    margin-bottom: 62px;
  }

  .faq-group summary {
    padding: 22px 0;
  }
}

/* =========================================================
   404
   ========================================================= */

.error-page {
  min-height: calc(100vh - 260px);
  padding: 190px 0 150px;
  background: var(--soft);
  display: flex;
  align-items: center;
}

.error-page-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.error-page h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.error-page p:not(.section-kicker) {
  max-width: 700px;
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--accent);
}

@media (max-width: 740px) {
  .error-page {
    min-height: 70vh;
    padding: 145px 0 110px;
  }

  .error-page-inner {
    width: min(100% - 32px, var(--max));
  }

  .error-actions {
    gap: 20px;
  }
}

.text-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--accent);
}

@media (max-width: 740px) {
  .error-page {
    padding: 140px 0 100px;
  }

  .error-page-inner {
    width: min(100% - 32px, var(--max));
  }
}

/* =========================================================
   Region Links
   ========================================================= */

.region-links {
  padding: 110px 0;
  background: var(--soft);
}

.region-links-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.region-links h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.region-links p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}

.region-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.region-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.region-link-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 740px) {
  .region-links {
    padding: 78px 0;
  }

  .region-links-inner {
    width: min(100% - 32px, var(--max));
  }

  .region-link-list {
    display: grid;
    gap: 10px;
  }

  .region-link-list a {
    width: 100%;
  }
}
.legal-download {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-download a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--text);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-download a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
