/* ============================================================
   Stoffträume Birgit Zander — Boutique-Raumausstattung Seevetal
   Eigenständige Designsprache: warmes Creme + Beere/Magenta + Kupfer.
   Keine Google Fonts (System-Stack + websichere Georgia-Serife).
   Light/Dark via data-theme. Mobile-First.
   ============================================================ */

:root {
  /* Light (Default) */
  --bg:        #faf6f1;
  --bg-2:      #f3ebe2;
  --surface:   #ffffff;
  --ink:       #3a2f2c;
  --heading:   #2a211f;
  --muted:     #7c6f68;
  --line:      #e6dccf;
  --berry:     #a3265a;   /* Akzent Beere/Magenta */
  --berry-2:   #841d49;
  --copper:    #b07d56;   /* warmer Kupfer-Sekundärton */
  --gold:      #c9a268;
  --shadow:    rgba(58,47,44,.12);
  --hero-ov-1: rgba(40,25,30,.30);
  --hero-ov-2: rgba(40,25,30,.62);

  --serif: Georgia, "Iowan Old Style", "Times New Roman", Times, serif;
  --sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --r: 16px;
  --r-s: 11px;
}

[data-theme="dark"] {
  --bg:        #1c1614;
  --bg-2:      #241c19;
  --surface:   #261d1a;
  --ink:       #efe6df;
  --heading:   #fbf4ee;
  --muted:     #b3a298;
  --line:      #3a2d28;
  --berry:     #e0789f;
  --berry-2:   #d4699a;
  --copper:    #cf9d76;
  --gold:      #d9b87f;
  --shadow:    rgba(0,0,0,.45);
  --hero-ov-1: rgba(15,8,11,.45);
  --hero-ov-2: rgba(15,8,11,.74);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--berry); text-decoration: none; transition: color .2s; }
a:hover { color: var(--berry-2); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

h1,h2,h3 { font-family: var(--serif); color: var(--heading); font-weight: 700; line-height: 1.2; }
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .26em;
  font-size: .74rem; font-weight: 700; color: var(--berry);
  display: inline-block; margin-bottom: 14px;
}
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.12rem; color: var(--ink); }

/* divider ornament */
.orn { display:flex; align-items:center; justify-content:center; gap:14px; margin:18px 0 0; }
.orn::before, .orn::after { content:""; height:1px; width:46px; background:var(--gold); opacity:.7; }
.orn span { color:var(--gold); font-size:1.1rem; }

/* ---------- Teaser-Banner ---------- */
.teaser {
  position: relative; z-index: 110; overflow: hidden;
  background: linear-gradient(100deg, var(--berry-2), var(--berry) 45%, var(--copper));
  color: #fff;
}
.teaser::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg); animation: teaserShine 5.5s ease-in-out infinite;
}
@keyframes teaserShine { 0% { left: -60%; } 55%,100% { left: 130%; } }
.teaser-inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 11px 22px; text-align: center; position: relative; z-index: 1; }
.teaser-badge {
  flex: 0 0 auto; font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45);
  padding: 5px 13px; border-radius: 999px; backdrop-filter: blur(4px);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.teaser-text { margin: 0; font-size: .98rem; line-height: 1.35; }
.teaser-text strong { font-family: var(--serif); font-weight: 700; }
.teaser-text span { opacity: .92; }
.teaser-text span::before { content: "·"; margin: 0 8px; opacity: .6; }
.teaser-spark { flex: 0 0 auto; font-size: 1.1rem; animation: teaserPulse 2.4s ease-in-out infinite; }
@keyframes teaserPulse { 0%,100% { opacity:.5; transform: scale(.85);} 50% { opacity:1; transform: scale(1.15);} }

@media (max-width: 640px) {
  .teaser-inner { flex-direction: column; gap: 7px; padding: 10px 18px; }
  .teaser-spark { display: none; }
  .teaser-text { font-size: .9rem; }
  .teaser-text span { display: block; }
  .teaser-text span::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .teaser::before, .teaser-spark { animation: none; }
  .teaser::before { display: none; }
}

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand b { font-family: var(--serif); font-size: 1.4rem; color: var(--heading); letter-spacing:.5px; }
.brand small { font-family: var(--sans); font-size:.68rem; letter-spacing:.28em; text-transform:uppercase; color: var(--berry); margin-top:3px; }
.menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.menu a { color: var(--ink); font-weight: 600; font-size: .96rem; position: relative; }
.menu a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--berry); transition:width .25s; }
.menu a:hover::after, .menu a.active::after { width:100%; }

