:root {
  --bg: #0e0d0c;
  --bg-alt: #151312;
  --ink: #f5f1ea;
  --ink-soft: #a89f93;
  --line: #2a2724;
  --paper: #171514;
  --max: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

h1, h2, h3, .h-font {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

a {
  color: var(--ink);
  text-decoration: none;
}
a:hover { color: var(--ink-soft); }

.cap {
  font-family: 'IBM Plex Sans', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.btn-solid { background: var(--ink); color: var(--bg); }
.btn:hover { opacity: .8; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand svg { width: 20px; height: 24px; fill: var(--ink); }
.nav-brand span { font-size: 17px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.nav-cart { display: inline-flex; }
.nav-cart svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-mobile-panel { display: none; }
.nav-right { display: flex; align-items: center; gap: 22px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile-panel.open {
    display: flex; flex-direction: column; gap: 18px;
    padding: 20px 24px 28px; border-bottom: 1px solid var(--line);
  }
  .nav-mobile-panel a { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
}

/* HERO — single lifestyle photo, headline overlaid top-left */
.hero {
  position: relative;
  min-height: 520px;
  background: radial-gradient(circle at 68% 45%, #b5233a 0%, #6e1420 38%, #1a0d0f 72%, #0e0d0c 100%);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero svg.lamp-silhouette {
  position: absolute; right: 8%; bottom: -10%; width: 320px; height: 384px;
  fill: #ff5a4a; opacity: .85; filter: drop-shadow(0 0 60px rgba(255,90,74,.45));
}
.hero-copy {
  position: relative; z-index: 1; padding: 64px 48px; max-width: 480px;
}
.hero-copy h1 {
  margin: 0; font-size: clamp(26px, 3vw, 34px); font-weight: 600; line-height: 1.35;
}
.photo-label {
  position: absolute; bottom: 18px; right: 24px; font-size: 10px; font-family: monospace;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(245,241,234,.55); z-index: 1;
}

@media (max-width: 700px) {
  .hero { min-height: 380px; }
  .hero-copy { padding: 40px 24px; }
  .hero svg.lamp-silhouette { width: 220px; height: 264px; right: -5%; }
}

/* SECTIONS */
section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin: 14px 0 0; font-size: 30px; font-weight: 600; }

/* INTRO — photo left, text right */
.intro-split { display: flex; gap: 56px; align-items: center; }
.intro-photo {
  flex: 0 0 320px; height: 320px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 40% 35%, #e8a3c9 0%, #7a2f57 45%, #1c0f18 85%);
}
.intro-photo svg { position: absolute; inset: 0; margin: auto; width: 60%; height: 60%; fill: #2a1420; opacity: .5; top: 20%; left: 20%; }
.intro-copy { flex: 1; }
.intro-copy p { margin: 0 0 16px; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
@media (max-width: 800px) {
  .intro-split { flex-direction: column; }
  .intro-photo { flex: none; width: 100%; height: 260px; }
}

/* AUFBAU */
.aufbau {
  display: flex; flex-wrap: wrap; gap: 56px; align-items: center; justify-content: center;
}
.aufbau-part { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 170px; text-align: center; }
.aufbau-shape { background: transparent; border: 1px solid var(--ink); }
.aufbau-name { font-size: 16px; font-weight: 600; margin-top: 2px; }
.aufbau-text { max-width: 320px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* COLOR CARDS */
.color-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
@media (max-width: 900px) { .color-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.color-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); }
.color-photo { height: 260px; position: relative; }
.color-photo .photo-label { font-size: 9px; bottom: 10px; right: 12px; }
.color-body { padding: 22px; }
.color-body .name { font-size: 16px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.color-body .sub { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 8px 0 0; }
.color-body .btn { width: 100%; margin-top: 18px; height: 42px; font-size: 12px; }
.color-price { margin-top: 12px; font-size: 13px; color: var(--ink-soft); }

.amber-rauch .color-photo { background: radial-gradient(circle at 40% 30%, #ff8a3d 0%, #b5451c 45%, #241109 85%); }
.salbei-ton .color-photo { background: radial-gradient(circle at 40% 30%, #b8d68a 0%, #5d7a3e 45%, #12180a 85%); }
.mitternacht-kupfer .color-photo { background: radial-gradient(circle at 40% 30%, #d98a4e 0%, #2e3a52 55%, #0a0d12 85%); }
.kreide-koralle .color-photo { background: radial-gradient(circle at 40% 30%, #ffb199 0%, #d9d0c4 50%, #211b17 85%); }

/* LIFESTYLE COLLAGE */
.collage { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.collage-big { height: 520px; position: relative; background: radial-gradient(circle at 55% 40%, #d43a2e 0%, #6e1a18 40%, #160a09 80%); }
.collage-stack { display: flex; flex-direction: column; gap: 16px; }
.collage-small { flex: 1; position: relative; background: radial-gradient(circle at 45% 35%, #ff6a3d 0%, #7a2810 50%, #1a0d08 85%); }
.collage-small.alt { background: radial-gradient(circle at 45% 35%, #ffb199 0%, #b5563a 45%, #1a0d08 85%); }
@media (max-width: 800px) {
  .collage { grid-template-columns: 1fr; }
  .collage-big { height: 300px; }
  .collage-stack { flex-direction: row; }
  .collage-small { height: 180px; }
}

/* MATERIAL / LIEFERUMFANG — plain two-column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.two-col .cap { display: block; margin-bottom: 14px; }
.two-col p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 10px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ABOUT */
.about-teaser { max-width: 480px; margin: 0 auto; text-align: center; }
.about-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(155deg, #3a3632, #17140f);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600; color: var(--ink-soft);
}
.about-teaser p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.about-teaser a { display: inline-block; margin-top: 12px; font-size: 13px; border-bottom: 1px solid var(--ink); }

/* FOOTER */
.footer-cta { text-align: center; padding-bottom: 60px; display: none; }

.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-row {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand svg { width: 16px; height: 19px; fill: var(--ink-soft); }
.footer-brand span { font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--ink-soft); }
.footer-email { font-size: 12px; color: var(--ink-soft); }

/* SIMPLE PAGE (Über mich, Impressum, Datenschutz, AGB) */
.simple-page { max-width: 680px; margin: 0 auto; padding: 90px 24px 110px; }
.simple-page h1 { font-size: 32px; font-weight: 600; margin: 16px 0 0; }
.simple-page p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.simple-page h2 { font-size: 19px; font-weight: 600; margin-top: 40px; }
.placeholder { color: #ff8a63; font-style: italic; }
