/* ═══════════════════════════════════════════════
   SIYAYA DIGITAL — Global Stylesheet
   www.siyaya-digital.com
   Green-first, clean, privacy-first aesthetic
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

/* ── Tokens ── */
:root {
  --g50:  #f4fbf4;
  --g100: #e0f3e2;
  --g200: #c2e6c5;
  --g300: #8dcb92;
  --g400: #5aad60;
  --g500: #3a9040;
  --g600: #2a7030;
  --g700: #1c5022;
  --g800: #0f3318;

  --text:       #1a3a1e;
  --text-mid:   #3a6b40;
  --text-light: #6a9b70;
  --text-faint: #a8c8ac;

  --white:  #ffffff;
  --cream:  #fafdf8;
  --border: #e0f3e2;

  --shadow-sm: 0 2px 12px rgba(42,112,48,0.07);
  --shadow-md: 0 6px 32px rgba(42,112,48,0.12);
  --shadow-lg: 0 20px 64px rgba(42,112,48,0.16);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color: var(--g500); text-decoration:none; }
a:hover { text-decoration:underline; }
h1,h2,h3 { font-family:'Playfair Display',serif; line-height:1.15; }
h1 { font-size: clamp(2.2rem,4.5vw,3.6rem); }
h2 { font-size: clamp(1.7rem,3vw,2.5rem); }
h3 { font-size: 1.2rem; font-family:'Nunito',sans-serif; font-weight:800; }
p  { color: var(--text-light); }

/* ── Layout ── */
.container        { max-width:1100px; margin:0 auto; padding:0 24px; }
.container--narrow{ max-width: 740px; margin:0 auto; padding:0 24px; }

/* ── NAV ── */
.nav {
  position:sticky; top:0; z-index:100;
  background:rgba(250,253,248,0.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  height:62px; display:flex; align-items:center;
}
.nav__inner {
  display:flex; align-items:center;
  justify-content:space-between;
  width:100%; max-width:1100px;
  margin:0 auto; padding:0 24px;
}
.nav__logo {
  display:flex; align-items:center; gap:10px;
  font-size:0.9rem; font-weight:800;
  letter-spacing:1.5px; color:var(--g700); text-decoration:none;
}
.nav__logo-mark {
  width:34px; height:34px;
  object-fit:contain;
  display:block; flex-shrink:0;
}
.nav__links { display:flex; gap:4px; align-items:center; }
.nav__link {
  font-size:0.83rem; font-weight:700; color:var(--text-light);
  padding:6px 14px; border-radius:20px; transition:all .2s; text-decoration:none;
}
.nav__link:hover { background:var(--g100); color:var(--g600); text-decoration:none; }
.nav__cta {
  background:var(--g500); color:white !important;
  padding:8px 18px; border-radius:20px;
  font-size:0.82rem; font-weight:800;
  transition:all .2s; text-decoration:none; margin-left:6px;
}
.nav__cta:hover { background:var(--g600); transform:translateY(-1px); text-decoration:none; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:var(--r-md);
  font-family:'Nunito',sans-serif; font-size:0.95rem; font-weight:800;
  cursor:pointer; border:none; transition:all .25s; text-decoration:none;
}
.btn--primary {
  background:var(--g500); color:white;
  box-shadow:0 4px 20px rgba(58,144,64,.35);
}
.btn--primary:hover {
  background:var(--g600); transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(58,144,64,.45);
  color:white; text-decoration:none;
}
.btn--outline {
  background:transparent; color:var(--g600);
  border:2px solid var(--g200);
}
.btn--outline:hover {
  background:var(--g50); border-color:var(--g300);
  text-decoration:none;
}
.btn--sm { padding:10px 20px; font-size:0.85rem; }

/* ── Cards ── */
.card {
  background:var(--white); border-radius:var(--r-lg);
  border:1px solid var(--border); box-shadow:var(--shadow-sm); overflow:hidden;
}

/* ── Legal shared ── */
.legal-page { padding:56px 0 100px; }

.legal-back {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.83rem; font-weight:700; color:var(--text-light);
  margin-bottom:36px; text-decoration:none; transition:color .2s;
}
.legal-back:hover { color:var(--g500); text-decoration:none; }

.legal-hero {
  background:linear-gradient(145deg, var(--g600), var(--g800));
  border-radius:var(--r-xl); padding:44px 48px;
  margin-bottom:36px; position:relative; overflow:hidden;
}
.legal-hero::before {
  content:''; position:absolute;
  top:-80px; right:-80px; width:260px; height:260px;
  border-radius:50%; background:rgba(255,255,255,.04);
}
.legal-hero::after {
  content:''; position:absolute;
  bottom:-40px; left:-40px; width:160px; height:160px;
  border-radius:50%; background:rgba(255,255,255,.03);
}
.legal-hero__eyebrow {
  font-size:0.68rem; font-weight:800; letter-spacing:3px;
  text-transform:uppercase; color:var(--g300); margin-bottom:12px;
}
.legal-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3vw,2.5rem);
  color:white; margin-bottom:10px; position:relative; z-index:1;
}
.legal-hero__meta { font-size:0.78rem; color:rgba(255,255,255,.5); }

