/* ===== Schriften =====
   Alle Schriften werden lokal gehostet (DSGVO: keine Anfragen an Google).
   League Spartan & Great Vibes: SIL Open Font License (kommerziell frei). */
@font-face {
  font-family: 'League Spartan';
  src: url('assets/fonts/LeagueSpartan-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'League Spartan';
  src: url('assets/fonts/LeagueSpartan-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* ===== Basis ===== */
:root {
  --bg: #010101;
  --bg-soft: #0c0c0e;
  --text: #eceaea;
  --text-soft: #a3a1a5;
  --line: rgba(236, 234, 234, 0.12);
  --name-gradient: linear-gradient(180deg, #d4d4d4 0%, #535353 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 1.35em;
  line-height: 1;
  /* Script-Schwünge ragen über die Buchstabenbox hinaus:
     inline-block + Innenabstand, damit nichts abgeschnitten wird */
  display: inline-block;
  padding: 0.08em 0.22em 0.12em 0.06em;
  margin: -0.08em -0.04em -0.12em 0;
}

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

/* ===== Intro-Overlay (Animation am Start) ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introOut 0.7s ease 1.5s forwards;
  pointer-events: none;
}
.intro-logo {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: introLogo 1.4s ease 0.15s forwards;
}
.intro-logo em { font-style: normal; color: var(--text-soft); }
@keyframes introLogo {
  0%   { opacity: 0; transform: translateY(14px); }
  35%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes introOut {
  to { opacity: 0; visibility: hidden; }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(1,1,1,0.85) 0%, rgba(1,1,1,0) 100%);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.7s forwards;
}
.nav-inner {
  padding: 22px max(28px, 3vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo em { font-style: normal; color: var(--text-soft); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

/* ===== Hero ===== */
.hero { height: 170vh; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-zoom {
  position: relative;
  height: 100%;
  transform-origin: 50% 60%;
  will-change: transform;
}

/* Riesiger Name im Hintergrund */
.hero-name {
  position: absolute;
  bottom: -1.5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 14.5vw;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
  line-height: 0.9;
  background: var(--name-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: nameIn 1.2s ease 1.75s forwards;
}
@keyframes nameIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6vh) scale(0.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* Schwebendes Foto: fixiert, Position steuert das Script (Hero -> About) */
.hero-photo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: min(480px, 82vw);
  transform-origin: top left;
  will-change: transform;
  pointer-events: none;
  opacity: 0;
  animation: photoIn 1.2s ease 2s forwards;
}
@keyframes photoIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-photo img {
  display: block;
  width: 100%;
  filter: grayscale(1) contrast(1.03) brightness(1.18);
  /* Heller Foto-Hintergrund wird zum Spot: oben/seitlich weich nach Schwarz,
     unten läuft das Bild bis zur Kante durch */
  -webkit-mask-image: radial-gradient(ellipse 62% 100% at 50% 88%, #000 44%, transparent 82%);
  mask-image: radial-gradient(ellipse 62% 100% at 50% 88%, #000 44%, transparent 82%);
}
.hero-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(ellipse 50% 55% at 50% 60%, rgba(195, 193, 205, 0.16) 0%, transparent 70%);
}

/* Mission / Spruch oben links */
.hero-mission {
  position: absolute;
  top: 15vh;
  left: max(28px, 4vw);
  z-index: 3;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 1s ease 2.3s forwards;
}
.hero-tagline {
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.25;
  color: #d6d4d9;
}
.hero-tagline .script {
  background: linear-gradient(180deg, #f0eff2 0%, #8f8d96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-soft);
  max-width: 380px;
}
.hero-socials {
  margin-top: 26px;
  display: flex;
  gap: 20px;
}
.hero-socials a {
  color: var(--text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
.hero-socials a:hover { color: var(--text); transform: translateY(-2px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ===== Sektionen ===== */
.about {
  padding: 140px 0 110px;
  background: var(--bg);
  position: relative;
  z-index: 4;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
/* Reservierter Platz, auf den das schwebende Foto andockt */
.about-photo-slot {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 768 / 1376;
}
.about-lead p {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 32px;
}
.about-body p {
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 17px;
  max-width: 560px;
}

/* ===== Newsletter ===== */
.newsletter {
  padding: 130px 0;
  background: var(--bg-soft);
  text-align: center;
}
.newsletter-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  margin-bottom: 24px;
}
.newsletter-title .script {
  background: linear-gradient(180deg, #f0eff2 0%, #8f8d96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.newsletter-sub {
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 42px;
  font-size: 18px;
}

/* ===== Contact ===== */
.contact {
  padding: 150px 0;
  text-align: center;
  background: var(--bg);
}
.contact-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  margin-bottom: 26px;
}
.contact-title .script {
  background: linear-gradient(180deg, #f0eff2 0%, #8f8d96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-sub {
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 44px;
  font-size: 18px;
}
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  background: rgba(236, 234, 234, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--text);
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(236, 234, 234, 0.4);
}
.contact-form ::placeholder { color: var(--text-soft); opacity: 0.8; }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; accent-color: var(--text); }
.form-consent a { color: var(--text); }
.contact-form .btn {
  align-self: center;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-family: 'League Spartan', system-ui, sans-serif;
}
.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 999px;
  background: var(--text);
  color: #101013;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  font-size: 14px;
  color: var(--text-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-soft); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* ===== Scroll-Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Reduzierte Bewegung (Barrierefreiheit) ===== */
@media (prefers-reduced-motion: reduce) {
  .intro { animation-duration: 0.01ms; animation-delay: 0s; }
  .intro-logo { animation: none; opacity: 0; }
  .hero-name, .hero-photo, .hero-mission, .nav { animation-duration: 0.01ms; animation-delay: 0s; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Mobile ===== */
@media (max-width: 760px) {
  .hero { height: 150vh; }
  .hero-mission { top: 12vh; right: 24px; max-width: none; }
  .hero-name { font-size: 17vw; bottom: 0; }
  .hero-photo { width: min(400px, 94vw); }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-slot { max-width: min(72vw, 320px); margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
}
