/* ================================================================
   TURKMEN SPOR — style.css
   Cinematic Dark Fighter Brand UI
   ================================================================ */

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

:root {
  --red:       #C8102E;
  --red-d:     #8B0B1F;
  --red-glow:  rgba(200,16,46,0.22);
  --red-soft:  rgba(200,16,46,0.08);
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #161616;
  --bg4:       #1d1d1d;
  --border:    rgba(255,255,255,0.07);
  --border-r:  rgba(200,16,46,0.25);
  --off-white: #EDE8DF;
  --gray:      #666;
  --gray-l:    #999;
  --font-d:    'Bebas Neue', sans-serif;
  --font-b:    'Inter', sans-serif;
  --nav-h:     60px;
  --topbar-h:  36px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--red);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}
.topbar p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.8); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
  flex-shrink: 0;
}
.logo-icon { width: 22px; height: 22px; }
.logo-text {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--off-white);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--gray-l);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--off-white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 5px 12px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color .2s;
  font-family: var(--font-b);
}
.lang-btn:hover { border-color: rgba(255,255,255,0.2); }
.l-opt { cursor: pointer; transition: color .2s; }
.l-opt.active { color: var(--off-white); }
.l-sep { color: var(--border); }

.btn-nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s, box-shadow .2s;
  font-family: var(--font-b);
}
.btn-nav-cta:hover {
  background: var(--red-d);
  box-shadow: 0 4px 20px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: all .25s;
}

/* ---- MOBILE MENU ---- */
.mob-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 190;
  padding: 24px 28px;
  flex-direction: column;
  gap: 20px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: var(--gray-l);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- SHARED LAYOUT ---- */
.hero-wrap,
.drop-wrap,
.products-wrap,
.why-wrap,
.process-wrap,
.faq-wrap,
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- SHARED COMPONENTS ---- */
.s-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-r);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.s-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--off-white);
}
.s-sub {
  font-size: 15px;
  color: var(--gray-l);
  max-width: 560px;
  line-height: 1.8;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .s-sub { margin: 0 auto; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s, box-shadow .2s, transform .2s;
  font-family: var(--font-b);
}
.btn-primary:hover {
  background: var(--red-d);
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-1px);
}
.btn-primary.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 12px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 13px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s, background .2s;
  font-family: var(--font-b);
}
.btn-ghost:hover {
  border-color: var(--red);
  background: var(--red-soft);
}

.btn-ghost-sm {
  display: inline-block;
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 11px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s, background .2s;
  font-family: var(--font-b);
}
.btn-ghost-sm:hover {
  border-color: var(--off-white);
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal, .reveal-r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal-r { transform: translateX(40px); }
.reveal.in, .reveal-r.in { opacity: 1; transform: none; }

/* stagger children */
.hero-title .reveal:nth-child(1) { transition-delay: .05s; }
.hero-title .reveal:nth-child(2) { transition-delay: .15s; }
.hero-title .reveal:nth-child(3) { transition-delay: .25s; }
.hero-actions.reveal           { transition-delay: .35s; }
.hero-sub.reveal               { transition-delay: .2s; }
.hero-eyebrow.reveal           { transition-delay: 0s; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* subtle ottoman diamond tiling */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(200,16,46,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(200,16,46,.06) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='24,2 46,24 24,46 2,24' fill='none' stroke='rgba(200,16,46,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: auto, auto, 48px 48px;
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(64px, 8.5vw, 120px);
  line-height: .88;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-title .red {
  color: var(--red);
  text-shadow: 0 0 80px rgba(200,16,46,.35);
}

.hero-sub {
  font-size: 15px;
  color: var(--gray-l);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-img-col { position: relative; }

.hero-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
}
.hero-img-frame.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 2px;
}
.hero-img-frame.no-img::after {
  content: 'BILD FOLGT';
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 8s ease;
}
.hero-img-frame:hover .hero-img { transform: scale(1.03); }

.hero-img-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,8,8,.6) 100%
  );
  pointer-events: none;
}

.hero-img-glow {
  position: absolute;
  inset: -1px;
  box-shadow: inset 0 0 60px rgba(200,16,46,.12);
  border: 1px solid rgba(200,16,46,.2);
  border-radius: 2px;
  pointer-events: none;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .35;
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: .8; transform: scaleY(1.1); }
}

