/* Crazy Sun — Premium Sun Studio Landingpage */
:root {
  --orange-900: #6b2410;
  --orange-700: #b8451d;
  --orange-600: #d65a25;
  --orange-500: #e87a3c;
  --orange-400: #f29456;
  --orange-200: #f9c79b;
  --orange-100: #fbe1c4;

  --yellow-600: #d99a1f;
  --yellow-500: #e8b03a;
  --yellow-400: #f0c662;
  --yellow-200: #f7dfa3;
  --yellow-100: #fcecc4;

  --cream-50:  #fbf6ee;
  --cream-100: #f6ecdc;
  --cream-200: #ecdcc1;

  --ink-900: #2a1a10;
  --ink-700: #4a3022;
  --ink-500: #7a5a45;
  --ink-300: #b09b86;

  --line:        rgba(42, 26, 16, 0.10);
  --line-strong: rgba(42, 26, 16, 0.18);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(42,26,16,0.06), 0 2px 6px rgba(42,26,16,0.04);
  --shadow-md: 0 6px 20px rgba(42,26,16,0.08), 0 2px 6px rgba(42,26,16,0.05);
  --shadow-lg: 0 24px 60px -20px rgba(107,36,16,0.25), 0 8px 24px rgba(42,26,16,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img   { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container        { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width:  920px; margin: 0 auto; padding: 0 28px; }
.container-wide   { max-width: 1380px; margin: 0 auto; padding: 0 28px; }

section { position: relative; }
.section       { padding: 120px 0; }
.section-tight { padding:  80px 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--orange-600);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink-900);
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--orange-700); font-weight: 500; }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--orange-700); font-weight: 500; }

.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
  text-wrap: pretty;
  margin: 0;
}
.body { color: var(--ink-700); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 220ms ease, background 200ms ease, color 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(216,90,37,0.6), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(216,90,37,0.75), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(42,26,16,0.05); border-color: var(--ink-500); }
.btn-light { background: #fff; color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--cream-50); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 11px 18px; font-size: 13px; }

.arrow { display: inline-block; transition: transform 220ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.nav.scrolled {
  background: rgba(251, 246, 238, 0.94);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3c4 0%, var(--yellow-400) 35%, var(--orange-500) 70%, var(--orange-700) 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset, 0 4px 14px -4px rgba(216,90,37,0.5);
  transition: transform 300ms ease;
}
.logo:hover .logo-mark { transform: rotate(15deg) scale(1.08); }
.logo-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0 8deg, var(--orange-500) 8deg 12deg,
    transparent 12deg 30deg, var(--orange-500) 30deg 34deg,
    transparent 34deg 60deg, var(--orange-500) 60deg 64deg,
    transparent 64deg 90deg, var(--orange-500) 90deg 94deg,
    transparent 94deg 120deg, var(--orange-500) 120deg 124deg,
    transparent 124deg 150deg, var(--orange-500) 150deg 154deg,
    transparent 154deg 180deg, var(--orange-500) 180deg 184deg,
    transparent 184deg 210deg, var(--orange-500) 210deg 214deg,
    transparent 214deg 240deg, var(--orange-500) 240deg 244deg,
    transparent 244deg 270deg, var(--orange-500) 270deg 274deg,
    transparent 274deg 300deg, var(--orange-500) 300deg 304deg,
    transparent 304deg 330deg, var(--orange-500) 330deg 334deg,
    transparent 334deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 22px, #000 22px, #000 26px, transparent 26px);
          mask: radial-gradient(circle, transparent 22px, #000 22px, #000 26px, transparent 26px);
  pointer-events: none;
}
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 160ms ease;
  position: relative;
}
.nav-links a:hover { color: var(--orange-700); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 0 60px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3c4 0%, var(--yellow-400) 40%, var(--orange-500) 100%);
  display: inline-block;
}
.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--orange-600); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 660px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,232,180,0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(216,90,37,0.35) 0%, transparent 55%),
    linear-gradient(160deg, #f9c79b 0%, #d65a25 45%, #6b2410 100%);
  box-shadow: var(--shadow-lg);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, transparent 100px, rgba(0,0,0,0.0) 100px, rgba(0,0,0,0.18) 100%),
    repeating-linear-gradient(110deg, transparent 0 38px, rgba(255,255,255,0.04) 38px 39px);
  mix-blend-mode: overlay;
}
.hero-photo .sun {
  position: absolute;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8dc 0%, #fde29a 35%, #f5b34a 70%, transparent 100%);
  filter: blur(2px);
  opacity: 0.95;
}
.hero-photo .label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: rgba(255,243,222,0.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(4px);
}
.hero-card-1 { top: 8%;    right: -16px;  max-width: 220px; }
.hero-card-2 { bottom: 12%; left: -24px; max-width: 240px; }
.hero-card .num {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--orange-700);
  font-weight: 500;
}
.hero-card .lbl {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.3;
  margin: 0;
}
.hero-card .author {
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

.hero-bg {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(240,198,98,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(252,236,196,0.6) 0%, transparent 60%);
}
.hero-bg-orb {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,198,98,0.22) 0%, transparent 70%);
  top: -100px; right: -100px;
  will-change: transform;
}

