/* Dorfjungs Design System — eb-check adaptation */

@font-face { font-family: "Bastardo Grotesk"; src: url("/fonts/Bastardo_Grotesk_Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Bastardo Grotesk"; src: url("/fonts/BastardoGrotesk-Semibold__1_.otf") format("opentype"); font-weight: 600 700; font-style: normal; font-display: swap; }

@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Light.otf")          format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-LightItalic.otf")    format("opentype"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Book.otf")           format("opentype"); font-weight: 350; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-BookItalic.otf")     format("opentype"); font-weight: 350; font-style: italic; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Regular.otf")        format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-RegularItalic.otf")  format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Medium.otf")         format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-MediumItalic.otf")   format("opentype"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Semi-Bold.otf")      format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Semi-BoldItalic.otf") format("opentype"); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-Bold.otf")           format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "FT Sterling"; src: url("/fonts/FTSterling-BoldItalic.otf")     format("opentype"); font-weight: 700; font-style: italic; font-display: swap; }

:root {
  --dj-ink:         rgb(16, 16, 16);
  --dj-cream:       rgb(237, 231, 220);
  --dj-white:       rgb(255, 255, 255);
  --dj-mute:        rgb(217, 217, 217);
  --dj-green:       #3FB27B;
  --dj-red:         #E84040;
  --dj-amber:       #D4922B;

  --bg:             var(--dj-ink);
  --bg-alt:         var(--dj-cream);
  --fg:             var(--dj-cream);
  --fg-alt:         var(--dj-ink);
  --fg-muted:       rgba(237, 231, 220, 0.5);
  --border:         rgba(237, 231, 220, 0.12);
  --border-mid:     rgba(237, 231, 220, 0.2);

  --font-display:   "FT Sterling", system-ui, sans-serif;
  --font-body:      "FT Sterling", system-ui, sans-serif;
  --font-accent:    "Bastardo Grotesk", Impact, sans-serif;

  --ls-display:     -0.035em;
  --ls-marquee:     -0.02em;
  --ls-label:       0.06em;
  --lh-display:     0.9;
  --lh-body:        1.55;

  --ease-brand:     cubic-bezier(0.7, 0, 0.2, 1);
  --dur-fast:       160ms;
  --dur-med:        360ms;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 32px; --sp-8: 40px;
  --sp-9: 60px; --sp-10: 80px;

  --r-0: 0;
  --r-thumb: 5px;
  --r-pill: 999px;

  --shadow-nav: 0 25px 50px rgba(0,0,0,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.dj-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 60px; z-index: 100;
  background: var(--dj-ink);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--sp-8);
  box-shadow: var(--shadow-nav);
}
.dj-nav-logo img {
  height: 40px; width: auto;
  filter: invert(1) brightness(1.05);
}
.dj-nav-links {
  display: flex; gap: var(--sp-8); align-items: center;
}
.dj-nav-cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-body); font-size: 16px; line-height: 1;
  color: var(--dj-cream); text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-brand);
}
.dj-nav-cta:hover { opacity: 0.6; }
.dj-smiley {
  width: 14px; height: 14px; border-radius: var(--r-pill);
  background: var(--dj-cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dj-smiley img { width: 10px; height: 10px; }

/* ── Link xs ── */
.link-xs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; line-height: 1;
  color: var(--dj-cream); text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-brand);
}
.link-xs:hover { opacity: 0.6; }

/* ── Eyebrow label ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; line-height: 1;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  opacity: 0.5;
}

/* ── Buttons ── */
.dj-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--dj-cream);
  color: var(--dj-cream);
  font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-brand), color var(--dur-fast) var(--ease-brand);
}
.dj-btn:hover { background: var(--dj-cream); color: var(--dj-ink); }

.dj-btn-ghost {
  border-color: var(--border-mid);
  color: var(--fg-muted);
}
.dj-btn-ghost:hover { background: rgba(237,231,220,0.06); color: var(--dj-cream); }

/* ── Surfaces ── */
.surface-ink   { background: var(--dj-ink);   color: var(--dj-cream); }
.surface-cream { background: var(--dj-cream); color: var(--dj-ink); }
