/* ==========================================================================
   créer — creerstudio.de
   Quiet-Luxury One-Pager · alle Assets lokal · kein externes JS/CDN
   Farben & Typo 1:1 aus dem Bau-Dokument (Stand 11.06.2026)
   ========================================================================== */

/* ---- Fonts (lokal, WOFF2) ---- */
@font-face {
  font-family: "Nicholas";
  src: url("../fonts/Nicholas_SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --simply-white: #f9f9f9;
  --butter-gelb:  #f4e3b1;
  --sonnen-gelb:  #f4da01;
  --aqua-haze:    #89babe;
  --night-sky:    #101723;

  --font-display: "Nicholas", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1140px;
  --maxw-text: 720px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--night-sky);
  background: var(--simply-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Brand wordmark ---- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}

/* ---- Shared layout ---- */
.section { padding: var(--section-y) var(--pad-x); }
.wrap { max-width: var(--maxw); margin-inline: auto; }
.wrap-text { max-width: var(--maxw-text); margin-inline: auto; }

.eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 1.25rem;
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; }

/* ---- Buttons (Default = Outline · Hover = Buttergelb-Fläche, Text Night-Sky) ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95em 1.6em;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: var(--night-sky);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover, .btn:focus-visible {
  background: var(--butter-gelb);
  border-color: var(--butter-gelb);
  color: var(--night-sky);          /* Buttergelb ist hell -> Text immer dunkel */
  outline: none;
}
/* Buttons auf dunklem Grund: Outline buttergelb */
.on-dark .btn { color: var(--butter-gelb); border-color: var(--butter-gelb); }
.on-dark .btn:hover, .on-dark .btn:focus-visible { color: var(--night-sky); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--night-sky);
  color: var(--butter-gelb);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--pad-x) clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}