@media (max-width: 980px) {
  .hero-card-1 { right: 8px; }
  .hero-card-2 { left: 8px; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-100);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-700);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .dot {
  width: 6px; height: 6px;
  background: var(--orange-600);
  border-radius: 50%;
  display: inline-block;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Stempelkarte ---------- */
.stempel-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .stempel-grid { grid-template-columns: 1fr; gap: 56px; }
}

.stempelkarte {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.586/1;
  margin: 0 auto;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,243,196,0.5), transparent 60%),
    linear-gradient(135deg, #d65a25 0%, #b8451d 60%, #6b2410 100%);
  color: #fff;
  padding: 26px 28px;
  box-shadow:
    0 30px 60px -25px rgba(107,36,16,0.5),
    0 12px 24px -8px rgba(216,90,37,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-3deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 500ms ease;
}
.stempelkarte:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 40px 80px -25px rgba(107,36,16,0.55),
    0 16px 32px -8px rgba(216,90,37,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.stempelkarte::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,0.025) 28px 29px);
  border-radius: inherit;
  pointer-events: none;
}
.stempelkarte-head { display: flex; justify-content: space-between; align-items: start; }
.stempelkarte-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stempelkarte-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  opacity: 0.7;
  margin-top: -2px;
}
.stempelkarte-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.18);
}
.stempel-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.stempel-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  position: relative;
  cursor: pointer;
  transition: all 260ms ease;
}
.stempel-cell:hover { background: rgba(255,255,255,0.15); transform: scale(1.06); }
.stempel-cell.stamped {
  background: radial-gradient(circle at 35% 30%, #fff3c4 0%, var(--yellow-400) 40%, var(--orange-500) 100%);
  border: none;
  color: var(--orange-900);
  box-shadow:
    0 4px 12px -2px rgba(0,0,0,0.3),
    inset 0 -2px 0 rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5);
  font-size: 18px;
}
.stempel-cell.gift {
  background: rgba(255, 243, 196, 0.18);
  border: 1.5px solid rgba(255,243,196,0.6);
  color: rgba(255,243,196,0.95);
}
.stempel-cell.gift.stamped {
  background: linear-gradient(135deg, #fff3c4, #f0c662);
  color: var(--orange-900);
}
.stempelkarte-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 500;
}

.stempelkarte-shadow {
  position: absolute;
  inset: 12% -2% -10% -2%;
  background: radial-gradient(ellipse at 50% 50%, rgba(216,90,37,0.18), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.stempel-help {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  font-style: italic;
}

.benefit-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.benefit-row { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--orange-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform 260ms ease, background 260ms ease;
}
.benefit-row:hover .benefit-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--orange-100);
}
.benefit-row h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.benefit-row p { margin: 0; font-size: 14.5px; color: var(--ink-700); line-height: 1.5; }

