/* =====================================================================
   Upgreens · Kitchenforest — TRENDSET OnePager
   Produktions-Stylesheet (aus dem Design-Prototyp überführt)
   Schriften: siehe fonts.css (self-hosted, DSGVO)
   ===================================================================== */

:root {
  --bg: #0f2a1a;          /* Seitenhintergrund dunkelgrün */
  --bg-deep: #0b1f13;     /* tieferes Grün / Card-BG Claim */
  --bg-wrap: #14261a;     /* Bild-Wrapper dunkel */
  --cream: #f0e6d4;       /* Cream-Card-Hintergrund */
  --cream-text: #2a2520;  /* Cream-Text dunkel */
  --cream-muted: #6a6152; /* Cream-Text gedämpft */
  --terra: #c45a30;       /* Akzent Terracotta (CTAs) */
  --terra-dark: #a84a24;  /* Terracotta hover */
  --sand: #d8a486;        /* Warm-Sand (Kicker auf dunkel) */
  --maxw: 1080px;
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.page { background: var(--bg); }
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dark); }
::selection { background: var(--terra); color: #fff; }
img { display: block; }
h1, h2, h3, p { margin: 0; }
input, textarea, select { font-family: 'Inter', sans-serif; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.4); }
input:focus, textarea:focus { outline: none; }

/* ---------- Layout-Helfer ---------- */
.section { display: flex; justify-content: center; }
.container { width: 100%; max-width: var(--maxw); }

/* Fraunces-Utilities */
.serif { font-family: 'Fraunces', serif; }
.i-b { font-style: italic; font-weight: 700; } /* „Kitchenforest" im Fließtext/Claim */

