:root {
  --navy: #132938;
  --navy-deep: #0b1b26;
  --navy-soft: #2e4b5d;
  --copper: #c77d55;
  --copper-light: #e2b095;
  --sand: #eee8de;
  --cream: #faf7f0;
  --paper: #fffdfa;
  --ink: #15212a;
  --muted: #687177;
  --line: rgba(19, 41, 56, 0.18);
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page: min(100% - 40px, 1320px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 10px max(20px, calc((100vw - 1320px) / 2));
  color: var(--navy);
  background: rgba(255, 253, 250, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.25rem;
  border: 1px solid var(--copper);
}

.brand strong {
  font-weight: 850;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
}

.main-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 18px;
  color: #fff;
  background: var(--navy);
}

.awz-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  line-height: 1;
}
.awz-wordmark img { display: block; width: 84px; height: auto; }

.awz-wordmark strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.awz-wordmark span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.54rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.menu-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-icon::before {
  top: -6px;
  left: 0;
}

.menu-icon::after {
  top: 6px;
  left: 0;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow,
.section-tag {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(3.3rem, 5.8vw, 6.4rem);
}

h1 em {
  display: block;
  margin-top: 10px;
  color: var(--copper-light);
  font-weight: 400;
}

h2 {
  color: var(--navy-deep);
  font-size: clamp(2.55rem, 4.7vw, 5rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(35px, 5vw, 80px);
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 8vw, 120px) max(20px, calc((100vw - 1320px) / 2));
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-copy,
.hero-figure,
.hero-rule {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  line-height: 1.45;
}

.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-copper {
  color: var(--navy-deep);
  background: var(--copper-light);
}

.button-copper:hover {
  background: #f1c6ad;
}

.arrow-link {
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
}

.arrow-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--copper-light);
  transition: transform 180ms ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.hero-figure,
.buyer-figure {
  margin: 0;
}

.hero-image,
.buyer-image {
  overflow: hidden;
  background: var(--sand);
}

.hero-image img,
.buyer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-image {
  box-shadow: 28px 28px 0 rgba(199, 125, 85, 0.2);
}

figcaption {
  margin-top: 9px;
  color: rgba(255,255,255,.6);
  font-size: 0.6rem;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: right;
}

.hero-rule {
  position: absolute;
  right: max(20px, calc((100vw - 1320px) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-rule i {
  width: 70px;
  height: 1px;
  background: var(--copper);
}

.perspective-section {
  padding: clamp(85px, 11vw, 165px) max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 850px);
  gap: 35px;
  align-items: start;
}

.section-heading h2 {
  max-width: 850px;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(55px, 7vw, 90px);
  background: var(--line);
  border: 1px solid var(--line);
}

.perspective-grid article {
  min-height: 315px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper);
}

.card-no {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--copper);
  font-family: var(--serif);
  border: 1px solid var(--copper);
}

.perspective-grid h3 {
  margin: 62px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 400;
}

.perspective-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.seller-section {
  position: relative;
  display: grid;
  grid-template-columns: 75px minmax(430px, 1fr) minmax(300px, .7fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  padding: clamp(85px, 10vw, 150px) max(20px, calc((100vw - 1240px) / 2));
  background: var(--copper);
  overflow: hidden;
}

.seller-section::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(19,41,56,.2);
  transform: rotate(45deg);
}

.seller-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(19,41,56,.72);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.seller-aside i {
  width: 1px;
  height: 74px;
  background: var(--navy);
}

.seller-copy,
.seller-quote {
  position: relative;
  z-index: 1;
}

.seller-copy .section-tag {
  color: var(--navy);
}

.seller-copy h2 {
  max-width: 740px;
}

.seller-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  line-height: 1.45;
}

.seller-copy > p:not(.section-tag):not(.seller-lead) {
  max-width: 560px;
  margin: 19px 0 0;
  color: rgba(19,41,56,.8);
}

.button-navy {
  margin-top: 28px;
  color: #fff;
  background: var(--navy);
}

.button-navy:hover {
  background: var(--navy-deep);
}

.seller-quote {
  padding: 10px 0 10px 35px;
  border-left: 1px solid rgba(19,41,56,.45);
}

.seller-quote p {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
  line-height: 1.25;
}

.buyer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .76fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 175px) 0;
}

.buyer-figure {
  position: relative;
}

.buyer-figure::before {
  position: absolute;
  z-index: -1;
  top: -34px;
  left: -34px;
  width: 65%;
  height: calc(100% + 68px);
  content: "";
  background: var(--sand);
}

.buyer-image {
  box-shadow: 0 28px 60px rgba(19,41,56,.14);
}

.buyer-figure figcaption {
  color: var(--muted);
}

.buyer-copy h2 {
  max-width: 570px;
}

.buyer-copy > p:not(.section-tag) {
  max-width: 540px;
  margin: 27px 0 0;
  color: var(--muted);
}

.buyer-points {
  margin: 32px 0;
}

.buyer-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.buyer-points div:last-child {
  border-bottom: 1px solid var(--line);
}

