/* ==========================================================================
   Interior Business Masterclass — Nicole Wiesner
   Design-System abgeleitet von nicole.studio-mint.at
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Balnes";
  src: url("../fonts/Balnes.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src: url("../fonts/TT-Norms-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src: url("../fonts/TT-Norms-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #f8f2eb;
  --cream-deep: #f1e8dc;
  --sand: #dfd3c3;
  --sand-deep: #d1bfa9;
  --mocha: #a68668;
  --plum: #6f4649;
  --ink: #0c0c0b;
  --white: #ffffff;
  --accent: #e0495e;

  --font-head: "Jost", sans-serif;
  --font-body: "TT Norms", "Jost", sans-serif;
  --font-script: "Balnes", cursive;

  --container: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 60px -28px rgba(12, 12, 11, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1.0125rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* TT Norms/Jost legen die "st"-Form auch als normale Ligatur an.
   Deshalb Sans-Ligaturen komplett deaktivieren, inklusive Safari/WebKit. */
:where(body, body *) {
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--cream);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 73, 94, 0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(224, 73, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 73, 94, 0); }
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  -webkit-font-variant-ligatures: normal;
  font-variant-ligatures: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}

.accent-text { color: var(--accent); }

.section-title {
  font-size: clamp(2rem, 1.45rem + 2.6vw, 3.4rem);
  max-width: 21ch;
}

.section-title .script {
  font-size: 1.25em;
  display: inline-block;
  transform: translateY(0.08em);
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(12, 12, 11, 0.78);
  max-width: 62ch;
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 4rem + 5vw, 9rem);
  position: relative;
}

.section-head {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}

.section-head .section-title { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-color: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.05em 2.2em;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--btn-color);
  background: var(--btn-bg);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  box-shadow: 0 18px 38px -18px rgba(12, 12, 11, 0.5);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -16px rgba(224, 73, 94, 0.5);
}

.btn:hover::before { transform: translateY(0); }

.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--accent {
  --btn-bg: var(--accent);
  box-shadow: 0 18px 38px -18px rgba(224, 73, 94, 0.55);
}
.btn--accent::before { background: var(--ink); }
.btn--accent:hover { box-shadow: 0 24px 44px -16px rgba(12, 12, 11, 0.45); }

.btn--light {
  --btn-bg: var(--cream);
  --btn-color: var(--ink);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--plum);
}