/* Guarantee box */
.guarantee-box {
  background:linear-gradient(135deg,var(--g600),var(--g700));
  border-radius:var(--r-md); padding:22px 26px;
  margin:0 0 28px; display:flex; gap:16px; align-items:flex-start;
}
.guarantee-box__icon { font-size:26px; flex-shrink:0; margin-top:2px; }
.guarantee-box__title { font-size:0.95rem; font-weight:800; color:white; margin-bottom:5px; }
.guarantee-box__text  { font-size:0.82rem; color:rgba(255,255,255,.7); line-height:1.55; }

/* Warning box */
.warning-box {
  background:#fff8e1; border:1px solid #ffe082;
  border-radius:var(--r-sm); padding:14px 18px; margin:16px 0;
  font-size:0.82rem; color:#6d4c00; line-height:1.55;
}
.warning-box strong { color:#5d3c00; }

/* Legal clauses */
.legal-clause {
  padding:26px 32px;
  border-bottom:1px solid var(--g50);
}
.legal-clause:last-child { border-bottom:none; }
.clause-num {
  font-size:0.68rem; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; color:var(--g400); margin-bottom:4px;
}
.clause-title {
  font-size:1rem; font-weight:800; color:var(--text); margin-bottom:10px;
}
.clause-body {
  font-size:0.87rem; color:var(--text-light); line-height:1.75;
}
.clause-body p+p  { margin-top:10px; }
.clause-body ul   { padding-left:20px; margin:10px 0; }
.clause-body li   { margin-bottom:5px; }
.clause-body strong { color:var(--text-mid); }
.clause-body a    { color:var(--g500); }

/* Impressum grid */
.impressum-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--g100); border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--g100); }
.ig-cell { background:var(--white); padding:20px 24px; }
.ig-label { font-size:0.68rem; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-faint); margin-bottom:5px; }
.ig-value { font-size:0.88rem; font-weight:600; color:var(--text); line-height:1.55; }
.ig-cell--full { grid-column:1/-1; }

/* ── Footer ── */
.footer {
  background:var(--g800); color:rgba(255,255,255,.45);
  padding:52px 24px 36px; text-align:center;
}
.footer__logo { font-size:0.9rem; font-weight:800; letter-spacing:2px; color:white; margin-bottom:6px; }
.footer__tagline { font-size:0.78rem; margin-bottom:28px; }
.footer__links { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; }
.footer__link { font-size:0.75rem; font-weight:600; color:rgba(255,255,255,.45); text-decoration:none; transition:color .2s; }
.footer__link:hover { color:var(--g300); text-decoration:none; }
.footer__copy { font-size:0.7rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up   { animation:fadeUp .6s ease both; }
.delay-1   { animation-delay:.1s; }
.delay-2   { animation-delay:.2s; }
.delay-3   { animation-delay:.3s; }
.delay-4   { animation-delay:.4s; }

/* ── Responsive ── */
@media(max-width:768px){
  .nav__links .nav__link { display:none; }
  .legal-hero { padding:28px 22px; }
  .legal-clause { padding:20px 18px; }
  .impressum-grid { grid-template-columns:1fr; }
}