/* ================================================================
   DROP SECTION
   ================================================================ */
.drop-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Drop header row: title left, infobox right */
.drop-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  margin-bottom: 56px;
}
.drop-head-left { max-width: 560px; }

.drop-infobox {
  flex-shrink: 0;
  width: 300px;
}
.drop-infobox-inner {
  background: rgba(200,16,46,.07);
  border: 1px solid var(--border-r);
  border-radius: 2px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drop-infobox-icon {
  font-size: 20px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
}
.drop-infobox-inner p {
  font-size: 12px;
  color: var(--gray-l);
  line-height: 1.8;
}

/* Two CTAs in overlay stacked */
.drop-img-overlay {
  flex-direction: column;
  gap: 8px;
}

.drop-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.drop-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drop-card {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .35s, box-shadow .35s;
}
.drop-card:hover {
  border-color: var(--border-r);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

.drop-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.drop-card--main .drop-img-wrap { aspect-ratio: 4/3; }
.drop-col-right .drop-card .drop-img-wrap { aspect-ratio: 4/3; }

.drop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  display: block;
}
.drop-card:hover .drop-img-wrap img { transform: scale(1.03); }

.drop-img-wrap.no-img {
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}
.drop-img-wrap.no-img::after { content: 'BILD FOLGT'; }

.drop-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,8,8,.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity .3s;
}
.drop-card:hover .drop-img-overlay { opacity: 1; }

.drop-card-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
}
.dc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dc-row h3 {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
}
.dc-price {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--off-white);
  letter-spacing: 1px;
}
.dc-status {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
  flex-shrink: 0;
}
.dc-status.preorder {
  background: rgba(200,16,46,.15);
  color: var(--red);
  border: 1px solid var(--border-r);
}
.dc-status.waitlist {
  background: rgba(255,255,255,.05);
  color: var(--gray-l);
  border: 1px solid var(--border);
}
.dc-status.archive {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,.05);
}

/* ================================================================
   ARCHIVE SECTION
   ================================================================ */
.archive-section {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.archive-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.archive-title { opacity: .6; font-size: clamp(28px, 4vw, 48px); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.archive-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
  transition: opacity .3s, border-color .3s, transform .3s;
  filter: saturate(.6);
}
.archive-card:hover {
  opacity: .9;
  border-color: rgba(255,255,255,.12);
  transform: translateY(-3px);
  filter: saturate(.85);
}

.archive-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg3);
  overflow: hidden;
}
.archive-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.archive-card:hover .archive-img-wrap img { transform: scale(1.03); }
.archive-img-wrap.no-img {
  display: flex; align-items: center; justify-content: center;
}
.archive-img-wrap.no-img::after {
  content: 'BILD FOLGT';
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--gray); text-transform: uppercase;
}

.archive-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gray-l);
  font-size: 8px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 1px;
}

.archive-card-info { padding: 16px; }

.archive-card-info h3 {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 6px 0 14px;
  opacity: .8;
}

.archive-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.archive-price {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--off-white);
  opacity: .6;
}

.btn-archive-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gray-l);
  padding: 7px 14px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border-radius: 1px;
  transition: border-color .2s, color .2s;
  font-family: var(--font-b);
}
.btn-archive-cta:hover {
  border-color: rgba(255,255,255,.3);
  color: var(--off-white);
}

/* ================================================================
   PRODUCTS GRID (legacy — kept for PDP, not rendered on page)
   ================================================================ */
.products-section {
  padding: 100px 0;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Product card */
.prod-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.prod-card:hover {
  border-color: var(--border-r);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.prod-card.archive {
  opacity: .55;
}
.prod-card.archive:hover { opacity: .75; }

.prod-img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}
.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

.prod-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: .18;
}
.prod-placeholder svg { width: 48px; height: 48px; fill: var(--off-white); }
.prod-placeholder span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 1px;
}
.prod-badge.preorder { background: var(--red); color: #fff; }
.prod-badge.waitlist { background: rgba(255,255,255,.1); color: var(--off-white); border: 1px solid var(--border); }
.prod-badge.archive  { background: rgba(0,0,0,.5); color: var(--gray-l); border: 1px solid var(--border); }

.prod-body { padding: 18px 16px; }
.prod-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--font-d);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 3px;
}
.prod-name-sub {
  font-size: 11px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 14px;
}
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.prod-price {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--off-white);
}
.prod-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: background .2s, box-shadow .2s;
  font-family: var(--font-b);
}
.prod-cta:hover { background: var(--red-d); box-shadow: 0 4px 16px var(--red-glow); }
.prod-cta.ghost {
  background: transparent;
  color: var(--gray-l);
  border: 1px solid var(--border);
}
.prod-cta.ghost:hover { border-color: rgba(255,255,255,.25); color: var(--off-white); box-shadow: none; }