.cta-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.25rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1.1rem;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.site-header.is-scrolled {
  background: rgba(248, 242, 235, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(12, 12, 11, 0.07);
  padding-block: 0.7rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
}

.logo .script {
  font-family: var(--font-script);
  font-size: 1.5em;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0.18em;
}

.header-cta {
  padding: 0.7em 1.6em;
  font-size: 0.8rem;
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(8rem, 14vh, 11rem) clamp(3rem, 6vh, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 58vw;
  height: 120%;
  background: radial-gradient(closest-side, rgba(223, 211, 195, 0.65), transparent 75%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

.hero-copy { display: grid; gap: 1.6rem; justify-items: start; }

.hero-title {
  font-size: clamp(2.7rem, 1.8rem + 4.6vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }

.hero-title .script {
  font-size: 1.18em;
  color: var(--plum);
  margin-right: 0.1em;
}

.hero-sub {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.22rem);
  color: rgba(12, 12, 11, 0.75);
  max-width: 56ch;
}

.hero-sub strong { color: var(--ink); font-weight: 400; }
.hero-sub em { font-style: italic; color: var(--plum); }

.hero-cta-row { display: grid; gap: 0.4rem; justify-items: start; }

/* Hero visual */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
}

.hero-img-frame {
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-img-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% 18%;
  transform: scale(1.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(166, 134, 104, 0.55);
  border-radius: 999px 999px calc(var(--radius-lg) + 14px) calc(var(--radius-lg) + 14px);
  pointer-events: none;
}

/* rotating badge */
.badge-rotate {
  position: absolute;
  bottom: -34px;
  left: -34px;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.badge-rotate svg {
  position: absolute;
  inset: 0;
  animation: spin 16s linear infinite;
}

.badge-rotate svg text {
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--ink);
}

.badge-rotate .badge-core {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-script);
  font-size: 1.5rem;
  box-shadow: 0 14px 30px -12px rgba(224, 73, 94, 0.6);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* proof bar */
.proof-bar {
  margin-top: clamp(3.5rem, 3rem + 3vw, 6rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(12, 12, 11, 0.12);
}

.proof-item {
  padding: 1.6rem 1rem 0.2rem;
  text-align: center;
  display: grid;
  gap: 0.15rem;
}

.proof-item + .proof-item { border-left: 1px solid rgba(12, 12, 11, 0.12); }

.proof-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.3rem);
}

.proof-num .script { color: var(--accent); font-size: 1.05em; }

.proof-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  color: var(--plum);
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-block: 1.05rem;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee .star { color: var(--accent); font-size: 1.1em; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pain Section (dark) ---------- */
.section--dark {
  background: var(--ink);
  color: var(--cream);
}

/* Schräge Oberkante im Winkel des Marquee-Bands (-1.2deg);
   das Band liegt mit z-index über der Schnittlinie und kaschiert den Übergang. */
.section--angled {
  margin-top: -2.2vw;
  clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%);
}

.section--dark .eyebrow { color: var(--sand-deep); }
.section--dark .lead { color: rgba(248, 242, 235, 0.72); }

.pain-list {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 880px;
  margin-inline: auto;
}

.pain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  padding: 1.9rem 0.5rem;
  border-bottom: 1px solid rgba(248, 242, 235, 0.14);
}

.pain-item:first-child { border-top: 1px solid rgba(248, 242, 235, 0.14); }

.pain-index {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--mocha);
  line-height: 1.4;
  min-width: 2ch;
}

.pain-item p {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: rgba(248, 242, 235, 0.88);
  max-width: 64ch;
}

.pain-item p strong {
  color: var(--cream);
  font-weight: 400;
  border-bottom: 1px solid var(--accent);
}

.pain-outro {
  max-width: 760px;
  margin: clamp(2.6rem, 2rem + 2vw, 4rem) auto 0;
  text-align: center;
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.pain-outro p {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.55;
  color: rgba(248, 242, 235, 0.92);
}

.pain-outro .script { color: var(--accent); font-size: 1.35em; }

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.count-unit {
  background: var(--white);
  border: 1px solid rgba(12, 12, 11, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 0.4rem 0.9rem;
  width: clamp(82px, 7vw + 50px, 124px);
  text-align: center;
  display: grid;
  gap: 0.1rem;
}

.count-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
}

.countdown--inline { margin-block: 1.8rem; }

/* ---------- Learnings ---------- */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}

.learn-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid rgba(12, 12, 11, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  display: grid;
  gap: 1.1rem;
  align-content: start;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.learn-card:nth-child(4),
.learn-card:nth-child(5) { grid-column: span 3; }

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.learn-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--plum);
  display: grid;
  place-items: center;
}

.learn-card p { color: rgba(12, 12, 11, 0.78); }
.learn-card p strong { color: var(--ink); font-weight: 500; }

.section-cta { margin-top: clamp(2.8rem, 2rem + 2.5vw, 4.5rem); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 12, 11, 0.07);
  padding: 2.4rem 2.2rem 2rem;
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: "“";
  position: absolute;
  top: -0.4rem;
  right: 1.4rem;
  font-family: var(--font-script);
  font-size: 7rem;
  color: rgba(209, 191, 169, 0.45);
  line-height: 1;
  pointer-events: none;
}

.testi-card blockquote {
  font-size: 1.06rem;
  color: rgba(12, 12, 11, 0.8);
  font-style: italic;
  font-family: var(--font-body);
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--plum);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}

.testi-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.82rem;
  color: var(--plum);
  letter-spacing: 0.04em;
}

.testi-stars { color: var(--accent); letter-spacing: 0.2em; font-size: 0.85rem; }