.hero__brand { z-index: 2; }
.hero__brand .wordmark {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--simply-white);
}
.hero__center {
  align-self: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero__display {
  margin: 0;
  color: var(--butter-gelb);
  font-size: clamp(4rem, 17vw, 11rem);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}
.hero__display .dot { color: var(--sonnen-gelb); }
/* Glow hinter "Erlesen." — reiner CSS-radial-gradient, kein Bild */
.hero__center::before {
  content: "";
  position: absolute;
  inset: -40% -10% -30%;
  z-index: -1;
  background: radial-gradient(
    closest-side,
    rgba(244, 218, 1, 0.22),
    rgba(244, 227, 177, 0.10) 45%,
    transparent 72%
  );
  filter: blur(28px);
  pointer-events: none;
}
.hero__sub {
  margin: 1.6rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--simply-white);
}
/* Scroll-Pfeil */
.hero__scroll {
  justify-self: center;
  z-index: 2;
  color: var(--aqua-haze);
  text-decoration: none;
  line-height: 0;
  padding: 0.5rem;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll svg { display: block; width: 30px; height: 30px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll { animation: none; }
}

/* ==========================================================================
   MANIFEST
   ========================================================================== */
.manifest { background: var(--simply-white); color: var(--night-sky); text-align: center; }
.manifest .eyebrow { color: var(--night-sky); }
.manifest__headline {
  margin: 0 0 1.75rem;
  color: var(--aqua-haze);
  font-size: clamp(2.1rem, 6.5vw, 3.9rem);
}
.manifest__text {
  margin: 0 auto;
  max-width: 40ch;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

/* ==========================================================================
   VIER PFEILER
   ========================================================================== */
.pillars { background: var(--butter-gelb); color: var(--night-sky); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}
.pillar__num {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}
/* Sonnen-Gelb-Punkt hinter der Nummer */
.pillar__num::before {
  content: "";
  position: absolute;
  width: 0.72em; height: 0.72em;
  background: var(--sonnen-gelb);
  border-radius: 50%;
  top: -0.18em; left: -0.34em;
  z-index: -1;
}
.pillar__title {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
}
.pillar__text { margin: 0; font-size: 1rem; opacity: 0.9; }

/* ==========================================================================
   KANÄLE
   ========================================================================== */
.channels { background: var(--simply-white); color: var(--night-sky); }
.channels__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.channels__head h2 { margin: 0; font-size: clamp(1.9rem, 5vw, 3rem); }
.channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}
.channel {
  display: flex;
  flex-direction: column;
}
.channel__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--butter-gelb);
}
.channel__media img { width: 100%; height: 100%; object-fit: cover; }
.channel__body { padding: 1.5rem 0 0; }
.channel__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}
.channel__text { margin: 0 0 1.5rem; font-size: 1rem; max-width: 38ch; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter { background: var(--night-sky); color: var(--simply-white); text-align: center; }
.newsletter .eyebrow { color: var(--aqua-haze); opacity: 1; }
.newsletter__headline {
  margin: 0 0 1.25rem;
  color: var(--butter-gelb);
  font-size: clamp(2.1rem, 6.5vw, 3.9rem);
}
.newsletter__text { margin: 0 auto 2.5rem; max-width: 44ch; font-size: clamp(1.05rem, 2.4vw, 1.25rem); }

#creer-nl { max-width: 480px; margin-inline: auto; }
.nl-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  padding: 0.95em 1.1em;
  color: var(--simply-white);
  background: transparent;
  border: 1px solid var(--aqua-haze);
  border-radius: 2px;
}
.nl-form input[type="email"]::placeholder { color: rgba(249, 249, 249, 0.5); }
.nl-form input[type="email"]:focus-visible { outline: none; border-color: var(--butter-gelb); }
#nl-ok { margin: 0; font-size: 1.05rem; color: var(--butter-gelb); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--aqua-haze); color: var(--night-sky); text-align: center; }
.footer__wordmark { font-size: 2rem; color: var(--night-sky); margin-bottom: 1.5rem; }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: center; align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.footer__nav a { text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.footer__nav a:hover { border-bottom-color: var(--night-sky); }
.footer__social {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-bottom: 1.5rem;
}
/* Footer-Social-Link "Pinterest": Hover -> Buttergelb-Fläche, Text Night-Sky */
.social-link {
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.5em 1.1em;
  border: 1px solid var(--night-sky);
  border-radius: 2px;
  transition: background-color .25s ease, color .25s ease;
}
.social-link:hover, .social-link:focus-visible {
  background: var(--butter-gelb);
  border-color: var(--butter-gelb);
  color: var(--night-sky);
  outline: none;
}
.footer__copy { margin: 0; font-size: 0.85rem; opacity: 0.85; }

/* ==========================================================================
   STATIC PAGES (Impressum · Datenschutz · 404)
   ========================================================================== */
.page-header { padding: clamp(1.75rem, 4vw, 2.5rem) var(--pad-x); background: var(--simply-white); }
.page-header .wordmark { font-size: clamp(1.5rem, 3.5vw, 2rem); color: var(--night-sky); }

.legal { background: var(--simply-white); color: var(--night-sky); padding: clamp(2rem, 5vw, 4rem) var(--pad-x) var(--section-y); }
.legal__title { margin: 0 0 2.5rem; font-size: clamp(2.2rem, 7vw, 3.5rem); }
.legal h2 { margin: 2.75rem 0 0.9rem; font-size: 1.55rem; }
.legal h3 { margin: 1.9rem 0 0.6rem; font-size: 1.2rem; font-family: var(--font-body); font-weight: 400; }
.legal h4 { margin: 1.4rem 0 0.5rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 400; }
.legal p, .legal ul { font-size: 1rem; margin: 0 0 1.1rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--night-sky); text-underline-offset: 2px; }
.legal address { font-style: normal; }
.legal hr { border: none; border-top: 1px solid rgba(16, 23, 35, 0.15); margin: 2.5rem 0; }
.legal .upper { text-transform: uppercase; font-size: 0.92rem; }

/* 404 */
.notfound {
  min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--simply-white); color: var(--night-sky);
  padding: var(--section-y) var(--pad-x);
}
.notfound h1 { font-size: clamp(2.6rem, 9vw, 5rem); margin: 0 0 1.25rem; }
.notfound h1 .dot { color: var(--sonnen-gelb); }
.notfound p { margin: 0 0 2rem; font-size: 1.15rem; max-width: 32ch; }