.buyer-points dt {
  color: var(--copper);
  font-family: var(--serif);
  font-size: .86rem;
}

.buyer-points dd {
  margin: 0;
  color: var(--navy);
}

.arrow-link-dark {
  color: var(--navy);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(290px, .64fr) minmax(570px, 1fr);
  gap: clamp(55px, 8vw, 130px);
  padding: clamp(85px, 10vw, 155px) max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--navy-deep);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.section-tag) {
  max-width: 470px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.67);
}

.personal-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
  padding: 24px 0 0 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 3px solid var(--copper);
  font-style: normal;
}

.contact-kicker {
  margin-bottom: 15px;
  color: var(--copper-light);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.personal-contact strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.personal-contact > span:not(.contact-kicker) {
  margin-bottom: 10px;
  color: rgba(255,255,255,.6);
}

.personal-contact a {
  color: #fff;
  font-weight: 750;
}

.contact-form {
  padding: clamp(27px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-row label {
  position: relative;
  cursor: pointer;
}

.radio-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
  border: 1px solid var(--line);
}

.radio-row input:checked + span {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.radio-row input:focus-visible + span {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  margin-top: 34px;
}

.field-grid label {
  display: grid;
  gap: 6px;
}

.field-grid label > span {
  color: var(--muted);
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .045em;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(19,41,56,.3);
  border-radius: 0;
}

input {
  min-height: 47px;
  padding: 7px 2px;
}

textarea {
  min-height: 126px;
  padding: 12px 2px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--copper);
  outline: 0;
  box-shadow: 0 2px 0 var(--copper);
}

textarea::placeholder {
  color: #92999d;
}

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

.privacy-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 25px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button-submit {
  flex: 0 0 auto;
  color: #fff;
  background: var(--copper);
}

.button-submit:hover {
  background: #ae633f;
}

.form-status {
  margin: 0;
  color: var(--navy);
  font-size: .77rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 20px max(20px, calc((100vw - 1320px) / 2));
  color: rgba(255,255,255,.6);
  background: #07141c;
  font-size: .71rem;
}

.site-footer p {
  margin: 0;
}

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

.site-footer a {
  color: #fff;
}

@media (max-width: 1120px) {
  .awz-wordmark {
    display: flex;
  }

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

  .hero {
    grid-template-columns: minmax(340px, .9fr) minmax(430px, 1.1fr);
  }

  h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.5rem);
  }

  .seller-section {
    grid-template-columns: 60px minmax(380px, 1fr) minmax(270px, .7fr);
  }

  .contact-section {
    grid-template-columns: minmax(260px, .55fr) minmax(480px, 1fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(11,27,38,.16);
  }

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

  .main-nav a {
    padding: 12px 5px;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 11px 16px !important;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 16px 78px;
  }

  .hero::before {
    width: 100%;
    opacity: .5;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.25rem, 11vw, 5.7rem);
  }

  .hero-copy {
    padding-right: 10px;
  }

  .hero-figure {
    margin-top: 35px;
  }

  .hero-rule {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .perspective-grid article {
    min-height: 0;
  }

  .perspective-grid h3 {
    margin-top: 35px;
  }

  .seller-section {
    grid-template-columns: 1fr;
  }

  .seller-aside {
    flex-direction: row;
    justify-content: flex-start;
    writing-mode: horizontal-tb;
  }

  .seller-aside i {
    width: 74px;
    height: 1px;
  }

  .seller-copy,
  .seller-quote {
    max-width: 680px;
  }

  .seller-quote {
    margin-top: 20px;
  }

  .buyer-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .buyer-section {
    gap: 72px;
  }

  .buyer-figure {
    max-width: 680px;
  }

  .buyer-copy {
    max-width: 640px;
  }

  .contact-section {
    gap: 58px;
  }

  .contact-copy,
  .personal-contact {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: .72rem;
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
  }

  .hero {
    padding: 48px 14px 70px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-actions,
  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .arrow-link {
    align-self: flex-start;
    padding: 4px 0;
  }

  .hero-image {
    box-shadow: 12px 12px 0 rgba(199,125,85,.2);
  }

  .perspective-section,
  .seller-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .buyer-section {
    width: calc(100% - 28px);
  }

  .buyer-figure::before {
    top: -16px;
    left: -14px;
    height: calc(100% + 32px);
  }

  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-copy {
    padding: 0 6px;
  }

  .personal-contact {
    margin-top: 38px;
    padding-left: 20px;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .radio-row {
    flex-direction: column;
    align-items: stretch;
  }

  .radio-row span {
    width: 100%;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* AWZ: Symbolbild-Kennzeichnung im Bild, rechts unten */
figure>div:has(>.image-caption){position:relative}.image-caption{position:absolute;z-index:5;right:10px;bottom:10px;display:block;width:max-content;max-width:calc(100% - 20px);margin:0;padding:4px 8px;color:#fff;background:rgba(17,34,44,.82);font-size:11px;line-height:1.2;letter-spacing:0;text-align:right}