/* Gemeinsame Bausteine */
.kicker {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--sand);
  margin-bottom: 14px;
}
.h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
}
.subline { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn__arrow { font-size: 1.15em; line-height: 1; }

.btn--compact { background: var(--terra); color: #fff; font-size: 13px; padding: 9px 18px; }
.btn--compact:hover { background: var(--terra-dark); color: #fff; }

.btn--lg {
  gap: 12px; background: var(--terra); color: #fff;
  font-size: 17px; padding: 18px 40px;
  box-shadow: 0 22px 44px -16px rgba(196,90,48,0.9);
}
.btn--lg:hover { background: var(--terra-dark); color: #fff; }

.btn--white {
  gap: 12px; background: #fff; color: var(--terra);
  font-size: 17px; padding: 18px 42px;
  box-shadow: 0 18px 38px -14px rgba(0,0,0,0.55);
}
.btn--white:hover { background: var(--cream); color: var(--terra); }

/* ---------- Sticky-Ankernav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 12px 20px;
  background: rgba(15,42,26,0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,230,212,0.12);
  opacity: 0; transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.nav.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav__logo { height: 18px; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__link { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
.nav__link:hover { color: var(--sand); }

/* ---------- Sektion 1 · Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,25,15,0.55) 0%, rgba(9,25,15,0.30) 38%, rgba(9,25,15,0.86) 100%);
  opacity: 0.6;
}
.hero__header {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px 16px; padding: 20px;
}
.hero__wordmark { height: 22px; }
.hero__meta-group { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; }
.hero__location {
  font-size: clamp(10px, 2.6vw, 12px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); white-space: nowrap;
}
.hero__content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 40px 24px 56px;
}
.hero__badge {
  display: inline-flex; align-items: center;
  padding: 12px 24px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; margin-bottom: 34px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero__badge img { height: 26px; }
.hero__title {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(38px, 8.5vw, 76px); line-height: 1.04;
  max-width: 15ch; letter-spacing: -0.01em; text-wrap: balance;
}
.hero__image {
  width: 100%; max-width: 1100px; margin-top: 40px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8);
}
.hero__image img { width: 100%; height: clamp(300px, 42vw, 560px); object-fit: cover; object-position: center 44%; }
.hero__price {
  margin-top: 22px; font-weight: 500;
  font-size: clamp(13px, 2.4vw, 14px); letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}

/* ---------- Sektion 2 · Brand-Intro (Cream) ---------- */
.s-brand { padding: 72px 20px 76px; }
.brand-card {
  width: 100%; max-width: 820px;
  background: var(--cream); color: var(--cream-text);
  border-radius: 20px; padding: clamp(30px, 6vw, 64px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}
.brand-card__logo { height: 24px; margin-bottom: 30px; }
.brand-card__text { font-size: clamp(16px, 2.3vw, 19px); line-height: 1.62; max-width: 46ch; }
.brand-card__text p { margin: 0 0 1.15em; }
.brand-card__text p:last-child { margin: 0; color: var(--cream-muted); }

/* ---------- Sektion 2B · Claim + Bild ---------- */
.s-claim { padding: 0 20px 76px; }
.claim {
  position: relative; width: 100%; max-width: 1080px;
  min-height: clamp(360px, 52vw, 540px);
  border-radius: 20px; overflow: hidden; background: var(--bg-deep);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}
.claim__img {
  position: absolute; top: 50%; right: -60px; transform: translateY(-50%);
  height: 118%; width: auto; max-width: none; object-fit: cover;
}
.claim__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,31,19,0.94) 0%, rgba(11,31,19,0.78) 34%, rgba(11,31,19,0.12) 62%, rgba(11,31,19,0) 80%);
}
.claim__inner { position: relative; height: 100%; min-height: inherit; display: flex; align-items: center; padding: clamp(30px, 5vw, 60px); }
.claim__text {
  font-family: 'Fraunces', serif; font-style: normal; font-weight: 400;
  font-size: clamp(28px, 4.6vw, 48px); line-height: 1.12; letter-spacing: -0.015em;
  max-width: 15ch; color: #fff; text-wrap: balance;
}

/* ---------- Sektion 3 · Launch Kollektion ---------- */
.s-collection { scroll-margin-top: 72px; padding: 20px 20px 40px; }
.s-collection .h2 { margin: 0 0 8px; }
.s-collection .subline { margin: 0 0 40px; }
.collection__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product {
  background: rgba(240,230,212,0.05); border: 1px solid rgba(240,230,212,0.14);
  border-radius: 16px; padding: 14px;
}
.product__media { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: var(--bg-wrap); }
.product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 66% 50%; }
.product__name { display: flex; align-items: center; gap: 9px; margin-top: 16px; }
.product__label { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; color: #fff; }
.product__tag { font-size: 13px; margin-top: 4px; color: rgba(255,255,255,0.55); }
.product__tag--season { color: var(--sand); }
.swatch { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; }
.swatch--black { background: #1c1c1c; border: 1px solid rgba(255,255,255,0.25); }
.swatch--white { background: #f0f0ec; border: 1px solid rgba(255,255,255,0.3); }
.swatch--beige { background: #c0ad90; }
.swatch--terra { background: #c45a30; }
.collection__note { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 52ch; margin: 32px auto 0; text-align: center; }
.collection__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 44px; }
.cta-kicker {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand);
}

/* ---------- Sektion 4 · Konfigurator ---------- */
.s-config { padding: 56px 20px 40px; }
.config__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.s-config .kicker { margin-bottom: 14px; }
.s-config .h2 { margin: 0 0 24px; }
.config__lead { font-size: clamp(15px, 2.2vw, 17px); line-height: 1.62; color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 0 28px; }
.config__key {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(20px, 3.2vw, 30px); line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 28px; color: #fff; text-wrap: balance;
}
.facts {
  display: flex; flex-wrap: wrap; gap: 18px 36px; padding: 22px 28px;
  border: 1px solid rgba(240,230,212,0.18); border-radius: 14px;
  background: rgba(240,230,212,0.04); width: fit-content; max-width: 100%;
}
.fact__label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.fact__value { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: #fff; margin-top: 2px; }
.config__media { border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7); }
.config__media img { width: 100%; }

/* ---------- Sektion 5 · Warum ins Sortiment ---------- */
.s-business { padding: 56px 20px 40px; }
.business__head { max-width: 20ch; margin-bottom: 8px; }
.business__head .kicker { margin-bottom: 16px; }
.business__head .h2 { margin: 0 0 44px; }
.business__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.arg { background: rgba(240,230,212,0.06); border: 1px solid rgba(240,230,212,0.14); border-radius: 16px; padding: 30px 28px; }
.arg__title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(21px, 2.7vw, 26px); line-height: 1.12; letter-spacing: -0.01em;
  margin: 0 0 12px; color: #fff; overflow-wrap: break-word; hyphens: auto;
}
.arg__body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.72); margin: 0; }
.action {
  margin-top: 52px; background: var(--terra); border-radius: 22px;
  padding: clamp(34px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
  box-shadow: 0 34px 80px -34px rgba(196,90,48,0.7);
}
.action__kicker {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 14px;
}
.action__title {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(27px, 4.2vw, 42px); line-height: 1.1; letter-spacing: -0.015em;
  margin: 0; color: #fff; max-width: 20ch; text-wrap: balance;
}
.action__title .upright { font-style: normal; }

/* ---------- Sektion 6 · Konditionen (Cream) ---------- */
.s-conditions { scroll-margin-top: 72px; padding: 56px 20px 72px; }
.conditions {
  width: 100%; max-width: 940px; background: var(--cream); color: var(--cream-text);
  border-radius: 20px; padding: clamp(30px, 6vw, 60px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}
.conditions .kicker { color: var(--terra); }
.conditions__h2 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 8px;
}
.conditions__sub { font-size: 14px; color: var(--cream-muted); margin: 0 0 40px; }
.cond-group { font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; color: var(--terra); margin-bottom: 4px; }
.cond-list { display: flex; flex-direction: column; }
.cond-list--gap { margin-bottom: 40px; }
.cond-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 16px 0; border-top: 1px solid rgba(42,37,32,0.14);
}
.cond-row__label { font-size: 15px; color: var(--cream-muted); flex-shrink: 0; }
.cond-row__value {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: clamp(15px, 2vw, 18px); text-align: right; letter-spacing: -0.005em; color: var(--cream-text);
}
.cond-special-title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(19px, 2.6vw, 23px); color: var(--cream-text); margin: 44px 0 4px;
}
.cond-special-sub { font-size: 13px; color: var(--cream-muted); margin: 0 0 18px; }
.cond-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.cond-box { background: #fff; border-radius: 12px; padding: 22px 24px; }
.cond-box__title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: var(--terra); margin-bottom: 6px; }
.cond-box__text { font-size: 13px; line-height: 1.5; color: var(--cream-muted); margin: 0; }

