:root {
  --red: #9f1f2d;
  --red-bright: #c32d3c;
  --red-dark: #67131e;
  --green: #244437;
  --green-soft: #50705f;
  --cream: #f3eee3;
  --paper: #fffcf5;
  --ink: #201e1a;
  --muted: #746e65;
  --gold: #b98a4e;
  --line: rgba(32, 30, 26, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --page: min(100% - 40px, 1320px);
}

* {
  box-sizing: border-box;
}

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

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(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--red-dark);
  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: 80px;
  padding: 10px max(20px, calc((100vw - 1320px) / 2));
  background: rgba(255, 252, 245, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--red);
  font-family: var(--serif);
  text-decoration: none;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.brand span {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
}

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

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

.main-nav a:hover {
  color: var(--red);
}

.nav-contact {
  padding: 9px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
}

.main-nav .nav-contact:hover {
  color: #fff;
  background: var(--red-dark);
}

.awz-mark {
  display: grid;
  min-width: 66px;
  padding-left: 22px;
  text-align: right;
  border-left: 1px solid var(--line);
  line-height: 1;
}
.awz-mark img { display: block; width: 84px; height: auto; }

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

.awz-mark span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .54rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-bright);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .17em;
  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: -.038em;
  line-height: .98;
}

h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 6.7rem);
}

h2 {
  color: var(--red-dark);
  font-size: clamp(2.6rem, 4.9vw, 5.2rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, .72fr) minmax(530px, 1.28fr);
  align-items: center;
  min-height: calc(100svh - 80px);
  color: #fff;
  background: var(--red);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(65px, 8vw, 120px) clamp(32px, 5vw, 82px) clamp(75px, 9vw, 130px) max(20px, calc((100vw - 1320px) / 2));
}

.hero-copy .eyebrow {
  color: #f0c8bd;
}

.hero-lead {
  max-width: 580px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.9vw, 1.75rem);
  line-height: 1.42;
}

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

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

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

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

.button-white {
  color: var(--red-dark);
  background: #fff;
}

.under-link {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.under-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.under-link:hover span {
  transform: translate(3px, 3px);
}

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

.hero-figure {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px max(20px, calc((100vw - 1320px) / 2)) 35px 0;
  background: var(--cream);
}

.hero-figure::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 80px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(159,31,45,.3), transparent);
}

.image-frame {
  overflow: hidden;
  background: var(--cream);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-frame-hero {
  position: relative;
  z-index: 1;
  box-shadow: 0 28px 65px rgba(49,36,30,.18);
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: right;
}

.hero-note {
  position: absolute;
  bottom: 22px;
  left: max(20px, calc((100vw - 1320px) / 2));
  z-index: 3;
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .18em;
}

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

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

.section-number {
  margin: 5px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .12em;
}

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

.region-list {
  margin: clamp(58px, 7vw, 90px) 0 0 125px;
  border-top: 1px solid var(--line);
}

.region-list article {
  display: grid;
  grid-template-columns: 60px minmax(230px, .65fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
}

.region-index {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.region-list h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  font-weight: 400;
}

.region-list p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
}

.seller-section {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(380px, .9fr) minmax(320px, .68fr);
  gap: clamp(35px, 6vw, 85px);
  align-items: end;
  padding: clamp(90px, 11vw, 165px) max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--green);
  overflow: hidden;
}

.seller-section::after {
  position: absolute;
  right: -190px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

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

.seller-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .17em;
  writing-mode: vertical-rl;
}

.seller-art i {
  width: 1px;
  height: 85px;
  background: var(--gold);
}

.eyebrow-pale {
  color: #d2c29f;
}

.seller-heading h2 {
  max-width: 680px;
  color: #fff;
}

.seller-copy {
  max-width: 500px;
}

.seller-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.42;
}

.seller-copy > p:not(.seller-lead) {
  margin: 20px 0 0;
  color: rgba(255,255,255,.7);
}

.button-red {
  margin-top: 27px;
  color: #fff;
  background: var(--red-bright);
}

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

.buyer-section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) 0;
}

.buyer-figure {
  width: 72%;
}