/* ---------- Tagesplan ---------- */
.days { display: grid; gap: 1.3rem; }

.day-card {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid rgba(12, 12, 11, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 1.4rem + 1.6vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.4rem, 1rem + 2vw, 3rem);
  box-shadow: 0 -12px 40px -30px rgba(12, 12, 11, 0.4);
}

.day-card:nth-child(even) { background: var(--cream-deep); }
.day-card:last-child { background: var(--ink); color: var(--cream); }
.day-card:last-child .day-sub { color: var(--sand-deep); }
.day-card:last-child p { color: rgba(248, 242, 235, 0.82); }
.day-card:last-child .day-result { border-color: rgba(248, 242, 235, 0.2); }

.day-no {
  display: grid;
  gap: 0.1rem;
  align-content: start;
  text-align: center;
  min-width: 86px;
}

.day-no .script {
  font-size: clamp(2.6rem, 2rem + 2vw, 4rem);
  color: var(--accent);
}

.day-no .day-date {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
}

.day-card:last-child .day-no .day-date { color: var(--sand-deep); }

.day-body { display: grid; gap: 0.9rem; align-content: start; }

.day-title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 500;
}

.day-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  font-family: var(--font-head);
}

.day-body > p { color: rgba(12, 12, 11, 0.75); max-width: 66ch; }

.day-result {
  margin-top: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(12, 12, 11, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: 0.98rem;
}

.day-result .check { color: var(--accent); flex-shrink: 0; margin-top: 0.15em; }

/* ---------- Transformation ---------- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.transform-col {
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem);
  display: grid;
  gap: 0;
  align-content: start;
}

.transform-col--before {
  background: var(--cream-deep);
  border: 1px solid rgba(12, 12, 11, 0.07);
}

.transform-col--after {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.transform-label {
  font-family: var(--font-script);
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}

.transform-col--before .transform-label { color: var(--mocha); }
.transform-col--after .transform-label { color: var(--accent); }

.transform-item {
  padding-block: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid rgba(12, 12, 11, 0.1);
  font-size: 1rem;
}

.transform-col--after .transform-item { border-color: rgba(248, 242, 235, 0.16); }

.transform-item .ico { margin-top: 0.2em; flex-shrink: 0; }
.transform-col--before .ico { color: var(--mocha); }
.transform-col--after .ico { color: var(--accent); }

.transform-col--before p { color: rgba(12, 12, 11, 0.7); }
.transform-col--after p { color: rgba(248, 242, 235, 0.88); }

/* ---------- Für wen ---------- */
.fit-card {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 1.8rem;
  text-align: center;
  justify-items: center;
}

.fit-card > p {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  line-height: 1.6;
  color: rgba(12, 12, 11, 0.8);
}

.fit-highlight {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.8rem);
  color: var(--plum);
}

.fit-warning {
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid rgba(224, 73, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  text-align: left;
  max-width: 720px;
}

.fit-warning .warn-ico { color: var(--accent); margin-top: 0.2em; }
.fit-warning p { font-size: 1rem; color: rgba(12, 12, 11, 0.75); }
.fit-warning strong { font-weight: 500; color: var(--ink); }

/* ---------- Host ---------- */
.host {
  background: var(--cream-deep);
  overflow: hidden;
}

.host .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

.host-visual { position: relative; }

.host-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.host-img-frame img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.06);
}

.host-visual .signature {
  position: absolute;
  bottom: -1.6rem;
  right: -0.6rem;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
  color: var(--plum);
  transform: rotate(-4deg);
  text-shadow: 0 2px 18px rgba(248, 242, 235, 0.9);
}

.host-copy { display: grid; gap: 1.3rem; justify-items: start; }

.host-copy p { color: rgba(12, 12, 11, 0.78); max-width: 58ch; }
.host-copy p strong { font-weight: 500; color: var(--ink); }