/* ---------- Sektion 7 · Kontakt / Formular ---------- */
.s-contact { scroll-margin-top: 72px; padding: 20px 20px 80px; }
.contact { width: 100%; max-width: 940px; text-align: center; }
.contact__statement {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 4.5vw, 44px); line-height: 1.12; letter-spacing: -0.015em;
  margin: 0 auto 40px; max-width: 18ch; text-wrap: balance;
}
.contact__intro { font-size: clamp(15px, 2.2vw, 17px); line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 44ch; margin: 0 auto 36px; }

.form { width: 100%; max-width: 560px; margin: 0 auto; text-align: left; display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.field { display: block; }
.field__label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; letter-spacing: 0.02em; }
.field__label .opt { color: rgba(255,255,255,0.35); }
.input, .textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(240,230,212,0.06); border: 1px solid rgba(240,230,212,0.2);
  border-radius: 10px; color: #fff; font-size: 15px;
}
.textarea { resize: vertical; }
.input:focus, .textarea:focus { border-color: var(--terra); background: rgba(240,230,212,0.1); }
.form__submit {
  justify-self: start; display: inline-flex; align-items: center; gap: 12px;
  background: var(--terra); color: #fff; font-weight: 600; font-size: 16px;
  padding: 16px 34px; border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 20px 40px -18px rgba(196,90,48,0.8); font-family: 'Inter', sans-serif;
}
.form__submit:hover { background: var(--terra-dark); }
.form__submit:disabled { opacity: 0.6; cursor: default; }
.form__note { font-size: 12px; color: rgba(255,255,255,0.45); margin: 2px 0 0; }
.form__note a { color: rgba(255,255,255,0.6); }
.form__note a:hover { color: var(--sand); }
.form__status { margin: 6px 0 0; font-size: 14px; line-height: 1.5; min-height: 1em; }
.form__status--ok { color: #8fce9b; }
.form__status--err { color: #e59a7a; }

/* Honeypot – vor Menschen verborgen */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.contact__details { margin-top: 48px; color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.7; }
.contact__details .muted { color: rgba(255,255,255,0.6); }
.contact__details a { color: var(--sand); }

.footer { margin-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer__logo { height: 64px; }
.footer__links { display: flex; gap: 20px; margin-top: 6px; font-size: 13px; }
.footer__links a { color: rgba(255,255,255,0.55); }
.footer__links a:hover { color: var(--sand); }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 100px 20px 90px; }
.legal .back { display: inline-block; margin-bottom: 32px; font-size: 14px; color: rgba(255,255,255,0.6); }
.legal .back:hover { color: var(--sand); }
.legal h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(30px, 5vw, 44px); line-height: 1.1; margin: 0 0 24px;
}
.legal h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; margin: 34px 0 8px; color: var(--sand); }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); }
.legal ul { padding-left: 20px; }
.legal a { color: var(--sand); }
.legal strong { color: #fff; font-weight: 600; }
.legal .placeholder { color: #e59a7a; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (min-width: 900px) {
  .collection__grid { grid-template-columns: repeat(4, 1fr); }
  .config__grid { grid-template-columns: 1fr 1fr; }
}
