/* =========================================================================
   Golden Spoon - Produktwebsite
   Rekonstruktion aus "Golden-Spoon-Website-Review.pdf" (Stand 26.06.2026).
   Farben wurden pixelgenau aus den Screenshots im PDF ausgelesen.
   ========================================================================= */

/* ---------------------------------------------------------------- Schriften */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/nunito-sans-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ Tokens */
:root {
  --ink:          #3e3874;   /* Tiefviolett - Ueberschriften, Footer        */
  --ink-mid:      #4a447c;   /* Navigation, aktive Zustaende                */
  --body:         #565182;   /* Fliesstext                                  */
  --body-soft:    #6f6a95;   /* Sekundaertext                               */
  --berry:        #9a4564;   /* Beerenton - Hero, Launch-Sektion            */
  --berry-light:  #a54d6c;
  --berry-deep:   #8b3d59;
  --crimson:      #ab4a5f;   /* Buttons                                     */
  --crimson-ink:  #a33b54;   /* Eyebrow-Labels                              */
  --gold:         #b8873b;
  --cream:        #faf6ef;
  --lavender:     #efeaf7;
  --lavender-mid: #e3ddf2;
  --white:        #ffffff;

  --wrap:      1180px;
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 44px rgba(62, 56, 116, .10);
  --shadow-sm: 0 8px 22px rgba(62, 56, 116, .08);

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------------- Basis */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lavender);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height:auto ist wichtig - sonst verzerren die width/height-Attribute im
   Markup die Bilder, sobald max-width greift. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 28px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .92;
  letter-spacing: .005em;
  margin: 0;
}

h1.display { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2.display { font-size: clamp(2.1rem, 4.9vw, 3.5rem); }
h3.display { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

/* Kleine Grossbuchstaben-Labels ueber den Ueberschriften */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--crimson-ink);
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}
.eyebrow--plain::before { display: none; }

.lede { font-size: 1.06rem; color: var(--body); }
.muted { color: var(--body-soft); }

.section { padding: clamp(64px, 8vw, 118px) 0; }
.section--lavender { background: var(--lavender); }
.section--cream    { background: var(--cream); }
.section--white    { background: var(--white); }
.section--berry    { background: var(--berry); color: rgba(255, 255, 255, .82); }
.section--berry .display { color: var(--cream); }
.section--berry .eyebrow { color: rgba(250, 246, 239, .72); }

.center { text-align: center; }
.measure { max-width: 620px; }
.measure--center { max-width: 620px; margin-inline: auto; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  border: 0;
  border-radius: 10px;
  background: var(--btn-bg);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover {
  background: #97374d;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(154, 69, 100, .28);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(250, 246, 239, .75);
  color: var(--cream);
}
.btn--ghost:hover {
  background: rgba(250, 246, 239, .12);
  border-color: var(--cream);
  box-shadow: none;
}
.btn--lg { padding: 16px 34px; font-size: .92rem; }
.btn__arrow { font-size: 1.05em; line-height: 1; }

/* -------------------------------------------------------------------- Kopf */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--lavender);
  border-bottom: 1px solid rgba(62, 56, 116, .07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  flex: none;
}
.brand-lockup img { height: 46px; width: auto; }
.brand-lockup .logo-gs { height: 38px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.site-nav a:hover { color: var(--crimson); }
.site-nav a[aria-current='page'] {
  color: var(--crimson-ink);
  border-bottom-color: var(--crimson);
}

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }

/* Sprachumschalter: im Entwurf vorhanden, ohne zweite Sprachfassung
   bewusst als reines Anzeigeelement umgesetzt. */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--lavender-mid);
  color: var(--ink-mid);
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .12em;
}
.lang svg { width: 10px; height: 10px; opacity: .7; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--lavender-mid);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { margin: 0 auto; position: relative; }
.nav-toggle span::before { content: ''; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ''; position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 26px 0 0;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--body-soft);
  text-decoration: none;
}
.back-link:hover { color: var(--crimson); }

/* -------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(118% 96% at 48% 44%,
              var(--berry-light) 0%, var(--berry) 48%, var(--berry-deep) 100%);
  padding: clamp(52px, 7vw, 76px) 0 clamp(56px, 7vw, 84px);
  text-align: center;
}
.hero__inner { position: relative; z-index: 2; }
.hero__title { color: var(--cream); }
.hero__spoon {
  width: min(660px, 88%);
  margin: clamp(-10px, -1vw, 0px) auto clamp(10px, 2vw, 24px);
  filter: drop-shadow(0 26px 34px rgba(62, 26, 44, .34));
}
.hero__sub {
  max-width: 480px;
  margin: 0 auto 30px;
  color: rgba(250, 246, 239, .88);
  font-size: 1.04rem;
}

/* Freigestellte Goldelemente in den Ecken (wie im Entwurf) */
.deco { position: absolute; z-index: 1; pointer-events: none; user-select: none; }
.deco--strawberry { top: 9%;  left: 4.5%;  width: clamp(64px, 8.4vw, 122px); }
.deco--peach      { top: 10%; right: 4.5%; width: clamp(64px, 8.6vw, 126px); }
.deco--vanilla    { bottom: 7%; left: 3.5%; width: clamp(66px, 9vw, 132px); }
.deco--chocolate  { bottom: 9%; right: 4.5%; width: clamp(62px, 8vw, 118px); }