.host-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.host-stat {
  background: var(--white);
  border: 1px solid rgba(12, 12, 11, 0.08);
  border-radius: 100px;
  padding: 0.55em 1.3em;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.host-stat b { color: var(--accent); font-weight: 600; }

/* ---------- Ticket ---------- */
.ticket-wrap {
  max-width: 880px;
  margin-inline: auto;
}

.ticket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 12, 11, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ticket-head {
  background: var(--ink);
  color: var(--cream);
  padding: 2.2rem 2.4rem;
  text-align: center;
  display: grid;
  gap: 0.4rem;
  position: relative;
}

.ticket-head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 12px;
  background: radial-gradient(circle at 8px -2px, transparent 9px, var(--white) 10px);
  background-size: 24px 12px;
  background-position: center bottom;
}

.ticket-head .script { color: var(--accent); font-size: 1.9rem; }

.ticket-title { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); }

.ticket-items { padding: 1.4rem 2.4rem 0.6rem; }

.ticket-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  padding-block: 1.3rem;
  border-bottom: 1px dashed rgba(12, 12, 11, 0.16);
}

.ticket-item:last-child { border-bottom: none; }

.ticket-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--plum);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ticket-item-name { font-weight: 500; font-family: var(--font-head); }
.ticket-item-desc { font-size: 0.9rem; color: rgba(12, 12, 11, 0.6); }

.ticket-value {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  font-size: 0.95rem;
}

.ticket-total {
  padding: 1.8rem 2.4rem 2.4rem;
  background: var(--cream);
  text-align: center;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.ticket-total-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ticket-total-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
}

.ticket-old-price {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  color: rgba(12, 12, 11, 0.45);
}