/* ================================================================
   WHY SECTION
   ================================================================ */
.why-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--bg2);
  padding: 44px 32px;
  transition: background .25s;
}
.why-card:hover { background: var(--bg3); }

.why-num {
  display: block;
  font-family: var(--font-d);
  font-size: 48px;
  color: var(--red);
  opacity: .25;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.why-card h3 {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}
.why-card p {
  font-size: 13px;
  color: var(--gray-l);
  line-height: 1.8;
}

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-n {
  font-family: var(--font-d);
  font-size: 64px;
  color: var(--red);
  opacity: .2;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}

.step-body h3 {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 13px;
  color: var(--gray-l);
  line-height: 1.8;
  max-width: 240px;
  margin: 0 auto;
}

.step-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-r), transparent);
  margin-top: 32px;
  flex-shrink: 0;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  letter-spacing: .3px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--red);
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red-soft); border-color: var(--border-r); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--gray-l);
  line-height: 1.85;
  max-width: 720px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-tagline { font-size: 12px; color: var(--gray); letter-spacing: 1px; }

.footer-divider { height: 1px; background: var(--border); margin-bottom: 28px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 11px; color: var(--gray); }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--off-white); }

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--bg2);
  border: 1px solid rgba(200,16,46,.2);
  border-radius: 3px;
  width: 100%;
  max-width: 480px;
  padding: 40px 36px;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: none; }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 16px;
  cursor: pointer;
  transition: color .2s;
  font-family: var(--font-b);
}
.modal-close:hover { color: var(--off-white); }

.modal-head { margin-bottom: 32px; }
.modal-head h2 {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 8px;
}
.modal-head p { font-size: 13px; color: var(--gray-l); line-height: 1.7; }

.modal-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-l);
}
.form-row input,
.form-row select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 2px;
  font-family: var(--font-b);
  transition: border-color .2s;
  -webkit-appearance: none;
  outline: none;
}
.form-row input::placeholder { color: var(--gray); }
.form-row input:focus,
.form-row select:focus { border-color: var(--red); }

.size-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--gray-l);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
  user-select: none;
  font-family: var(--font-b);
}
.size-chip:hover { border-color: rgba(255,255,255,.2); color: var(--off-white); }
.size-chip.selected { border-color: var(--red); color: var(--off-white); background: var(--red-soft); }

.modal-note {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
}

/* modal success */
.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success.hidden { display: none; }
.modal-form.hidden { display: none; }

.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,16,46,.1);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal-success h3 {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modal-success p { font-size: 14px; color: var(--gray-l); line-height: 1.8; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Small tablet / large phone landscape ---- */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .hero-img-col { order: -1; max-width: 100%; }
  .hero-img-frame { aspect-ratio: 16/9; }
  .drop-grid { grid-template-columns: 1fr; }
  .drop-col-right { display: grid; grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-r), transparent);
    margin: 0;
  }
  /* reduce section padding */
  .drop-section,
  .products-section,
  .why-section,
  .process-section,
  .faq-section { padding: 72px 0; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  :root { --topbar-h: 32px; --nav-h: 56px; }
  .topbar p { font-size: 9px; letter-spacing: 1px; }

  /* nav padding tighter */
  .nav-inner { padding: 0 16px; }

  /* hero */
  .hero-wrap { padding-left: 0; padding-right: 0; }
  .hero-text { padding: 0 16px; }
  .hero-img-frame { aspect-ratio: 4/3; border-radius: 0; }
  .hero-scroll { display: none; }

  /* typography */
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
  .s-title { font-size: clamp(30px, 8vw, 48px); }

  /* sections */
  .drop-section,
  .products-section,
  .why-section,
  .process-section,
  .faq-section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }

  /* drop section */
  .drop-col-right { grid-template-columns: 1fr; }
  .drop-head { grid-template-columns: 1fr; }
  .drop-infobox { width: 100%; }

  /* archive */
  .archive-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* products */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-cta { padding: 12px 14px; font-size: 9px; width: 100%; text-align: center; }
  .prod-foot { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }
  .why-num { font-size: 36px; margin-bottom: 12px; }

  /* process */
  .step { padding: 0 12px; }
  .step-n { font-size: 48px; margin-bottom: 16px; }
  .step-body p { max-width: 100%; }

  /* faq */
  .faq-q-text { font-size: 14px; }

  /* footer */
  .footer-top { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; }
  .footer-wrap { padding: 0 16px; }

  /* modals */
  .modal-box { padding: 28px 20px; margin: 8px; max-height: 95vh; }
  .modal-head h2 { font-size: 28px; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .drop-col-right { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; max-width: 400px; }

  /* container padding */
  .hero-wrap,
  .drop-wrap,
  .products-wrap,
  .why-wrap,
  .process-wrap,
  .faq-wrap,
  .footer-wrap { padding-left: 16px; padding-right: 16px; }

  /* hero text */
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .hero-sub { font-size: 14px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 2px; }
}

