@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel/Cinzel-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --deep-green: #0D1F17;
  --rich-black: #0A0A0A;
  --dark-gold: #B89A5A;
  --dark-gold-hover: #cbb078;
  --text-light: #EDE8DD;
  --text-muted: #a9b3ad;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Montserrat", Georgia, serif;
  color: var(--text-light);
  background-color: var(--rich-black);
}

/* Feines Rauschen ueber der ganzen Seite, bricht die komplett flache Flaeche auf */
.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 64px);
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(184, 154, 90, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, rgba(10, 10, 10, 0.86) 0%, rgba(13, 31, 23, 0.93) 100%),
    url("assets/background-original.jpg");
  background-size: cover;
  background-position: center;
  animation: slow-pan 40s ease-in-out infinite alternate;
}

@keyframes slow-pan {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

.panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background-color: var(--deep-green);
  border: 1px solid rgba(184, 154, 90, 0.22);
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(5, 15, 10, 0.65), 0 4px 18px rgba(184, 154, 90, 0.06);
  padding: clamp(36px, 8vw, 56px) clamp(26px, 6vw, 48px);
  text-align: center;
  animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .page::before { animation: none; }
  .panel { animation: none; }
}

.logo {
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  border-radius: 6px;
  box-shadow: 0 12px 28px -10px rgba(184, 154, 90, 0.45);
}

.brand-col {
  position: relative;
}

.headline {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 5.5vw, 38px);
  letter-spacing: 1.5px;
  line-height: 1.15;
  margin: 0 0 20px 0;
  color: var(--text-light);
  text-transform: uppercase;
  text-wrap: balance;
}

.subline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}

.col-divider {
  display: none;
}

.form-col {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(184, 154, 90, 0.18);
}

.form-headline {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.6px;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 22px 0;
  color: var(--dark-gold);
  text-transform: uppercase;
}

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

.email-input {
  width: 100%;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 154, 90, 0.35);
  border-radius: 4px;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.email-input::placeholder {
  color: var(--text-muted);
}

.email-input:hover {
  border-color: rgba(184, 154, 90, 0.55);
}

.email-input:focus {
  outline: none;
  border-color: var(--dark-gold);
  background-color: rgba(255, 255, 255, 0.07);
}

.price-signal {
  border: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.price-signal legend {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

.price-signal .optional {
  font-style: italic;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.price-option {
  position: relative;
}

.price-option input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.price-option span {
  display: block;
  text-align: center;
  padding: 9px 10px;
  font-size: 13px;
  border: 1px solid rgba(184, 154, 90, 0.3);
  border-radius: 4px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.price-option:hover span {
  border-color: rgba(184, 154, 90, 0.6);
  color: var(--text-light);
}

.price-option input:checked + span {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: var(--rich-black);
}

.price-option input:active + span {
  transform: scale(0.97);
}

.price-option input:focus-visible + span {
  outline: 2px solid var(--dark-gold);
  outline-offset: 2px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 15px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-align: center;
  text-decoration: none;
  color: var(--rich-black);
  background-color: var(--dark-gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px -8px rgba(184, 154, 90, 0.5);
}

.submit-button:hover {
  background-color: var(--dark-gold-hover);
  box-shadow: 0 10px 24px -8px rgba(184, 154, 90, 0.65);
}

.submit-button:active {
  transform: scale(0.98);
}

.submit-button:focus-visible {
  outline: 2px solid var(--text-light);
  outline-offset: 2px;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  min-height: 18px;
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0 0;
}

.form-message.is-error {
  color: #e07a5f;
}

.form-message.is-success {
  color: var(--dark-gold);
}

.fine-print {
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 26px 0 0 0;
}

.fine-print a {
  color: var(--dark-gold);
}

/* --- Desktop: aus der einen Mobil-Karte wird ein echtes Zwei-Spalten-Layout --- */
@media (min-width: 880px) {
  .panel {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1.1fr auto 0.9fr;
    align-items: stretch;
    text-align: left;
    padding: clamp(48px, 5vw, 72px);
    gap: clamp(36px, 4vw, 60px);
  }

  .brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
  }

  .brand-col::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(184, 154, 90, 0.14) 0%, transparent 70%);
    pointer-events: none;
  }

  .brand-col .logo {
    width: 108px;
    height: 108px;
    margin-bottom: 32px;
  }

  .brand-col .subline {
    max-width: 34ch;
  }

  .col-divider {
    display: block;
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(184, 154, 90, 0.3), transparent);
  }

  .form-col {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    display: flex;
    align-items: center;
  }

  .form-inner {
    width: 100%;
  }

  .form-headline,
  .price-signal legend {
    text-align: left;
  }
}

/* ============================================================
   Abschnitte unterhalb des Hero
   Zweck: Kaltbesuchern von Social Media erklaeren, worum es geht,
   ohne die Struktur des Journals preiszugeben.
   ============================================================ */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section {
  position: relative;
  padding: clamp(72px, 13vw, 150px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(184, 154, 90, 0.12);
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}

.section-headline {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 4.2vw, 34px);
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 22px 0;
  text-wrap: balance;
}

.section-body {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  max-width: 58ch;
  text-wrap: pretty;
}

/* --- Das Prinzip --- */

.section-principle {
  background-color: var(--rich-black);
}

.section-accent {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(17px, 2.4vw, 22px);
  letter-spacing: 1px;
  color: var(--dark-gold);
  margin: 34px 0 0 0;
}

/* --- Markenkern --- */

.section-creed {
  background-color: var(--deep-green);
  text-align: center;
}

.creed {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(19px, 3.2vw, 29px);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.creed-line {
  display: block;
}

.creed-negative {
  color: var(--text-muted);
}

.creed-positive {
  color: var(--text-light);
  margin-top: 20px;
}

/* --- Ausblick mit Schattenwurf --- */

.section-more {
  background-color: var(--rich-black);
}

.section-more-grid {
  display: grid;
  gap: clamp(44px, 7vw, 76px);
  align-items: center;
}

/* Angestrahlte Flaeche, auf die der Schatten faellt. Ohne sie waere ein
   schwarzer Schatten auf fast schwarzem Grund unsichtbar. */
.more-shadows {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(34px, 6vw, 58px);
  min-height: 260px;
  padding: 30px clamp(18px, 4vw, 34px) 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 86% 78% at 50% 46%, rgba(214, 186, 122, 0.46) 0%, rgba(184, 154, 90, 0.26) 44%, rgba(184, 154, 90, 0.09) 68%, transparent 88%),
    linear-gradient(180deg, rgba(237, 232, 221, 0.05) 0%, rgba(237, 232, 221, 0.12) 55%, rgba(237, 232, 221, 0.06) 100%);
}

/* Bodenkante, damit die Schatten auf etwas zu stehen scheinen */
.more-shadows::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 154, 90, 0.34), transparent);
}

