/* Design-System-Tokens — Editorial Warenhaus */
:root {
  --primary: oklch(58% 0.15 40);
  --primary-dark: oklch(46% 0.14 38);
  --primary-soft: oklch(90% 0.04 50);
  --bg: oklch(96% 0.015 80);
  --surface: oklch(99% 0.005 80);
  --ink: oklch(20% 0.01 60);
  --muted: oklch(48% 0.01 60);
  --border: oklch(88% 0.01 70);
  --radius: 2px;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gap: clamp(1rem, 2vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-base: 260ms;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.site-title,
.entry-title {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

p { text-wrap: pretty; }

h1, .h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 500; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.9em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: currentColor;
}

a { color: var(--primary-dark); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

svg.icon,
.icon {
  width: 1.4em;
  height: 1.4em;
  flex: 0 0 auto;
  vertical-align: middle;
  max-width: 32px;
  max-height: 32px;
}

svg { max-width: 100%; height: auto; }

/* .container sitzt immer innerhalb von Storefronts .col-full (Header/Footer-
   Wrapper), das bereits max-width + Seitenpadding liefert (siehe layout.css) —
   hier keine eigenen Werte setzen, sonst doppeltes Padding. */
.container {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}