.tools { display:flex; align-items:center; gap:12px; }
/* Theme toggle: NUR Icon (Mond/Sonne), kein Text */
.theme-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; cursor: pointer; color: var(--heading);
  transition: transform .3s, background .25s, border-color .25s;
}
.theme-btn:hover { transform: rotate(18deg); border-color: var(--berry); }
.theme-btn svg { width: 20px; height: 20px; }
.theme-btn .i-sun { display: none; }
[data-theme="dark"] .theme-btn .i-moon { display: none; }
[data-theme="dark"] .theme-btn .i-sun  { display: block; }

.burger { display:none; width:42px; height:42px; border:1px solid var(--line); background:var(--surface); border-radius:11px; cursor:pointer; flex-direction:column; gap:5px; align-items:center; justify-content:center; }
.burger span { width:20px; height:2px; background:var(--heading); transition:.3s; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; }
.hero-bg { position:absolute; inset:0; background:url('hero.jpg') center/cover no-repeat; }
.hero-bg::after { content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, var(--hero-ov-2), var(--hero-ov-1)); }
.hero-inner { position: relative; z-index: 2; max-width: 660px; color:#fff; padding: 60px 0; }
.hero .eyebrow { color: #f3c6d8; }
.hero h1 { color:#fff; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: #f6cfdd; }
.hero p { color: #f3ece8; font-size: 1.18rem; margin-top: 20px; max-width: 520px; text-shadow:0 1px 12px rgba(0,0,0,.4); }
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin-top: 34px; }

.btn {
  display:inline-flex; align-items:center; gap:9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size:.98rem;
  cursor:pointer; border: 1.6px solid transparent; transition: transform .2s, box-shadow .25s, background .25s, color .25s;
}
.btn-primary { background: var(--berry); color:#fff; box-shadow: 0 10px 26px color-mix(in srgb, var(--berry) 40%, transparent); }
.btn-primary:hover { transform: translateY(-3px); background: var(--berry-2); color:#fff; }
.btn-ghost { background: transparent; color:#fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background:#fff; color: var(--heading); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--berry); border-color: var(--berry); }
.btn-outline:hover { background: var(--berry); color:#fff; transform: translateY(-3px); }

/* ---------- Intro split ---------- */
.split { display:grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items:center; }
.split.rev .media { order: 2; }
.media { position: relative; }
.media img { border-radius: var(--r); box-shadow: 0 24px 60px var(--shadow); width:100%; object-fit:cover; }
.media .tag {
  position:absolute; bottom:-18px; left:-18px; background: var(--surface);
  border:1px solid var(--line); border-radius: var(--r-s); padding: 14px 20px;
  box-shadow: 0 14px 34px var(--shadow); font-family: var(--serif);
}
.media .tag b { display:block; color: var(--berry); font-size: 1.6rem; line-height:1; }
.media .tag small { color: var(--muted); font-family: var(--sans); font-size:.8rem; letter-spacing:.05em; }
.split h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.split p + p { margin-top: 16px; }

/* ---------- Sortiment grid ---------- */
.bg-soft { background: var(--bg-2); }
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px var(--shadow); border-color: color-mix(in srgb, var(--berry) 40%, var(--line)); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display:grid; place-items:center;
  background: color-mix(in srgb, var(--berry) 12%, transparent); color: var(--berry); margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* service chips (Lotto, Paketshop ...) */
.chips { display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; margin-top: 8px; }
.chip {
  background: var(--surface); border:1px solid var(--line); border-radius: 999px;
  padding: 11px 20px; font-weight:600; font-size:.93rem; color: var(--ink);
  display:inline-flex; align-items:center; gap:9px; transition: transform .2s, border-color .2s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--berry); }
.chip svg { width:17px; height:17px; color: var(--copper); }

/* ---------- Öffnungszeiten ---------- */
.hours-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:center; }
.hours { background: var(--surface); border:1px solid var(--line); border-radius: var(--r); overflow:hidden; box-shadow: 0 16px 40px var(--shadow); }
.hours .row { display:flex; justify-content:space-between; gap:16px; padding: 15px 26px; border-bottom: 1px solid var(--line); }
.hours .row:last-child { border-bottom:0; }
.hours .row.today { background: color-mix(in srgb, var(--berry) 9%, transparent); }
.hours .day { font-weight: 700; color: var(--heading); }
.hours .time { color: var(--muted); text-align:right; font-variant-numeric: tabular-nums; }
.hours .time.closed { color: var(--berry); font-style: italic; }
.hours-note { color: var(--muted); }
.hours-note h2 { font-size: clamp(1.7rem,3.6vw,2.4rem); margin-bottom: 16px; color:var(--heading); }

/* ---------- Kontakt / Standort ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-card { background: var(--surface); border:1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: 0 16px 40px var(--shadow); }
.info-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.info-row { display:flex; gap:14px; align-items:flex-start; padding: 13px 0; border-bottom:1px solid var(--line); }
.info-row:last-child { border-bottom:0; }
.info-row .ic { color: var(--berry); flex:0 0 auto; margin-top:3px; }
.info-row .ic svg { width:20px; height:20px; }
.info-row b { color: var(--heading); display:block; font-family: var(--sans); }
.info-row span, .info-row a { color: var(--muted); }
.map-static {
  border-radius: var(--r); overflow:hidden; border:1px solid var(--line);
  box-shadow: 0 16px 40px var(--shadow); background: var(--bg-2);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: 40px 28px; min-height: 320px; gap: 14px;
}
.map-static .pin { width:60px; height:60px; border-radius:50%; background: color-mix(in srgb, var(--berry) 14%, transparent); color:var(--berry); display:grid; place-items:center; }
.map-static .pin svg { width:30px; height:30px; }
.map-static b { font-family:var(--serif); font-size:1.3rem; color:var(--heading); }

/* ---------- Form ---------- */
.form { background: var(--surface); border:1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: 0 16px 40px var(--shadow); }
.form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form .sub { color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:600; color: var(--heading); margin-bottom:7px; font-size:.92rem; }
.field input, .field textarea {
  width:100%; padding: 13px 15px; border-radius: var(--r-s);
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--berry); box-shadow: 0 0 0 3px color-mix(in srgb, var(--berry) 18%, transparent); }
.field textarea { min-height: 120px; resize: vertical; }
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.captcha-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.captcha-q { font-weight:700; letter-spacing:1px; padding:11px 16px; border-radius:11px; user-select:none;
  background: var(--bg-2); border:1px solid var(--line); color:var(--heading); font-variant-numeric:tabular-nums; min-width:96px; text-align:center; }
.captcha-refresh { cursor:pointer; width:42px; height:42px; border-radius:11px; color:var(--heading);
  background: var(--bg); border:1px solid var(--line); transition: transform .3s, background .25s; font-size:1.1rem; }
.captcha-refresh:hover { background: var(--bg-2); transform: rotate(180deg); }
.captcha-row input { flex:1; min-width:120px; }
.form-hint { font-size:.9rem; margin-top:12px; min-height:1.2em; color: var(--berry); }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 26px; }
.foot-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot-grid h4 { font-family: var(--serif); color: var(--heading); margin-bottom: 16px; font-size:1.15rem; }
.foot-grid p, .foot-grid a, .foot-grid li { color: var(--muted); font-size:.95rem; }
.foot-grid ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.foot-brand b { font-family:var(--serif); font-size:1.5rem; color:var(--heading); display:block; margin-bottom:8px; }
.foot-bottom { border-top:1px solid var(--line); padding-top: 22px; display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; }
.foot-bottom small { color: var(--muted); }
.powered-by { display:inline-flex; align-items:center; gap:9px; color: var(--muted); font-size:.85rem; font-weight:600; }
.powered-by img { height: 24px; width:auto; border-radius:5px; }
.powered-by:hover { color: var(--berry); }

/* ---------- Reveal ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu { position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap:0;
    background: var(--bg); border-bottom:1px solid var(--line); padding: 8px 0;
    transform: translateY(-120%); transition: transform .35s ease; }
  .menu.open { transform: translateY(0); }
  .menu li { width:100%; }
  .menu a { display:block; padding: 15px 24px; width:100%; }
  .menu a::after { display:none; }
  .burger { display:flex; }
  .split, .hours-wrap, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .media { order: 0; }
  .grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .media .tag { left: 12px; bottom: -14px; }
  .foot-bottom { flex-direction: column; align-items:flex-start; }
}