/* ================================================================
   PRODUCT DETAIL POPUP (PDP)
   ================================================================ */
.pdp-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.pdp-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.pdp-box {
  background: var(--bg2);
  border: 1px solid rgba(200,16,46,.2);
  border-radius: 3px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.pdp-overlay.open .pdp-box { transform: none; }

.pdp-close {
  position: absolute;
  top: 16px; right: 20px;
  z-index: 10;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--border);
  color: var(--gray-l);
  font-size: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s;
  font-family: var(--font-b);
}
.pdp-close:hover { color: var(--off-white); border-color: rgba(255,255,255,.25); }

/* Image column */
.pdp-img-col {
  background: var(--bg3);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.pdp-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pdp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 480px;
}
.pdp-img-wrap.no-img::after {
  content: 'BILD FOLGT';
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray);
}

/* Info column */
.pdp-info-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pdp-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
}

.pdp-status-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 1px;
}
.pdp-status-badge.preorder {
  background: rgba(200,16,46,.12);
  color: var(--red);
  border: 1px solid var(--border-r);
}
.pdp-status-badge.waitlist {
  background: rgba(255,255,255,.05);
  color: var(--gray-l);
  border: 1px solid var(--border);
}
.pdp-status-badge.archive {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,.06);
}

.pdp-name {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 4px;
}

.pdp-name-sub {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 16px;
}

.pdp-price {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 20px;
}

.pdp-desc {
  font-size: 13px;
  color: var(--gray-l);
  line-height: 1.85;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pdp-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pdp-section-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

/* Material display */
.pdp-material {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-material-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.pdp-material-name { color: var(--gray-l); }
.pdp-material-pct {
  font-family: var(--font-d);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--off-white);
}
.pdp-material-bar-wrap {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 2px;
}
.pdp-material-bar {
  height: 100%;
  background: var(--red);
  border-radius: 1px;
  transition: width .8s cubic-bezier(.16,1,.3,1);
}
.pdp-gsm {
  font-size: 11px;
  color: var(--gray);
  margin-top: 10px;
}
.pdp-gsm strong { color: var(--gray-l); }

/* Features chips */
.pdp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pdp-feature-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--gray-l);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* CTA row */
.pdp-cta-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-note {
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

/* PDP Responsive */
@media (max-width: 720px) {
  .pdp-box {
    grid-template-columns: 1fr;
    max-height: 96vh;
    margin: 8px;
    width: calc(100% - 16px);
  }
  .pdp-img-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 220px;
  }
  .pdp-img-wrap { min-height: 220px; padding: 16px; }
  .pdp-img-wrap img { max-height: 200px; }
  .pdp-info-col { padding: 24px 20px; }
  .pdp-name { font-size: 26px; }
  .pdp-price { font-size: 26px; margin-bottom: 14px; }
  .pdp-desc { font-size: 13px; margin-bottom: 18px; padding-bottom: 18px; }
  .pdp-section { margin-bottom: 16px; padding-bottom: 16px; }
  .pdp-cta-row { margin-top: 16px; }
}