/* Hinweis: Der Original-Entwurf streut feine Lichtpunkte ueber den Hero.
   Sie wurden bewusst entfernt - im fertigen Layout wirken sie wie Staub auf
   dem Bildschirm, und einer lag im Original sogar mitten auf dem Joghurt. */

/* Schmalerer Kopfbereich fuer Unterseiten */
.page-hero { padding: clamp(48px, 6vw, 86px) 0 clamp(40px, 5vw, 70px); text-align: center; }
.page-hero .display { margin-bottom: 20px; }

/* ------------------------------------------------------------------ Raster */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.split--text-first > :first-child { order: -1; }

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 76px);
  margin-top: clamp(38px, 5vw, 62px);
}
.stat { text-align: center; position: relative; padding-inline: clamp(14px, 3vw, 34px); }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(62, 56, 116, .16);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--ink);
}
.stat__label {
  margin-top: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--crimson-ink);
}
.section--berry .stat__value { color: var(--cream); }
.section--berry .stat__label { color: rgba(250, 246, 239, .7); }
.section--berry .stat + .stat::before { background: rgba(250, 246, 239, .28); }

/* ------------------------------------------------------------------- Karten */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.card--cream { background: var(--cream); box-shadow: none; }
.card--lavender { background: var(--lavender); box-shadow: none; }

/* Produkte */
/* Fuenf Sorten - die Vorschau auf der Startseite stellt sie in eine Reihe,
   die Produktseite braucht mehr Breite fuer die Datenblaetter. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: clamp(38px, 5vw, 60px);
}
.product-grid--sheet {
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 22px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product__shot { width: 100%; max-width: 240px; margin-bottom: 20px; }
.product__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.product__meta {
  margin-top: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--crimson-ink);
}

/* Datenblatt in der Produktkachel */
.spec-sheet { width: 100%; margin: 20px 0 0; font-size: .82rem; }
.spec-sheet > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid rgba(62, 56, 116, .11);
  text-align: left;
}
.spec-sheet dt { color: var(--body-soft); }
.spec-sheet dd { margin: 0; color: var(--ink); font-weight: 700; }

/* Halal-Siegel */
.halal-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 44px;
  border: 1.5px solid #3f9b57;
  border-radius: var(--radius);
  background: var(--lavender);
}
.halal-card img { width: 116px; }
.halal-card span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
}
.halal-mark { width: 92px; margin-inline: auto; }

/* Hinweis: Hier standen die Bausteine der Haendlersektion (Logo-Reihe
   "Stocked at", Haendlerkacheln, Store Finder mit Staedte-Reitern). Sie sind
   entfernt, weil die zugehoerigen Daten derzeit nicht vorliegen und die
   Where-to-Buy-Seite deshalb entfallen ist. */

/* Spezifikationszeilen (Launch-Sektion) */
.spec-list { max-width: 560px; margin: clamp(32px, 4vw, 48px) auto 0; }
.spec {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid rgba(250, 246, 239, .25);
  text-align: left;
}
.spec:last-child { border-bottom: 1px solid rgba(250, 246, 239, .25); }
.spec dt {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, .6);
}
.spec dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Landschaftsband auf der Markenseite */
.pasture { width: 100%; margin-top: clamp(30px, 4vw, 52px); }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid rgba(62, 56, 116, .14);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--crimson);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 22px; }

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 4vw, 50px);
}
.contact-card { padding: 30px; background: var(--cream); border-radius: var(--radius); }
.contact-card__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--crimson-ink);
  margin-bottom: 12px;
}
.contact-card a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--crimson); }

/* ------------------------------------------------------------------ Fusszeile */
.site-footer {
  background: var(--ink);
  color: rgba(241, 236, 248, .72);
  padding: clamp(44px, 5vw, 62px) 0 clamp(34px, 4vw, 46px);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-nav a { color: rgba(241, 236, 248, .8); text-decoration: none; font-size: .95rem; }
.footer-nav a:hover { color: var(--white); }
.social { display: flex; gap: 16px; }
.social a { color: rgba(241, 236, 248, .78); display: grid; place-items: center; }
.social a:hover { color: var(--white); }
.social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: clamp(30px, 4vw, 44px);
}
.footer-bottom img { height: 40px; width: auto; }
.footer-legal {
  width: 100%;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(241, 236, 248, .14);
  font-size: .8rem;
  color: rgba(241, 236, 248, .5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
}

/* ------------------------------------------------------------ 404 / Hinweise */
.notfound { padding: clamp(80px, 12vw, 150px) 0; text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--crimson); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------------ Responsiv */
@media (max-width: 940px) {
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 10px 28px 22px;
    background: var(--lavender);
    border-bottom: 1px solid rgba(62, 56, 116, .1);
    box-shadow: var(--shadow-sm);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(62, 56, 116, .08);
  }
  .site-nav a[aria-current='page'] { border-bottom-color: rgba(62, 56, 116, .08); }
  .nav-toggle { display: grid; place-items: center; }
  .site-header { position: relative; }
  .header-inner { min-height: 74px; gap: 14px; }
  .header-actions .btn { display: none; }
  .brand-lockup { gap: 14px; }
  .brand-lockup img { height: 38px; }
  .brand-lockup .logo-gs { height: 32px; }
  .split { grid-template-columns: 1fr; }
  .split--text-first > :first-child { order: 0; }
  .spec { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .lang { display: none; }
  .deco--strawberry, .deco--peach { top: 2%; }
  .deco--vanilla, .deco--chocolate { bottom: 2%; }
  .stat + .stat::before { display: none; }
  .stats { gap: 26px 34px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
