@font-face {
  font-family: "Unicod";
  src: url("fonts/Unicod-Regular4.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-red: #df1017;
  --brand-red-dark: #b60f13;
  --brand-yellow: #f7d70a;
  --brand-green: #7ec800;
  --brand-blue: #1888d7;
  --brand-orange: #f48c14;
  --ink: #565656;
  --ink-dark: #333;
  --muted: #6f6f6f;
  --panel: #f7f7f7;
  --shadow: 0 1.1rem 2.4rem rgba(36,36,36,.12);
  --shadow-soft: 0 .8rem 1.8rem rgba(36,36,36,.08);
  --radius-lg: 1.8rem;
  --radius-md: 1.2rem;
  --font-body: "KlavikaWebBasic", "Trebuchet MS", sans-serif;
  --font-display: "KlavikaWebBasic", sans-serif;
}

/* ALLE Headlines */
h1,
h2,
h3,
.hero-title,
.section-title,
.section-kicker,
.section-subtitle,
.footer-word,
.prize-badge,
.hero-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* font-weight: 600 überschrieben durch 700 oben – redundant entfernt */
.hero-title,
.section-title,
.section-kicker,
.footer-word {
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top right, rgba(223, 16, 23, 0.06), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(247, 215, 10, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  overflow-x: hidden;
}

a {
  color: var(--brand-red);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

a.hidden-gem {
  text-decoration: none;
  color: var(--ink);
}

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

main {
  position: relative;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  overflow: clip;
  color: #fff;
  background: var(--brand-red);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1.1rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.06), transparent 28%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-block: clamp(1.4rem, 3vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.8rem);
  min-height: clamp(21rem, 44vw, 35rem);
}

.hero-row {
  min-height: inherit;
}

.hero-badge-cluster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bricks {
  position: absolute;
  inset: -0.8rem auto auto -4%;
  width: min(66vw, 48rem);
  max-width: none;
  filter: drop-shadow(0 1.2rem 1.8rem rgba(0, 0, 0, 0.18));
  transform: rotate(-2deg);
}

.hero-brick {
  position: absolute;
  width: clamp(4rem, 7vw, 6.5rem);
  filter: drop-shadow(0 0.7rem 1rem rgba(0, 0, 0, 0.2));
  opacity: 0.96;
}

.hero-brick--one {
  right: 24%;
  top: 8%;
  transform: rotate(16deg);
}

.hero-brick--two {
  right: 12%;
  top: 56%;
  transform: rotate(-10deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-overline {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  margin-top: .22em;
}

.hero-title sup {
  position: relative;
  top: -0.7em;
  font-size: 42%;
  line-height: 0;
  vertical-align: baseline;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: .45rem .95rem .5rem;
  color: #fff;
  background: rgba(39, 39, 39, 0.88);
  border-radius: .2rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  transform: skewX(-10deg) rotate(-3deg);
  box-shadow: var(--shadow-soft);
  width: fit-content;
}

.hero-art {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-art-frame {
  position: relative;
  min-height: 18rem;
}

.hero-art-ornament {
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: clamp(4.5rem, 8vw, 7rem);
  transform: rotate(-16deg);
  margin-inline: auto;
  filter: drop-shadow(0 1.3rem 1.9rem rgba(0, 0, 0, 0.18));
}

/* HERO BUTTON */
.hero-tdot-button {
  width: clamp(14rem, 24vw, 20rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.25));
  cursor: pointer;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  animation: subtle-shake 6s infinite;
}

.hero-tdot-button:hover {
  transform: translateY(-0.8rem) scale(1.03);
  filter: drop-shadow(0 1.6rem 2.4rem rgba(0, 0, 0, 0.28));
}

.hero-tdot-button-link {
  display: inline-block;
  text-decoration: none;
}

@keyframes subtle-shake {
  0%, 92%, 100% { transform: translateX(0); }
  93% { transform: translateX(-2px); }
  94% { transform: translateX(2px); }
  95% { transform: translateX(-2px); }
  96% { transform: translateX(0); }
}

/* ===== CONTENT ===== */

.content-section {
  padding-block: clamp(3rem, 6vw, 5.25rem);
}

.content-section--intro {
  padding-top: clamp(2.5rem, 5vw, 4.2rem);
}

.section-kicker {
  margin: 0 0 .3rem;
  font-family: var(--font-display);
  color: var(--ink-dark);
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  line-height: 1;
}

.section-kicker sup {
  position: relative;
  top: -0.45em;
  font-size: 48%;
}

.section-title {
  margin: 0 0 1.1rem;
  color: var(--ink-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.section-title--compact {
  margin-bottom: 1rem;
}

.section-text,
.rules-list p,
.footer-contact,
.section-subtitle {
  font-size: clamp(1.4rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.section-text {
  margin: 0 0 1rem;
  max-width: 42rem;
}

.section-text--strong span {
  font-weight: 700;
}

.section-text sup {
  position: relative;
  top: -0.35em;
  font-size: 55%;
}

/* Option Section Pickup*/
/*
.section-text--pickup {
  display: inline-block;

  padding: 1rem 1.25rem;

  background: rgba(223,16,23,.05);

  border-left: 4px solid var(--brand-red);
  border-radius: .75rem;
}
*/

.section-visual {
  margin-inline: auto;
}

.visual-drone {
  width: min(100%, 31rem);
}

.visual-tractor {
  width: min(100%, 28rem);
}

.section-subtitle {
  margin: 1.2rem 0 .45rem;
  font-weight: 700;
  color: var(--ink-dark);
}

.text-highlight {
  color: var(--brand-red);
  font-weight: 700;
}

/* ===== COUPONS ===== */

.coupon-stage {
  position: relative;
}

.coupon-hint {
  margin: 0 0 .9rem;
  color: var(--muted);
  text-align: center;
  font-size: .92rem;
  letter-spacing: .01em;
}

.coupon-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  transition: min-height .35s ease;
  min-height: clamp(10rem, 16vw, 14rem);
}

.coupon-grid--interactive {
  display: block;
  min-height: clamp(18rem, 33vw, 24rem);
}

.coupon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  user-select: none;
  touch-action: none;
  cursor: grab;
  transform-origin: center;
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    filter .22s ease,
    left .12s linear,
    top .12s linear;
  will-change: left, top, transform;
}

.coupon img {
  width: clamp(9rem, 18vw, 14rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 1rem 1.6rem rgba(0,0,0,.16));
  pointer-events: none;
}

.coupon:hover,
.coupon:focus-visible {
  transform: translateY(-.35rem) rotate(var(--coupon-tilt));
}

.coupon--red   { --coupon-tilt: -6deg; }
.coupon--green { --coupon-tilt:  7deg; }
.coupon--blue  { --coupon-tilt: -5deg; }
.coupon--yellow{ --coupon-tilt:  4deg; }

.coupon-grid--interactive .coupon {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  transform: translate3d(0,0,0) rotate(var(--coupon-rotation, 0deg));
}

.coupon-grid--interactive .coupon.is-dragging {
  cursor: grabbing;
  filter: brightness(1.03) saturate(1.02);
}

.coupon-grid--interactive .coupon.is-settling {
  transition: left .08s linear, top .08s linear, transform .08s linear;
}

/* ===== PANELS ===== */

.rules-panel,
.terms-panel {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  font-size: clamp(1.2rem, 1.7vw, 1.2rem);
}

.rules-list p {
  margin-bottom: .55rem;
}

.rules-list p:last-child {
  margin-bottom: 0;
}

/* ===== PRIZE ===== */

.prize-visual {
  position: relative;
  display: grid;
  place-items: end;
  min-height: 21rem;
}

.prize-visual img {
  width: min(100%, 37rem);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.prize-badge {
  position: absolute;
  right: -1rem;
  bottom: -1.25rem;
  width: clamp(12rem, 25vw, 16rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--brand-red);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.1;
  background: var(--brand-yellow);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(-11deg);
}

/* ===== IMPORTANT / TERMS ===== */

.important-panel {
  padding: 2rem;
  background: #fff8dd;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.important-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.important-item {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
}

.important-item strong {
  display: block;
  margin-bottom: .5rem;
}

.legal-note {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.terms-accordion .accordion-item {
  border: none;
  margin-bottom: .8rem;
  border-radius: 1rem;
  overflow: hidden;
}

.terms-accordion .accordion-button {
  font-weight: 700;
}

.terms-confirm {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  padding: 0 1rem;
}

/* ===== FOOTER ===== */

.site-footer {
  margin-top: clamp(2rem, 4vw, 3.4rem);
  padding: clamp(1.8rem, 3vw, 2.6rem) 0;
  color: #fff;
  background: var(--brand-red);
}

.footer-row {
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-logo {
  width: clamp(10rem, 18vw, 14rem);
  max-width: 100%;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding-left: clamp(1rem, 3vw, 3rem);
  min-height: 100%;
  font-size: 1rem;
  line-height: 1.5;
}

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

/* ===== MEDIA QUERIES ===== */

@media (max-width: 1199.98px) {
  .hero-bricks {
    width: min(72vw, 44rem);
  }
  .hero-brick--one {
    right: 18%;
  }
}

@media (max-width: 991.98px) {
  .hero-shell {
    min-height: auto;
  }
  .hero-row {
    padding-top: 1rem;
    padding-bottom: .5rem;
    text-align: center;
  }
  .hero-copy {
    text-align: center !important;
  }
  .hero-overline {
    text-align: center;
  }
  .hero-tag {
    margin-top: 1rem;
    margin-inline: auto;
  }
  .hero-bricks {
    left: -10%;
    top: -3%;
    width: min(88vw, 39rem);
    transform: rotate(-4deg);
  }
  .hero-brick--one {
    right: 20%;
    top: 14%;
  }
  .hero-brick--two {
    right: 7%;
    top: 58%;
  }
  .prize-badge {
    right: .1rem;
    bottom: -1.1rem;
  }
  .hero-tdot-button-link {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .hero-art-frame {
    display: none;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-contact {
    padding-left: 0;
    text-align: center;
  }
  .footer-logo {
    width: 12rem;
  }
  .farmer {
	display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-shell {
    min-height: unset;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .hero-row {
    min-height: auto;
  }
  .hero-badge-cluster {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-bricks {
    position: absolute;
    top: -2rem;
    left: -15%;
    width: 120%;
    margin: 0;
  }
  .hero-art-frame {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-shell {
    padding-top: 1rem;
  }
  .hero-overline {
    font-size: .8rem;
  }
  .hero-tag {
    font-size: 1.1rem;
  }
  .section-text,
  .rules-list p,
  .footer-contact {
    font-size: .98rem;
  }
  .prize-badge {
    right: .3rem;
    bottom: -.1rem;
  }
}

@media (min-width: 992px) {
  .hero-tdot-button-link {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
  }

}