.ticket-free {
  font-family: var(--font-script);
  font-size: clamp(3rem, 2.4rem + 3vw, 5rem);
  color: var(--accent);
  line-height: 1.1;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid rgba(12, 12, 11, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0.3rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--plum); }

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(12, 12, 11, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.faq-body {
  padding: 0 0.3rem 1.7rem;
  color: rgba(12, 12, 11, 0.72);
  max-width: 64ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 90%;
  background: radial-gradient(closest-side, rgba(111, 70, 73, 0.5), transparent);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.final-cta .section-title { color: var(--cream); }
.final-cta .script { color: var(--accent); }
.final-cta .lead { color: rgba(248, 242, 235, 0.75); }
.final-cta .cta-note { color: var(--sand-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(248, 242, 235, 0.55);
  padding-block: 3rem 2.4rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(248, 242, 235, 0.1);
}

.site-footer .container {
  display: grid;
  gap: 1.6rem;
  text-align: center;
  justify-items: center;
}

.footer-logo { color: var(--cream); }

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(248, 242, 235, 0.7);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-size: 0.78rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-note { max-width: 72ch; line-height: 1.7; font-size: 0.78rem; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.is-open { visibility: visible; opacity: 1; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 11, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  width: min(520px, 100%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.45s var(--ease-out);
  display: grid;
  gap: 1.5rem;
  max-height: calc(100svh - 3rem);
  overflow-y: auto;
}

.modal.is-open .modal-card { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(12, 12, 11, 0.15);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.modal-close:hover { background: var(--ink); color: var(--cream); transform: rotate(90deg); }

.modal-head { display: grid; gap: 0.5rem; padding-right: 2rem; }

.modal-title { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); }
.modal-title .script { color: var(--accent); font-size: 1.2em; }

.modal-sub { color: rgba(12, 12, 11, 0.7); font-size: 0.98rem; }

.form { display: grid; gap: 1.1rem; }

.form-field { display: grid; gap: 0.4rem; }

.form-field label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
}

.form-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95em 1.2em;
  border: 1px solid rgba(12, 12, 11, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.form-field input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(12, 12, 11, 0.08);
}

.form .btn { justify-content: center; width: 100%; }

.form-note {
  font-size: 0.78rem;
  color: rgba(12, 12, 11, 0.55);
  text-align: center;
  line-height: 1.6;
}

/* ---------- Reveal (GSAP hooks) ---------- */
[data-reveal] { opacity: 0; }

.no-js [data-reveal],
.reduced-motion [data-reveal] { opacity: 1; }

/* ==========================================================================
   Danke-Seite
   ========================================================================== */

.thanks-hero {
  padding-top: clamp(8rem, 16vh, 12rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-hero .container {
  display: grid;
  gap: 1.8rem;
  justify-items: center;
  max-width: 880px;
}

.thanks-check {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.thanks-title { font-size: clamp(2.2rem, 1.6rem + 3vw, 4rem); }
.thanks-title .script { color: var(--accent); font-size: 1.2em; }

.thanks-hero .lead strong { color: var(--ink); font-weight: 500; }

.thanks-but {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem);
  color: var(--plum);
}

.thanks-portrait {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.thanks-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 15%;
}

/* steps */
.step-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

.step-section:nth-of-type(even) .step-visual { order: 2; }

.step-copy { display: grid; gap: 1.3rem; justify-items: start; }

.step-no {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.step-no .circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
}

.step-no .step-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}

.step-title { font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.5rem); max-width: 18ch; }

.step-copy p { color: rgba(12, 12, 11, 0.75); max-width: 54ch; }

.step-visual {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(12, 12, 11, 0.08);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.step-visual--telegram { background: linear-gradient(150deg, var(--cream-deep), var(--sand)); }
.step-visual--calendar { background: linear-gradient(150deg, var(--ink), #2a2320); }
.step-visual--insta { padding: 0; }

.step-visual--insta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 15%;
}

.mock-phone {
  width: min(56%, 220px);
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(12, 12, 11, 0.1);
  box-shadow: 0 30px 60px -25px rgba(12, 12, 11, 0.35);
  padding: 1.1rem 0.9rem 1.4rem;
  display: grid;
  gap: 0.6rem;
  transform: rotate(-3deg);
}

.mock-phone .mock-bar {
  height: 0.65rem;
  border-radius: 100px;
  background: var(--cream-deep);
}

.mock-phone .mock-bar.short { width: 62%; }
.mock-phone .mock-bubble {
  background: var(--cream);
  border-radius: 14px;
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.mock-phone .mock-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.mock-phone .mock-ava {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--plum);
}

.mock-phone .mock-name {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-cal {
  width: min(62%, 250px);
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: rotate(2.5deg);
}

.mock-cal-head {
  background: var(--accent);
  color: var(--cream);
  text-align: center;
  padding: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mock-cal-body {
  padding: 1.1rem;
  text-align: center;
  display: grid;
  gap: 0.2rem;
}

.mock-cal-day {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.mock-cal-month {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
}

.mock-cal-event {
  margin-top: 0.6rem;
  background: var(--cream-deep);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.68rem;
  padding: 0.5rem 0.6rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 500;
}

/* confetti canvas */
#confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-card,
  .learn-card:nth-child(4),
  .learn-card:nth-child(5) { grid-column: span 1; }
  .learn-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { width: min(100%, 380px); margin-top: 1rem; }
  .scroll-hint { display: none; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: none; }
  .proof-item:nth-child(n + 3) { border-top: 1px solid rgba(12, 12, 11, 0.12); margin-top: 0.5rem; }
  .host .container { grid-template-columns: 1fr; }
  .host-visual { max-width: 420px; }
  .transform-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .step-section .container { grid-template-columns: 1fr; }
  .step-section:nth-of-type(even) .step-visual { order: 0; }
  .day-card { position: static; grid-template-columns: 1fr; gap: 1rem; }
  .day-no { text-align: left; display: flex; align-items: baseline; gap: 0.8rem; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .ticket-items { padding-inline: 1.4rem; }
  .ticket-item { grid-template-columns: auto 1fr; }
  .ticket-value { grid-column: 2; justify-self: start; }
  .ticket-head, .ticket-total { padding-inline: 1.4rem; }
  .badge-rotate { width: 112px; height: 112px; left: -12px; bottom: -22px; }
  .badge-rotate .badge-core { width: 62px; height: 62px; font-size: 1.2rem; }
}

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