/* ============================================
   NIKLAS CALLSEN — PITCH BERATER
   Design: Nahbar, warm, persönlich
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #1F1B16;
  --accent: #FF6B35;
  --accent-soft: #FFB088;
  --bg: #FFFAF5;
  --bg-warm: #F5EBE0;
  --bg-soft: #FBF4EC;
  --text: #1F1B16;
  --text-muted: #6B5E54;
  --text-light: #8B7E73;
  --border: #E8DDD0;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow: 0 2px 8px rgba(31,27,22,0.04), 0 8px 24px rgba(31,27,22,0.06);
  --shadow-warm: 0 4px 20px rgba(255,107,53,0.15);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--primary);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HANDWRITTEN AKZENTE ===== */
.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1em;
  line-height: 1;
}
.scribble {
  position: relative;
  display: inline-block;
}
.scribble::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -4px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 Q 30 2, 60 7 T 120 6 T 198 5' stroke='%23FF6B35' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center;
  background-size: 100% 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,245,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.logo .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--primary);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(255,176,136,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255,107,53,0.08) 0%, transparent 50%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero-greeting {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hero-greeting .wave {
  font-size: 1.2rem;
  display: inline-block;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--primary);
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.08em;
  height: 0.25em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1deg);
}
.hero h1 .hand {
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 4px;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 30px rgba(255,107,53,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
}
.btn-ghost:hover { color: var(--accent); }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--border);
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Hero Bild */
.hero-image-wrap {
  position: relative;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31,27,22,0.15);
  aspect-ratio: 4/5;
  transform: rotate(2deg);
  transition: transform 0.4s;
}
.hero-image:hover { transform: rotate(0deg) scale(1.02); }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-sticker {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(31,27,22,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-sticker-1 {
  top: 30px;
  left: -30px;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--accent);
  transform: rotate(-8deg);
  animation-delay: 0s;
  padding: 16px 20px;
}
.hero-sticker-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 1s;
}
.hero-sticker .emoji { font-size: 1.3rem; }

/* ===== SECTION GRUNDGERÜST ===== */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== LEISTUNGEN ===== */
.services {
  background: var(--bg-soft);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  width: 80px;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M20 80 Q 30 60, 50 50 T 80 20' stroke='%23FFB088' stroke-width='4' fill='none' stroke-linecap='round' stroke-dasharray='2 8'/></svg>") no-repeat;
  opacity: 0.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(31,27,22,0.1);
  border-color: var(--accent-soft);
}
.service-card .emoji {
  font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.service-card:hover .emoji { transform: scale(1.15) rotate(-8deg); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.service-card .price {
  margin-top: 16px;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===== ÜBER MICH ===== */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,176,136,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(31,27,22,0.15);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}
.about-img:hover { transform: rotate(0deg) scale(1.02); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-sticker {
  position: absolute;
  background: var(--accent);
  color: white;
  padding: 18px 24px;
  border-radius: 20px;
  font-family: var(--font-hand);
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255,107,53,0.3);
  transform: rotate(6deg);
  bottom: -20px;
  right: -20px;
  animation: float 3.5s ease-in-out infinite;
}
.about-text .eyebrow {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  float: left;
  line-height: 0.9;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--accent);
}
.about-quote {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
}

/* ===== PROZESS ===== */
.process { background: var(--bg-soft); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: left;
  position: relative;
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,27,22,0.08);
}
.process-step .num {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* ===== STIMMEN ===== */
.testimonials {
  background: var(--bg);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial:nth-child(2) { transform: rotate(-1deg); }
.testimonial:nth-child(1) { transform: rotate(1deg); }
.testimonial:nth-child(3) { transform: rotate(-0.5deg); }
.testimonial:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,27,22,0.08);
}
.testimonial .quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent-soft);
  line-height: 0.5;
  margin-bottom: 8px;
}
.testimonial .quote {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 24px;
  color: var(--text);
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.testimonial .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
}
.testimonial .name { font-weight: 600; font-size: 0.95rem; }
.testimonial .role { font-size: 0.85rem; color: var(--text-muted); }

/* ===== KONTAKT ===== */
.cta-section {
  background:
    radial-gradient(ellipse at top, rgba(255,176,136,0.3) 0%, transparent 50%),
    var(--bg-soft);
  position: relative;
}
.cta-box {
  background: white;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(31,27,22,0.08);
}
.cta-box::before {
  content: 'schreib mir ✏️';
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--accent);
  transform: rotate(8deg);
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.cta-form input,
.cta-form textarea {
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-light); }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.cta-form textarea { grid-column: span 2; min-height: 120px; resize: vertical; }
.cta-form button {
  grid-column: span 2;
  background: var(--accent);
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.cta-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.4); }

.kontakt-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.kontakt-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.kontakt-card:hover { transform: translateY(-3px); }
.kontakt-card .emoji { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.kontakt-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 600;
}
.kontakt-card .value { font-weight: 600; color: var(--primary); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
footer a { color: var(--primary); font-weight: 500; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
footer .links { margin-bottom: 12px; display: flex; justify-content: center; gap: 24px; }
footer .signature {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 8px;
}

/* ===== ANIMATIONEN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { aspect-ratio: 4/3; transform: rotate(0deg); }
  .hero-sticker-1 { left: 10px; top: 10px; font-size: 1.2rem; }
  .hero-sticker-2 { right: 10px; bottom: 10px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img { transform: rotate(0deg); }
  .about-sticker { right: 20px; bottom: -10px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { transform: rotate(0deg) !important; }
  .cta-box { padding: 50px 28px; }
  .cta-box::before { display: none; }
  .cta-form { grid-template-columns: 1fr; }
  .cta-form textarea, .cta-form button { grid-column: span 1; }
  .kontakt-info { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