/* ---------- Different / vs ---------- */
.different {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.different::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,90,37,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.different::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,198,98,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.different .eyebrow { color: var(--orange-400); }
.different .eyebrow::before { background: var(--orange-400); }
.different .h2 { color: var(--cream-50); }
.different .h2 em { color: var(--yellow-400); }
.different .lede { color: rgba(251,246,238,0.7); }

.compare {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.compare-col { padding: 40px 36px; display: flex; flex-direction: column; gap: 4px; }
.compare-col + .compare-col { border-left: 1px solid rgba(255,255,255,0.08); }
.compare-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col.them h4 { color: rgba(251,246,238,0.5); }
.compare-col.us   h4 { color: var(--orange-400); }
.compare-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15.5px;
  line-height: 1.4;
  transition: background 200ms ease;
}
.compare-row:last-child { border-bottom: none; }
.compare-col.them .compare-row {
  color: rgba(251,246,238,0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(216,90,37,0.5);
  text-decoration-thickness: 1px;
}
.compare-col.us .compare-row { color: var(--cream-50); font-weight: 500; }
.compare-col.us .compare-row:hover { color: var(--yellow-400); }
.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: rgba(0,0,0,0.2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--orange-400);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) {
  .compare { grid-template-columns: 1fr; }
  .compare-col + .compare-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .compare-divider { display: none; }
}
.tick  { color: var(--orange-400); flex-shrink: 0; }
.cross { color: rgba(251,246,238,0.4); flex-shrink: 0; }

/* ---------- Me-Time ---------- */
.metime {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  padding: 120px 0;
}
.metime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .metime-grid { grid-template-columns: 1fr; gap: 56px; }
}
.metime-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, #ffe1a8 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(216,90,37,0.4) 0%, transparent 55%),
    linear-gradient(155deg, #f6ecdc 0%, #f29456 60%, #b8451d 100%);
  box-shadow: var(--shadow-lg);
}
.metime-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(75deg, transparent 0 24px, rgba(255,255,255,0.025) 24px 25px);
}
.metime-clock {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.06);
  backdrop-filter: blur(2px);
}
.metime-clock-inner {
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  color: rgba(255,243,222,0.95);
}
.metime-clock-inner .num  { font-size: clamp(64px, 10vw, 120px); line-height: 1; font-weight: 500; }
.metime-clock-inner .unit {
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.85;
}
.metime-tick {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 8px;
  background: rgba(255,255,255,0.5);
  transform-origin: 50% 100%;
  transform: translate(-50%, -200%) rotate(0deg);
}

.metime-list { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.metime-item { display: flex; gap: 16px; align-items: flex-start; }
.metime-item .step {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--orange-700);
  line-height: 1;
  width: 40px;
  transition: color 250ms ease, transform 250ms ease;
}
.metime-item:hover .step { color: var(--orange-600); transform: scale(1.1); }
.metime-item h4 { font-family: var(--sans); font-weight: 600; font-size: 17px; margin: 0 0 4px; }
.metime-item p  { margin: 0; color: var(--ink-700); font-size: 15px; line-height: 1.55; }

/* ---------- Preise ---------- */
.preise { padding: 120px 0; }
.preise-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .preise-head { grid-template-columns: 1fr; gap: 24px; } }

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(42,26,16,0.15);
  border-color: var(--orange-200);
}
.price-card.featured {
  background: linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
  border: 1.5px solid var(--orange-600);
  box-shadow: 0 24px 60px -28px rgba(216,90,37,0.4);
}
.price-card.featured:hover { transform: translateY(-8px); }
.price-card .pill-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange-600);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card .name { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0; letter-spacing: -0.005em; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; font-family: var(--serif); }
.price-card .price .big { font-size: 52px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.price-card .price .cents { font-size: 22px; font-weight: 500; color: var(--ink-700); }
.price-card .price .unit { font-family: var(--sans); font-size: 14px; color: var(--ink-500); font-weight: 500; }
.price-card ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); line-height: 1.45; }
.price-card li svg { color: var(--orange-600); flex-shrink: 0; margin-top: 2px; }
.price-card .desc { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.5; }
.price-card .btn { margin-top: 8px; width: 100%; }