.buyer-figure::before {
  position: absolute;
  z-index: -1;
  top: calc(clamp(90px, 12vw, 180px) - 34px);
  left: -34px;
  width: 42%;
  height: 52%;
  content: "";
  background: var(--cream);
}

.image-frame-city {
  box-shadow: 0 28px 65px rgba(49,36,30,.15);
}

.buyer-card {
  position: absolute;
  right: 0;
  bottom: clamp(70px, 9vw, 130px);
  width: min(47%, 570px);
  padding: clamp(30px, 4.5vw, 62px);
  background: #fff;
  border-top: 5px solid var(--red);
  box-shadow: 0 22px 60px rgba(49,36,30,.17);
}

.buyer-card h2 {
  max-width: 500px;
}

.buyer-card > p:not(.section-number):not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
}

.buyer-card ul {
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.buyer-card li {
  position: relative;
  padding: 11px 9px 11px 25px;
  border-bottom: 1px solid var(--line);
}

.buyer-card li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.under-link-dark {
  color: var(--red-dark);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .6fr) minmax(570px, 1fr);
  gap: clamp(55px, 8vw, 130px);
  padding: clamp(90px, 10vw, 155px) max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}

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

.contact-copy > p:not(.section-number):not(.eyebrow) {
  max-width: 450px;
  margin: 27px 0 0;
  color: var(--muted);
}

.personal-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
  padding: 23px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--red);
  font-style: normal;
}

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

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

.personal-contact > span:not(.contact-label) {
  margin-bottom: 10px;
  color: var(--muted);
}

.personal-contact a {
  font-weight: 800;
}

.contact-form {
  padding: clamp(27px, 4vw, 54px);
  background: var(--paper);
  box-shadow: 0 24px 65px rgba(49,36,30,.12);
}

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

.contact-form legend {
  margin-bottom: 14px;
  color: var(--green);
  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(--green);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
  border: 1px solid var(--line);
}

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

.radio-row input:focus-visible + span {
  outline: 3px solid var(--gold);
  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(32,30,26,.32);
  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(--red);
  outline: 0;
  box-shadow: 0 2px 0 var(--red);
}

textarea::placeholder {
  color: #9a9389;
}

.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(--red);
}

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

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

.button-submit:hover {
  background: var(--red-dark);
}

.form-status {
  margin: 0;
  color: var(--red-dark);
  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,.62);
  background: var(--red-dark);
  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-mark {
    display: grid;
  }

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

  .hero {
    grid-template-columns: minmax(330px, .76fr) minmax(430px, 1.24fr);
  }

  h1 {
    font-size: clamp(3.1rem, 5.5vw, 4.6rem);
  }

  .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(49,36,30,.15);
  }

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

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

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 58px 16px 72px;
  }

  h1 {
    max-width: 690px;
    font-size: clamp(3.3rem, 11.5vw, 5.8rem);
  }

  .hero-figure {
    min-height: 0;
    padding: 30px 16px 24px;
  }

  .hero-figure::before,
  .hero-note {
    display: none;
  }

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

  .region-list {
    margin-left: 75px;
  }

  .region-list article {
    grid-template-columns: 40px 1fr;
    gap: 8px 18px;
    padding: 26px 0;
  }

  .region-list p {
    grid-column: 2;
  }

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

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

  .seller-art i {
    width: 75px;
    height: 1px;
  }

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

  .buyer-section {
    display: grid;
    gap: 0;
  }

  .buyer-figure {
    width: 100%;
  }

  .buyer-figure::before {
    top: 60px;
    left: -16px;
    width: 60%;
    height: 35%;
  }

  .buyer-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 44px);
    margin: -25px 0 0 auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

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

  body {
    font-size: 16px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand span {
    font-size: .64rem;
  }

  .hero-copy {
    padding: 48px 14px 64px;
  }

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

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

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

  .button {
    width: 100%;
  }

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

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

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

  .region-list {
    margin-left: 0;
  }

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

  .buyer-card {
    width: calc(100% - 16px);
    padding: 28px 21px;
  }

  .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}
