:root {
  --ink: #0b0b0c;
  --ink-soft: #151515;
  --surface: #1b1a19;
  --cream: #f4f0e7;
  --paper: #ebe4d8;
  --paper-strong: #dfd5c6;
  --gold: #d4ae66;
  --gold-dark: #805b22;
  --muted: #c4beb3;
  --muted-dark: #5d584f;
  --line: #35312b;
  --line-light: #cfc4b4;
  --danger: #ffb4a9;
  --success: #a9d9b3;
  --shadow: 0 24px 70px rgb(0 0 0 / 22%);
  --radius: 2px;
  --max: 1200px;
  --header-height: 88px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong,
.signature {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 400;
}

h1,
h2 {
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgb(11 11 12 / 88%);
  border-bottom: 1px solid rgb(244 240 231 / 12%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner,
.hero,
.section,
.process-section,
.about-section,
.footer-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-navigation a {
  position: relative;
  color: #e3dfd7;
  font-size: 14px;
  text-decoration: none;
}

.main-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navigation .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.menu-button {
  min-width: 52px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.menu-label {
  font-size: 13px;
}

.menu-icon {
  width: 18px;
  display: grid;
  gap: 5px;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: clamp(64px, 8vw, 110px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(50px, 6.4vw, 86px);
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: inherit;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d1ccc3;
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-actions {
  margin-bottom: 52px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-primary:hover {
  background: #e1bd78;
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-secondary {
  border-color: var(--gold-dark);
  background: transparent;
  color: var(--gold-dark);
}

.button-secondary:hover {
  background: var(--gold-dark);
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-weight: 650;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
}

.text-link span,
.product-content a span {
  color: var(--gold);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  margin: 0;
}

.hero-facts div {
  min-width: 126px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--gold);
  font-weight: 750;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portrait {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #302d28, #141414);
  box-shadow: var(--shadow);
}

.portrait::before {
  position: absolute;
  inset: 20px;
  z-index: 1;
  border: 1px solid rgb(212 174 102 / 48%);
  content: "";
  pointer-events: none;
}

.portrait::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 74%));
  content: "";
  pointer-events: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.portrait figcaption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.portrait figcaption small {
  max-width: 140px;
  color: #e1d9cb;
  font-size: 9px;
  text-align: right;
}

.section,
.process-section,
.about-section {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-heading h2,
.about-section h2,
.contact-copy h2,
.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
}

.intro-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.intro-copy,
.about-copy {
  max-width: 650px;
}

.lead {
  color: var(--cream);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
}

.intro-copy > p:not(.lead),
.about-copy > p:not(.lead) {
  color: var(--muted);
}

.process-section {
  border-block: 1px solid var(--line);
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 56px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 30px 40px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

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

.step-number {
  display: block;
  margin-bottom: 55px;
  color: var(--gold);
  font-size: 13px;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.process-list p {
  color: var(--muted);
}

.product-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--cream);
  color: #191817;
}

.product-section :focus-visible {
  outline-color: #5f4218;
}

.product-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.product-heading .eyebrow {
  color: var(--gold-dark);
}

.product-heading > p:last-child {
  max-width: 620px;
  color: var(--muted-dark);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 16px;
}

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
}

.product-card-featured {
  grid-row: span 2;
  background: #171718;
  color: var(--cream);
}

.product-label {
  padding: 26px 28px 0;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card-featured .product-label {
  color: var(--gold);
}

.product-card img {
  width: 100%;
  height: 250px;
  display: block;
  padding: 10px 24px 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card-featured img {
  height: 520px;
  padding: 0;
  mix-blend-mode: normal;
  object-fit: cover;
}

.product-content {
  flex: 1;
  padding: 24px 28px 30px;
}

.product-content h3 {
  margin-bottom: 8px;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.15;
}

.product-content p {
  color: var(--muted-dark);
}

.product-card-featured .product-content p {
  color: #c8c2b8;
}

.product-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: inherit;
  font-weight: 750;
  text-decoration-color: var(--gold-dark);
}

.shop-note {
  margin-top: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 16px 28px;
  border: 1px solid var(--line-light);
}

.shop-note p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.shop-note p strong {
  color: #191817;
}

.shop-note small {
  grid-column: 1 / -1;
  color: var(--muted-dark);
}

.about-section h2 {
  max-width: 560px;
}

.signature {
  margin-top: 44px;
  color: var(--gold) !important;
  font-size: 38px;
  font-style: italic;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
  padding: clamp(90px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--surface);
}

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

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-copy address {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-style: normal;
}

.contact-copy address a {
  width: fit-content;
  color: var(--gold);
  font-size: 18px;
}

.contact-form {
  position: relative;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #ddd8ce;
  font-size: 13px;
  font-weight: 650;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #4a453e;
  border-radius: 0;
  background: #101010;
  color: var(--cream);
  caret-color: var(--gold);
}

.field input,
.field select {
  padding: 0 14px;
}

.field textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #6b6357;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px var(--gold);
}

.privacy-note {
  margin: 2px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-note a {
  color: #eee8dc;
}

.form-actions > span {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 27px;
  margin: 16px 0 0;
  font-weight: 650;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

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

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 45px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-inner p {
  margin-bottom: 0;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Rechtliche Seiten */
.legal-body {
  background: #101011;
}

.legal-header .header-inner {
  border-bottom: 0;
}

.legal-back {
  color: var(--gold);
  font-size: 14px;
}

.legal-page {
  width: min(100% - 48px, 940px);
  margin-inline: auto;
  padding-block: clamp(70px, 9vw, 120px);
}

.legal-page h1 {
  margin-bottom: 54px;
}

.legal-page h2 {
  margin: 52px 0 14px;
  color: var(--gold);
  font-size: 25px;
  letter-spacing: -0.01em;
}

.legal-page h3 {
  margin: 30px 0 10px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 750;
}

.legal-page p,
.legal-page li {
  color: #d3cec5;
}

.legal-page a {
  color: #e3bd76;
}

.legal-page address {
  font-style: normal;
}

.legal-page ul {
  padding-left: 1.3rem;
}

.legal-notice {
  margin-top: 46px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #171718;
}

.submission-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 75% 20%, rgb(212 174 102 / 13%), transparent 34rem),
    var(--ink);
}

.submission-page {
  width: min(100%, 700px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.submission-page h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
}

.submission-page .form-status {
  margin-bottom: 32px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 44px;
  }

  .portrait,
  .portrait img {
    min-height: 520px;
  }

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

  .product-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-card-featured .product-label {
    position: absolute;
    z-index: 2;
  }

  .product-card-featured img {
    height: 440px;
  }

  .product-card-featured .product-content {
    align-self: center;
    padding: 50px;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 78px;
  }

  .header-inner,
  .hero,
  .section,
  .process-section,
  .about-section,
  .footer-inner {
    width: min(100% - 36px, var(--max));
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 18px;
    background: #111;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation a,
  .main-navigation .nav-cta {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 62px 78px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .portrait {
    max-width: 590px;
    width: 100%;
    justify-self: center;
  }

  .intro-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 4px 20px;
    padding: 30px 0;
    border-right: 0;
  }

  .step-number {
    grid-row: span 2;
    margin: 5px 0 0;
  }

  .process-list h3,
  .process-list p {
    margin-bottom: 0;
  }

  .product-section,
  .contact-section {
    padding-inline: 18px;
  }

  .product-card-featured {
    display: flex;
  }

  .product-card-featured .product-label {
    position: static;
  }

  .product-card-featured img {
    height: 430px;
  }

  .product-card-featured .product-content {
    padding: 28px;
  }

  .shop-note {
    grid-template-columns: 1fr;
  }

  .shop-note small {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner nav {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

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

  .portrait,
  .portrait img {
    min-height: 430px;
  }

  .portrait figcaption {
    right: 26px;
    left: 26px;
  }

  .portrait figcaption small {
    display: none;
  }

  .section,
  .process-section,
  .about-section {
    padding-block: 78px;
  }

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

  .product-card-featured {
    grid-column: auto;
  }

  .product-card img,
  .product-card-featured img {
    height: 320px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inner nav {
    justify-self: start;
  }

  .copyright {
    grid-column: 1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .button,
  .main-navigation .nav-cta,
  .portrait,
  .shop-note {
    border: 1px solid CanvasText;
  }
}