.price-fineprint { margin-top: 28px; text-align: center; font-size: 13px; color: var(--ink-500); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-100); padding: 120px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
}
@media (max-width: 980px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--ink-900);
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--orange-700); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 250ms ease, border-color 200ms ease;
}
.faq-item.open .faq-toggle {
  background: var(--orange-600);
  color: #fff;
  border-color: var(--orange-600);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-a-inner {
  padding: 0 4px 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- Form ---------- */
.form-section {
  padding: 120px 0;
  position: relative;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(240,198,98,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(216,90,37,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) { .form-grid { grid-template-columns: 1fr; gap: 48px; } }

.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
@media (max-width: 540px) { .form-card { padding: 28px 22px; } }
.form-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 0 0 8px; }
.form-card .sub { margin: 0 0 24px; color: var(--ink-700); font-size: 15px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-900); letter-spacing: 0.01em; }
.field label .opt { font-weight: 400; color: var(--ink-500); font-size: 12px; }
.field input, .field select, .field textarea {
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--cream-50);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(216,90,37,0.12);
  background: #fff;
}
.field.error input, .field.error select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.field-error { font-size: 12px; color: #c0392b; font-weight: 500; }
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.45;
  cursor: pointer;
  margin-bottom: 18px;
}
.checkbox-row input { margin-top: 2px; accent-color: var(--orange-600); }
.checkbox-row a { text-decoration: underline; }

.form-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-500);
}
.form-foot svg { color: var(--orange-600); flex-shrink: 0; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3c4 0%, var(--yellow-400) 40%, var(--orange-500) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(216,90,37,0.5);
  animation: pop 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1);   opacity: 1; }
}
.form-success h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin: 0 0 12px; }
.form-success p  { color: var(--ink-700); font-size: 15.5px; max-width: 38ch; margin: 0 auto; line-height: 1.55; }
.form-success .next-steps {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--cream-50);
  border-radius: var(--r-md);
  text-align: left;
  font-size: 13.5px;
  list-style: none;
}
.form-success .next-steps li { padding: 4px 0; color: var(--ink-700); }

.form-bullets { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.form-bullet  { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--ink-700); }
.form-bullet svg { flex-shrink: 0; color: var(--orange-600); margin-top: 2px; }
.form-bullet strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink-900);
  color: rgba(251,246,238,0.7);
  padding: 80px 0 36px;
}
.foot a { color: rgba(251,246,238,0.7); transition: color 150ms ease; }
.foot a:hover { color: var(--orange-400); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.foot h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin: 0 0 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.foot-brand .logo { color: var(--cream-50); }
.foot-brand p { font-size: 14px; line-height: 1.55; max-width: 36ch; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(251,246,238,0.1);
  font-size: 13px;
  color: rgba(251,246,238,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  background: var(--orange-600);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 14px 22px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px -8px rgba(216,90,37,0.6);
  transition: transform 160ms ease;
}
.sticky-cta:hover { transform: translateY(-2px); }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-300), transparent);
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1);   }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ==========================================================
   SCROLL REVEAL & PARALLAX ANIMATIONS
   ========================================================== */

/* Reduced motion: skip all decorative animation */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Base reveal state */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity   0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]) {
  transform: translateY(52px);
}
[data-reveal="left"]  { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal].visible { opacity: 1; transform: none; }

/* Stagger container */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
  transition:
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger].visible > * { opacity: 1; transform: none; }
[data-stagger].visible > *:nth-child(1)  { transition-delay:   0ms; }
[data-stagger].visible > *:nth-child(2)  { transition-delay: 100ms; }
[data-stagger].visible > *:nth-child(3)  { transition-delay: 200ms; }
[data-stagger].visible > *:nth-child(4)  { transition-delay: 300ms; }
[data-stagger].visible > *:nth-child(5)  { transition-delay: 400ms; }
[data-stagger].visible > *:nth-child(6)  { transition-delay: 500ms; }

/* Parallax wrapper */
[data-parallax] { will-change: transform; }

/* Floating cards in hero */
@keyframes floatA {
  0%, 100% { transform: translateY(0px)  rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px)  rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(-0.5deg); }
}
.hero-card-1 { animation: floatA 6s ease-in-out infinite; }
.hero-card-2 { animation: floatB 7.5s ease-in-out 1.2s infinite; }

/* Glowing sun pulse */
@keyframes sunGlow {
  0%, 100% { opacity: 0.85; filter: blur(2px); transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;    filter: blur(4px); transform: translateX(-50%) scale(1.07); }
}
.hero-photo .sun { animation: sunGlow 4.5s ease-in-out infinite; }

/* Stempel cell pop on stamp */
@keyframes stampPop {
  0%   { transform: scale(1.4); }
  55%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.stempel-cell.stamped { animation: stampPop 380ms cubic-bezier(0.2, 0.8, 0.2, 1); }

/* Hero badge entrance */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
.hero-badge { animation: badgeFloat 5s ease-in-out 1s infinite; }