/* Schattenwurf statt Produktbild: deutet an, ohne ein Produkt zu behaupten.
   Beide teilen denselben Neigungswinkel, sonst wirkt es wie zwei Lichtquellen.
   Der Winkel bleibt flach genug, dass die Sanduhrform lesbar bleibt. */
.shadow-shape {
  fill: #05100B;
  opacity: 0.94;
  filter: blur(1.5px);
  transform-origin: bottom center;
}

.shadow-hourglass {
  width: clamp(78px, 14vw, 112px);
  transform: skewX(-7deg) scaleY(1.04);
}

.shadow-pen {
  width: clamp(15px, 2.6vw, 21px);
  transform: skewX(-7deg);
  opacity: 0.72;
}

/* --- Abschluss --- */

.section-close {
  background-color: var(--deep-green);
  text-align: center;
}

.section-close .section-body {
  margin: 0 auto;
}

.close-headline {
  color: var(--dark-gold);
}

.close-button {
  width: auto;
  min-width: 220px;
  margin: 36px auto 0 auto;
  padding: 15px 34px;
}

/* --- Fusszeile --- */

.site-footer {
  background-color: var(--rich-black);
  border-top: 1px solid rgba(184, 154, 90, 0.12);
  padding: 30px clamp(20px, 5vw, 64px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand {
  font-family: "Cinzel", Georgia, serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  color: var(--dark-gold);
}

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

.footer-nav a,
.site-footer a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.site-footer a:hover {
  color: var(--dark-gold);
}

.footer-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--dark-gold);
  outline-offset: 3px;
}

/* --- Desktop-Aufteilung des Ausblick-Abschnitts --- */

@media (min-width: 880px) {
  .section-more-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .more-shadows {
    min-height: 290px;
  }
}

/* --- Einblenden beim Scrollen ---
   Nutzt scroll-driven animations. Bewusst hinter @supports, damit ohne
   Browser-Unterstuetzung nichts unsichtbar bleibt. */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal > .section-inner {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
  }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Bestaetigungsseite nach dem Double-Opt-in-Klick --- */

.panel-single {
  max-width: 520px;
  display: block;
  text-align: center;
}

.panel-single .logo {
  margin-left: auto;
  margin-right: auto;
}

.panel-single .subline {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.thanks-accent {
  margin-top: 30px;
}

@media (min-width: 880px) {
  .panel-single {
    grid-template-columns: none;
    padding: clamp(48px, 5vw, 72px);
    text-align: center;
  }
}

/* --- Rechtsseiten (Impressum, Datenschutz) --- */

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) clamp(20px, 5vw, 40px);
}

.legal-page h1 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 4.2vw, 32px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 34px 0;
}

.legal-page h2 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark-gold);
  margin: 42px 0 14px 0;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 20px;
  margin: 0 0 16px 0;
}

.legal-page a {
  color: var(--dark-gold);
}

.legal-back {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--dark-gold);
}

/* Platzhalter, die vor dem Livegang ersetzt werden muessen.
   Bewusst auffaellig, damit sie nicht versehentlich online bleiben. */
.legal-todo {
  display: block;
  padding: 14px 16px;
  margin: 0 0 20px 0;
  border: 1px dashed #e07a5f;
  border-radius: 4px;
  color: #e07a5f;
  font-size: 14px;
  line-height: 1.6;
}
