/* =========================================================
   Noventis – Stylesheet
   Stil: C — Modern & Minimal
   ========================================================= */

:root {
  --braun-dunkel:  #1a1a1a;
  --braun-mittel:  #555555;
  --beige:         #c9a876;
  --creme:         #f5f5f2;
  --salbei:        #999999;
  --text:          #1a1a1a;
  --muted:         #777777;

  --font-headline: 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', sans-serif;

  --bg-light:      #ffffff;
  --bg-cream:      #f5f5f2;
  --header-bg:     #1a1a1a;
  --header-text:   #ffffff;
  --link:          #1a1a1a;
  --link-hover:    #c9a876;
  --accent:        #c9a876;
  --star:          #c9a876;

  --max-width:    1100px;
  --radius:       6px;
  --shadow-soft:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card:  0 4px 14px rgba(0, 0, 0, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-light);
}
img { max-width: 100%; display: block; }
a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--link-hover); }
h1, h2, h3 {
  font-family: var(--font-headline);
  color: var(--braun-dunkel);
  line-height: 1.2;
}
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 8px; }
h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.lead { font-size: 18px; margin-bottom: 18px; }
.subtitle { color: var(--muted); font-style: italic; margin-bottom: 32px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.center { text-align: center; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }

/* ===== Header =========================================== */
.site-header {
  background: var(--header-bg);
  color: var(--header-text);
  position: sticky; top: 0; z-index: 10;
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 24px; flex-wrap: wrap;
}
.brand {
  color: var(--header-text);
  text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-line {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--beige);
}
.brand-name { font-family: var(--font-headline); font-size: 26px; font-weight: 700; letter-spacing: 1px; }
.site-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.site-nav a {
  color: var(--header-text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.site-nav a:hover { border-bottom-color: var(--beige); color: var(--header-text); }

/* ===== Hero (Text-only Variante, ohne Foto) ============= */
.hero {
  position: relative; min-height: 560px; color: var(--header-text);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.hero-text {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}
.hero-overlay {
  position: relative; z-index: 1; min-height: 560px;
  display: flex; align-items: center;
  padding: 100px 0;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 6px; text-transform: uppercase;
  margin-bottom: 24px; color: var(--beige);
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 500; line-height: 1;
  margin-bottom: 28px; color: var(--header-text);
  letter-spacing: -1px;
}
.hero-tagline {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 36px; max-width: 560px;
  color: rgba(255,255,255,0.85);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Buttons ========================================== */
.btn {
  display: inline-block; padding: 14px 28px;
  border-radius: var(--radius); text-decoration: none;
  font-weight: 500; font-size: 15px;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
}
.btn-primary { background: var(--beige); color: var(--braun-dunkel); }
.btn-primary:hover {
  background: var(--header-text); color: var(--braun-dunkel);
  transform: translateY(-1px); box-shadow: var(--shadow-card);
}
.btn-secondary {
  background: transparent; color: var(--header-text);
  border-color: var(--header-text);
}
.btn-secondary:hover { background: var(--header-text); color: var(--braun-dunkel); }

/* ===== Karten =========================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.product-card {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.product-icon { font-size: 36px; margin-bottom: 14px; }
.product-card ul { list-style: none; padding: 0; }
.product-card li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  color: var(--text);
  font-size: 15px;
}
.product-card li:last-child { border-bottom: none; }

/* ===== Info-Hinweis-Box ================================= */
.info-box {
  background: var(--accent);
  color: var(--braun-dunkel);
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 4px solid var(--braun-dunkel);
  margin-top: 8px; font-size: 16px;
}

/* ===== Kontakt-Bereich ================================== */
.contact-big {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4vw, 34px);
  margin: 24px 0 32px;
}
.contact-big a {
  text-decoration: none;
  border-bottom: 2px solid var(--beige);
  padding-bottom: 4px;
}
.contact-big a:hover { color: var(--link-hover); }

/* ===== Footer =========================================== */
.site-footer {
  background: var(--header-bg);
  color: var(--header-text);
  padding: 48px 0; margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center;
}
.footer-brand { font-size: 14px; line-height: 1.6; }
.footer-nav { display: flex; gap: 24px; justify-content: center; }
.footer-nav a { color: var(--beige); text-decoration: none; }
.footer-nav a:hover { color: var(--header-text); text-decoration: underline; }
.footer-copy { text-align: right; font-size: 13px; color: var(--beige); }

/* ===== Responsive ======================================= */
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-nav { gap: 16px; font-size: 13px; }
  .hero, .hero-overlay { min-height: 460px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
}
